From 6057e1e98eea0ce78bf57712c852fcb969139311 Mon Sep 17 00:00:00 2001 From: RivaIvanova Date: Fri, 16 Aug 2024 15:49:48 +0300 Subject: [PATCH 01/63] feat(carousel): add samples --- browser/public/index.html | 7 + .../layouts/carousel/animations/.prettierrc | 11 ++ samples/layouts/carousel/animations/ReadMe.md | 56 +++++++ .../layouts/carousel/animations/index.html | 98 ++++++++++++ .../layouts/carousel/animations/package.json | 59 ++++++++ .../carousel/animations/sandbox.config.json | 7 + .../layouts/carousel/animations/src/index.css | 50 ++++++ .../layouts/carousel/animations/src/index.ts | 28 ++++ .../layouts/carousel/animations/tsconfig.json | 20 +++ .../carousel/animations/webpack.config.js | 105 +++++++++++++ .../layouts/carousel/components/.prettierrc | 11 ++ samples/layouts/carousel/components/ReadMe.md | 56 +++++++ .../layouts/carousel/components/index.html | 54 +++++++ .../layouts/carousel/components/package.json | 59 ++++++++ .../carousel/components/sandbox.config.json | 7 + .../layouts/carousel/components/src/index.css | 28 ++++ .../layouts/carousel/components/src/index.ts | 33 ++++ .../layouts/carousel/components/tsconfig.json | 20 +++ .../carousel/components/webpack.config.js | 105 +++++++++++++ samples/layouts/carousel/overview/.prettierrc | 11 ++ samples/layouts/carousel/overview/ReadMe.md | 56 +++++++ samples/layouts/carousel/overview/index.html | 40 +++++ .../layouts/carousel/overview/package.json | 59 ++++++++ .../carousel/overview/sandbox.config.json | 7 + .../layouts/carousel/overview/src/index.css | 33 ++++ .../layouts/carousel/overview/src/index.ts | 9 ++ .../layouts/carousel/overview/tsconfig.json | 20 +++ .../carousel/overview/webpack.config.js | 105 +++++++++++++ .../layouts/carousel/thumbnail/.prettierrc | 11 ++ samples/layouts/carousel/thumbnail/ReadMe.md | 56 +++++++ samples/layouts/carousel/thumbnail/index.html | 142 ++++++++++++++++++ .../layouts/carousel/thumbnail/package.json | 59 ++++++++ .../carousel/thumbnail/sandbox.config.json | 7 + .../layouts/carousel/thumbnail/src/index.css | 16 ++ .../layouts/carousel/thumbnail/src/index.ts | 9 ++ .../layouts/carousel/thumbnail/tsconfig.json | 20 +++ .../carousel/thumbnail/webpack.config.js | 105 +++++++++++++ 37 files changed, 1579 insertions(+) create mode 100644 samples/layouts/carousel/animations/.prettierrc create mode 100644 samples/layouts/carousel/animations/ReadMe.md create mode 100644 samples/layouts/carousel/animations/index.html create mode 100644 samples/layouts/carousel/animations/package.json create mode 100644 samples/layouts/carousel/animations/sandbox.config.json create mode 100644 samples/layouts/carousel/animations/src/index.css create mode 100644 samples/layouts/carousel/animations/src/index.ts create mode 100644 samples/layouts/carousel/animations/tsconfig.json create mode 100644 samples/layouts/carousel/animations/webpack.config.js create mode 100644 samples/layouts/carousel/components/.prettierrc create mode 100644 samples/layouts/carousel/components/ReadMe.md create mode 100644 samples/layouts/carousel/components/index.html create mode 100644 samples/layouts/carousel/components/package.json create mode 100644 samples/layouts/carousel/components/sandbox.config.json create mode 100644 samples/layouts/carousel/components/src/index.css create mode 100644 samples/layouts/carousel/components/src/index.ts create mode 100644 samples/layouts/carousel/components/tsconfig.json create mode 100644 samples/layouts/carousel/components/webpack.config.js create mode 100644 samples/layouts/carousel/overview/.prettierrc create mode 100644 samples/layouts/carousel/overview/ReadMe.md create mode 100644 samples/layouts/carousel/overview/index.html create mode 100644 samples/layouts/carousel/overview/package.json create mode 100644 samples/layouts/carousel/overview/sandbox.config.json create mode 100644 samples/layouts/carousel/overview/src/index.css create mode 100644 samples/layouts/carousel/overview/src/index.ts create mode 100644 samples/layouts/carousel/overview/tsconfig.json create mode 100644 samples/layouts/carousel/overview/webpack.config.js create mode 100644 samples/layouts/carousel/thumbnail/.prettierrc create mode 100644 samples/layouts/carousel/thumbnail/ReadMe.md create mode 100644 samples/layouts/carousel/thumbnail/index.html create mode 100644 samples/layouts/carousel/thumbnail/package.json create mode 100644 samples/layouts/carousel/thumbnail/sandbox.config.json create mode 100644 samples/layouts/carousel/thumbnail/src/index.css create mode 100644 samples/layouts/carousel/thumbnail/src/index.ts create mode 100644 samples/layouts/carousel/thumbnail/tsconfig.json create mode 100644 samples/layouts/carousel/thumbnail/webpack.config.js diff --git a/browser/public/index.html b/browser/public/index.html index 3f5885d3eb..df28e02b80 100644 --- a/browser/public/index.html +++ b/browser/public/index.html @@ -924,6 +924,13 @@ Semi Horizontal Styling + + - +
diff --git a/samples/layouts/carousel/animations/package.json b/samples/layouts/carousel/animations/package.json index bdf5f5f877..7126dfd886 100644 --- a/samples/layouts/carousel/animations/package.json +++ b/samples/layouts/carousel/animations/package.json @@ -1,7 +1,7 @@ { "name": "wc-carousel-animations", "version": "1.0.0", - "description": "This project provides example of button group using IgniteUI for Web Components", + "description": "This project provides example of carousel animations using IgniteUI for Web Components", "main": "src/index.ts", "scripts": { "build": "npm run build:prod", @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.11.1", - "lit": "^2.0.2", - "lit-html": "^2.2.0", + "igniteui-webcomponents": "5.1.1", + "lit": "^3.2.1", + "lit-html": "^3.2.1", "tslib": "^2.6.3" }, "devDependencies": { diff --git a/samples/layouts/carousel/components/index.html b/samples/layouts/carousel/components/index.html index a8ae4eb5b9..1ede31d776 100644 --- a/samples/layouts/carousel/components/index.html +++ b/samples/layouts/carousel/components/index.html @@ -25,9 +25,7 @@ -
- Sign In -
+ Sign In
@@ -38,9 +36,7 @@ -
- Search -
+ Search diff --git a/samples/layouts/carousel/components/package.json b/samples/layouts/carousel/components/package.json index 273f0ed238..374834efff 100644 --- a/samples/layouts/carousel/components/package.json +++ b/samples/layouts/carousel/components/package.json @@ -1,7 +1,7 @@ { "name": "wc-carousel-with-components", "version": "1.0.0", - "description": "This project provides example of button group using IgniteUI for Web Components", + "description": "This project provides example of carousel with components using IgniteUI for Web Components", "main": "src/index.ts", "scripts": { "build": "npm run build:prod", @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.11.1", - "lit": "^2.0.2", - "lit-html": "^2.2.0", + "igniteui-webcomponents": "5.1.1", + "lit": "^3.2.1", + "lit-html": "^3.2.1", "tslib": "^2.6.3" }, "devDependencies": { diff --git a/samples/layouts/carousel/components/src/index.css b/samples/layouts/carousel/components/src/index.css index 8ede26a8c9..ec54b5bc06 100644 --- a/samples/layouts/carousel/components/src/index.css +++ b/samples/layouts/carousel/components/src/index.css @@ -13,7 +13,7 @@ igc-carousel { height: 500px; } -igc-carousel-slide::part(base) { +igc-carousel-slide { display: flex; justify-content: center; align-items: center; @@ -21,6 +21,8 @@ igc-carousel-slide::part(base) { igc-carousel-slide div { text-align: center; + max-width: 40%; + margin-inline: auto; } igc-carousel-slide div * { diff --git a/samples/layouts/carousel/overview/package.json b/samples/layouts/carousel/overview/package.json index 11aae83e6f..de5b858ccc 100644 --- a/samples/layouts/carousel/overview/package.json +++ b/samples/layouts/carousel/overview/package.json @@ -1,7 +1,7 @@ { "name": "wc-carousel-overview", "version": "1.0.0", - "description": "This project provides example of button group using IgniteUI for Web Components", + "description": "This project provides example of carousel overview using IgniteUI for Web Components", "main": "src/index.ts", "scripts": { "build": "npm run build:prod", @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.11.1", - "lit": "^2.0.2", - "lit-html": "^2.2.0", + "igniteui-webcomponents": "5.1.1", + "lit": "^3.2.1", + "lit-html": "^3.2.1", "tslib": "^2.6.3" }, "devDependencies": { diff --git a/samples/layouts/carousel/thumbnail/index.html b/samples/layouts/carousel/thumbnail/index.html index 4efbc165d8..1aa81d3771 100644 --- a/samples/layouts/carousel/thumbnail/index.html +++ b/samples/layouts/carousel/thumbnail/index.html @@ -15,10 +15,9 @@
diff --git a/samples/layouts/carousel/thumbnail/package.json b/samples/layouts/carousel/thumbnail/package.json index e08d147b35..bbf63a6c5c 100644 --- a/samples/layouts/carousel/thumbnail/package.json +++ b/samples/layouts/carousel/thumbnail/package.json @@ -1,7 +1,7 @@ { "name": "wc-carousel-thumbnail", "version": "1.0.0", - "description": "This project provides example of button group using IgniteUI for Web Components", + "description": "This project provides example of carousel advanced example using IgniteUI for Web Components", "main": "src/index.ts", "scripts": { "build": "npm run build:prod", @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "4.11.1", - "lit": "^2.0.2", - "lit-html": "^2.2.0", + "igniteui-webcomponents": "5.1.1", + "lit": "^3.2.1", + "lit-html": "^3.2.1", "tslib": "^2.6.3" }, "devDependencies": { diff --git a/samples/layouts/carousel/thumbnail/src/index.css b/samples/layouts/carousel/thumbnail/src/index.css index 22ef05c0db..dcc05e0170 100644 --- a/samples/layouts/carousel/thumbnail/src/index.css +++ b/samples/layouts/carousel/thumbnail/src/index.css @@ -2,7 +2,6 @@ /* https://static.infragistics.com/xplatform/css/samples */ igc-carousel { - width: 60% } From 842823dd00c48c33ce5e02cf80c00ab855618cc4 Mon Sep 17 00:00:00 2001 From: RivaIvanova Date: Wed, 30 Oct 2024 14:15:55 +0200 Subject: [PATCH 11/63] fix(carousel): add animation type to thumbnail sample --- samples/layouts/carousel/thumbnail/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/samples/layouts/carousel/thumbnail/index.html b/samples/layouts/carousel/thumbnail/index.html index 1aa81d3771..834f7b619f 100644 --- a/samples/layouts/carousel/thumbnail/index.html +++ b/samples/layouts/carousel/thumbnail/index.html @@ -19,6 +19,7 @@ hide-navigation interval="2000" vertical + animation-type="fade" > Date: Thu, 31 Oct 2024 17:25:00 +0200 Subject: [PATCH 12/63] Edited data shown for consistency with other platforms --- samples/grids/pivot-grid/data-selector/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/grids/pivot-grid/data-selector/src/index.ts b/samples/grids/pivot-grid/data-selector/src/index.ts index 8e5c19ecc0..9158819026 100644 --- a/samples/grids/pivot-grid/data-selector/src/index.ts +++ b/samples/grids/pivot-grid/data-selector/src/index.ts @@ -38,7 +38,7 @@ export class Sample { ], values: [ { - member: "SalePrice", + member: "Sales", enabled:false, dataType: 'currency', aggregate: { From 40c53f4a56cf7a4c6d305123e8a28e8d1c79b8d2 Mon Sep 17 00:00:00 2001 From: Riva Ivanova <49126110+RivaIvanova@users.noreply.github.com> Date: Mon, 4 Nov 2024 15:03:50 +0200 Subject: [PATCH 13/63] Update web components package to 5.1.1 (#859) --- browser/tasks/gulp-samples.js | 2 +- package-lock.json | 58 ++++++------------- package.json | 2 +- .../annotations-all/package.json | 2 +- .../annotations-callouts/package.json | 2 +- .../annotations-crosshairs/package.json | 2 +- .../annotations-custom/package.json | 2 +- .../annotations-final-value/package.json | 2 +- .../annotations-highlighting/package.json | 2 +- .../category-chart/axis-gap/package.json | 2 +- .../axis-gridlines/package.json | 2 +- .../category-chart/axis-inverted/package.json | 2 +- .../category-chart/axis-labels/package.json | 2 +- .../axis-locations/package.json | 2 +- .../category-chart/axis-overlap/package.json | 2 +- .../category-chart/axis-range/package.json | 2 +- .../axis-tickmarks/package.json | 2 +- .../chart-highlight-filter/package.json | 2 +- .../column-chart-with-tooltips/package.json | 2 +- .../data-aggregations/package.json | 2 +- .../category-chart/data-filter/package.json | 2 +- .../data-tooltip-positioning/package.json | 2 +- .../highlighting-behavior/package.json | 2 +- .../highlighting-mode/package.json | 2 +- .../marker-options/package.json | 2 +- .../selection-multiple-modes/package.json | 2 +- .../category-chart/value-lines/package.json | 2 +- .../axis-label-rotation/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../chart-highlight-filter/package.json | 2 +- .../data-chart/radial-label-mode/package.json | 2 +- .../data-chart/transition-event/package.json | 2 +- .../data-pie-chart/animation/package.json | 2 +- .../data-pie-chart/highlighting/package.json | 2 +- .../charts/data-pie-chart/others/package.json | 2 +- .../data-pie-chart/selection/package.json | 2 +- samples/charts/sparkline/markers/package.json | 2 +- .../sparkline/normal-range/package.json | 2 +- .../charts/sparkline/trendlines/package.json | 2 +- .../sparkline/unknown-values/package.json | 2 +- samples/charts/toolbar/theming/package.json | 2 +- .../charts/tree-map/highlighting/package.json | 2 +- samples/charts/tree-map/layout/package.json | 2 +- .../grid/binding-composite-data/package.json | 2 +- .../grid/binding-nested-data-1/package.json | 2 +- .../grids/grid/cascading-combo/package.json | 2 +- .../grid/cell-editing-sample/package.json | 2 +- .../grid/cell-selection-mode/package.json | 2 +- .../grid/change-icons-custom/package.json | 2 +- .../grid/clipboard-operations/package.json | 2 +- .../grid/column-moving-options/package.json | 2 +- .../grid/column-moving-styles/package.json | 2 +- .../column-pinning-right-side/package.json | 2 +- .../grid/column-selection-mode/package.json | 2 +- .../grid/column-sorting-options/package.json | 2 +- .../grid/custom-context-menu/package.json | 2 +- .../data-batch-editing-actions/package.json | 2 +- .../grid/data-paste-options/package.json | 2 +- .../package.json | 2 +- .../grids/grid/data-searching/package.json | 2 +- .../grid/data-summary-template/package.json | 2 +- .../package.json | 2 +- .../grid/data-validator-service/package.json | 2 +- .../package.json | 2 +- .../grids/grid/filtering-style/package.json | 2 +- .../grid/groupby-summary-options/package.json | 2 +- .../grid/groupby-summary-styling/package.json | 2 +- .../grid/layout-display-density/package.json | 2 +- .../package.json | 2 +- samples/grids/grid/paste/package.json | 2 +- .../grids/grid/row-paging-basic/package.json | 2 +- .../grid/row-paging-options/package.json | 2 +- .../grid/row-pinning-options/package.json | 2 +- .../grid/row-selection-mode/package.json | 2 +- .../package.json | 2 +- samples/grids/grid/row-styles/package.json | 2 +- .../grid/state-persistence-about/package.json | 2 +- .../grid/state-persistence-main/package.json | 2 +- .../cell-editing-sample/package.json | 2 +- .../cell-selection-mode/package.json | 2 +- .../cell-selection-overview/package.json | 2 +- .../cell-selection-style/package.json | 2 +- .../cell-selection-styling/package.json | 2 +- .../column-selection-mode/package.json | 2 +- .../data-summary-template/package.json | 2 +- .../layout-display-density/package.json | 2 +- .../package.json | 2 +- .../row-pinning-extra-column/package.json | 2 +- .../row-pinning-options/package.json | 2 +- .../row-selection-mode/package.json | 2 +- .../package.json | 2 +- .../state-persistence-about/package.json | 2 +- .../state-persistence-main/package.json | 2 +- .../grids/list/add-list-items/package.json | 2 +- .../grids/list/list-item-content/package.json | 2 +- samples/grids/list/overview/package.json | 2 +- samples/grids/list/styling/package.json | 2 +- .../data-persistence-noop/package.json | 2 +- .../state-persistence-about/package.json | 2 +- .../state-persistence-main/package.json | 2 +- .../cell-editing-sample/package.json | 2 +- .../cell-selection-mode/package.json | 2 +- .../clipboard-operations/package.json | 2 +- .../column-selection-mode/package.json | 2 +- .../column-sorting-options/package.json | 2 +- .../tree-grid/data-searching/package.json | 2 +- .../data-summary-children/package.json | 2 +- .../data-summary-template/package.json | 2 +- .../package.json | 2 +- .../layout-display-density/package.json | 2 +- .../package.json | 2 +- .../tree-grid/row-paging-options/package.json | 2 +- .../row-pinning-options/package.json | 2 +- .../tree-grid/row-selection-mode/package.json | 2 +- .../state-persistence-about/package.json | 2 +- .../state-persistence-main/package.json | 2 +- .../tree-grid/toolbar-sample-1/package.json | 2 +- .../tree-grid/toolbar-sample-3/package.json | 2 +- .../tree-grid/toolbar-style/package.json | 2 +- samples/grids/tree/basic-example/package.json | 2 +- .../load-on-demand-virtualized/package.json | 2 +- .../grids/tree/load-on-demand/package.json | 2 +- samples/inputs/badge/outlined/package.json | 2 +- samples/inputs/badge/shape/package.json | 2 +- samples/inputs/badge/variants/package.json | 2 +- .../button-group/alignment/package.json | 2 +- .../inputs/button-group/overview/package.json | 2 +- .../button-group/selection/package.json | 2 +- samples/inputs/button-group/size/package.json | 2 +- .../inputs/button-group/styling/package.json | 2 +- samples/inputs/button/contained/package.json | 2 +- samples/inputs/button/download/package.json | 2 +- samples/inputs/button/fab/package.json | 2 +- samples/inputs/button/flat/package.json | 2 +- samples/inputs/button/outlined/package.json | 2 +- samples/inputs/button/overview/package.json | 2 +- samples/inputs/button/size/package.json | 2 +- samples/inputs/button/styling/package.json | 2 +- samples/inputs/checkbox/checking/package.json | 2 +- samples/inputs/checkbox/disabled/package.json | 2 +- .../checkbox/indeterminate/package.json | 2 +- samples/inputs/checkbox/label/package.json | 2 +- samples/inputs/checkbox/overview/package.json | 2 +- samples/inputs/chip/multiple/package.json | 2 +- samples/inputs/chip/overview/package.json | 2 +- samples/inputs/chip/size/package.json | 2 +- samples/inputs/chip/styling/package.json | 2 +- samples/inputs/chip/variants/package.json | 2 +- .../dynamic/package.json | 2 +- .../indeterminate/package.json | 2 +- .../simple/package.json | 2 +- .../styling/package.json | 2 +- samples/inputs/combo/features/package.json | 2 +- samples/inputs/combo/overview/package.json | 2 +- samples/inputs/combo/selection/package.json | 2 +- samples/inputs/combo/simplified/package.json | 2 +- samples/inputs/combo/styling/package.json | 2 +- samples/inputs/combo/templates/package.json | 2 +- .../input-format-display-format/package.json | 2 +- .../min-max-value/package.json | 2 +- .../date-time-input/overview/package.json | 2 +- .../date-time-input/step-up-down/package.json | 2 +- .../date-time-input/step-up-down/src/index.ts | 7 +-- samples/inputs/dropdown/group/package.json | 2 +- samples/inputs/dropdown/header/package.json | 2 +- samples/inputs/dropdown/item/package.json | 2 +- samples/inputs/dropdown/overview/package.json | 2 +- samples/inputs/dropdown/position/package.json | 2 +- samples/inputs/dropdown/styling/package.json | 2 +- samples/inputs/dropdown/target/package.json | 2 +- samples/inputs/icon-button/size/package.json | 2 +- .../inputs/icon-button/styling/package.json | 2 +- .../inputs/icon-button/variant/package.json | 2 +- samples/inputs/input/helper-text/package.json | 2 +- samples/inputs/input/overview/package.json | 2 +- .../inputs/input/prefix-suffix/package.json | 2 +- samples/inputs/input/size/package.json | 2 +- samples/inputs/input/styling/package.json | 2 +- .../dynamic/package.json | 2 +- .../simple/package.json | 2 +- .../striped/package.json | 2 +- .../styling/package.json | 2 +- .../types/package.json | 2 +- .../mask-input/applying-mask/package.json | 2 +- .../inputs/mask-input/overview/package.json | 2 +- .../mask-input/value-modes/package.json | 2 +- samples/inputs/radio/alignment/package.json | 2 +- samples/inputs/radio/disabled/package.json | 2 +- samples/inputs/radio/group/package.json | 2 +- samples/inputs/radio/invalid/package.json | 2 +- samples/inputs/radio/label/package.json | 2 +- samples/inputs/radio/styling/package.json | 2 +- samples/inputs/rating/basic/package.json | 2 +- samples/inputs/rating/custom/package.json | 2 +- samples/inputs/rating/empty/package.json | 2 +- .../rating/single-selection/package.json | 2 +- samples/inputs/rating/styling/package.json | 2 +- samples/inputs/ripple/button/package.json | 2 +- samples/inputs/ripple/color/package.json | 2 +- samples/inputs/select/group/package.json | 2 +- samples/inputs/select/header/package.json | 2 +- samples/inputs/select/item/package.json | 2 +- samples/inputs/select/overview/package.json | 2 +- samples/inputs/select/styling/package.json | 2 +- .../inputs/slider/constraints/package.json | 2 +- samples/inputs/slider/disabled/package.json | 2 +- samples/inputs/slider/discrete/package.json | 2 +- samples/inputs/slider/labels/package.json | 2 +- samples/inputs/slider/overview/package.json | 2 +- samples/inputs/slider/styling/package.json | 2 +- .../inputs/slider/tick-labels/package.json | 2 +- samples/inputs/slider/ticks/package.json | 2 +- .../inputs/slider/value-format/package.json | 2 +- samples/inputs/slider/value/package.json | 2 +- samples/inputs/switches/checking/package.json | 2 +- samples/inputs/switches/disabled/package.json | 2 +- samples/inputs/switches/label/package.json | 2 +- samples/inputs/switches/overview/package.json | 2 +- .../textarea/form-integration/package.json | 2 +- samples/inputs/textarea/overview/package.json | 2 +- samples/inputs/textarea/resize/package.json | 2 +- samples/inputs/textarea/slots/package.json | 2 +- samples/inputs/textarea/styling/package.json | 2 +- .../accordion/customization/package.json | 2 +- .../accordion/nested-scenario/package.json | 2 +- .../layouts/accordion/overview/package.json | 2 +- samples/layouts/avatar/icon/package.json | 2 +- samples/layouts/avatar/image/package.json | 2 +- samples/layouts/avatar/initials/package.json | 2 +- samples/layouts/avatar/shape/package.json | 2 +- samples/layouts/avatar/size/package.json | 2 +- samples/layouts/card/horizontal/package.json | 2 +- samples/layouts/card/integration/package.json | 2 +- samples/layouts/card/overview/package.json | 2 +- .../layouts/card/semi-horizontal/package.json | 2 +- samples/layouts/card/styling/package.json | 2 +- samples/layouts/divider/dashed/package.json | 2 +- samples/layouts/divider/middle/package.json | 2 +- samples/layouts/divider/overview/package.json | 2 +- samples/layouts/divider/select/package.json | 2 +- samples/layouts/divider/vertical/package.json | 2 +- .../layouts/dock-manager/styling/package.json | 2 +- .../component-customization/package.json | 2 +- .../properties-and-events/package.json | 2 +- .../expansion-panel/styling/package.json | 2 +- .../expansion-panel/usage/package.json | 2 +- samples/layouts/icon/sizing/package.json | 2 +- samples/layouts/icon/styling/package.json | 2 +- .../layouts/stepper/animations/package.json | 2 +- samples/layouts/stepper/linear/package.json | 2 +- .../layouts/stepper/orientation/package.json | 2 +- samples/layouts/stepper/overview/package.json | 2 +- .../layouts/stepper/steptypes/package.json | 2 +- samples/layouts/tabs/alignment/package.json | 2 +- samples/layouts/tabs/overview/package.json | 2 +- .../layouts/tabs/prefix-suffix/package.json | 2 +- samples/layouts/tabs/scrolling/package.json | 2 +- samples/menus/nav-bar/overview/package.json | 2 +- samples/menus/nav-bar/styling/package.json | 2 +- .../nav-drawer/add-drawer-items/package.json | 2 +- .../menus/nav-drawer/add-mini/package.json | 2 +- .../add-positions-navbar/package.json | 2 +- samples/menus/nav-drawer/styling/package.json | 2 +- .../banner-advanced-sample/package.json | 2 +- .../banner/banner-sample-1/package.json | 2 +- .../banner/banner-sample-2/package.json | 2 +- .../banner/banner-styling/package.json | 2 +- .../dialog/closing-variations/package.json | 2 +- .../notifications/dialog/form/package.json | 2 +- .../dialog/overview/package.json | 2 +- .../notifications/dialog/styling/package.json | 2 +- .../snackbar/action-text/package.json | 2 +- .../snackbar/display-time/package.json | 2 +- .../snackbar/overview/package.json | 2 +- .../snackbar/styling/package.json | 2 +- .../notifications/toast/overview/package.json | 2 +- .../toast/properties/package.json | 2 +- .../notifications/toast/styling/package.json | 2 +- .../calendar/disabled-dates/package.json | 2 +- .../calendar/formatting/package.json | 2 +- .../scheduling/calendar/header/package.json | 2 +- .../calendar/multiple-months/package.json | 2 +- .../calendar/multiple-selection/package.json | 2 +- .../scheduling/calendar/overview/package.json | 2 +- .../calendar/range-selection/package.json | 2 +- samples/scheduling/calendar/size/package.json | 2 +- .../calendar/special-dates/package.json | 2 +- .../scheduling/calendar/styling/package.json | 2 +- .../calendar/week-numbers/package.json | 2 +- .../date-picker/dialog-mode/package.json | 2 +- .../scheduling/date-picker/form/package.json | 2 +- .../date-picker/format/package.json | 2 +- .../date-picker/overview/package.json | 2 +- .../date-picker/styling/package.json | 2 +- 295 files changed, 314 insertions(+), 337 deletions(-) diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js index 3bd9240dec..abe977c7a2 100644 --- a/browser/tasks/gulp-samples.js +++ b/browser/tasks/gulp-samples.js @@ -988,7 +988,7 @@ function updateIG(cb) { { name: "igniteui-webcomponents-spreadsheet" , version: "5.0.2" }, { name: "igniteui-webcomponents-datasources" , version: "5.0.2" }, // these IG packages are sometimes updated: - { name: "igniteui-webcomponents", version: "5.0.0" }, + { name: "igniteui-webcomponents", version: "5.1.1" }, { name: "igniteui-dockmanager", version: "1.14.3" }, // other packages: { name: "webpack", version: "^5.74.0" }, diff --git a/package-lock.json b/package-lock.json index 238b84f80e..4185a6a34f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -21,7 +21,7 @@ "core-js": "^3.6.5", "file-saver": "^2.0.2", "igniteui-dockmanager": "1.14.3", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-datasources": "5.0.2", @@ -2017,6 +2017,15 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, + "node_modules/@lit/context": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@lit/context/-/context-1.1.3.tgz", + "integrity": "sha512-Auh37F4S0PZM93HTDfZWs97mmzaQ7M3vnTc9YvxAGyP3UItSK/8Fs0vTOGT+njuvOwbKio/l8Cx/zWL4vkutpQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@lit/reactive-element": "^1.6.2 || ^2.0.0" + } + }, "node_modules/@lit/reactive-element": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.0.4.tgz", @@ -8780,13 +8789,18 @@ "integrity": "sha512-q6thtu+7R6MOB+i9GorFPCcWeOImW43BzCAtKnDAYWwaoueb8Lg1EhBkIhAyfEIH+yZ/9c5lnZdU61/GRPoP+g==" }, "node_modules/igniteui-webcomponents": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-5.0.0.tgz", - "integrity": "sha512-f4nRojq18HjbrBjzhqj4c/uBJPR6UqIYw8TDjsUJwxaxHxGnp+wbzPLPhcdHXLnbEaNbMQIcBFHICoGu0hwQqg==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-5.1.1.tgz", + "integrity": "sha512-//owN7Cr9q+CBjxcZYNqECnaD4d7NHIzXJlaIr1Hi39yECP/24XnX+84UjVHgHldnAK0WlzSRR71hQud+W6S4Q==", + "license": "SEE LICENSE IN LICENSE", "dependencies": { "@floating-ui/dom": "^1.6.0", "@lit-labs/virtualizer": "^2.0.10", + "@lit/context": "^1.1.0", "lit": "^3.2.0" + }, + "engines": { + "node": ">=18" } }, "node_modules/igniteui-webcomponents-charts": { @@ -8975,42 +8989,6 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, - "node_modules/igniteui-webcomponents/node_modules/@lit/reactive-element": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.0.4.tgz", - "integrity": "sha512-GFn91inaUa2oHLak8awSIigYz0cU0Payr1rcFsrkf5OJ5eSPxElyZfKh0f2p9FsTiZWXQdWGJeXZICEfXXYSXQ==", - "dependencies": { - "@lit-labs/ssr-dom-shim": "^1.2.0" - } - }, - "node_modules/igniteui-webcomponents/node_modules/lit": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lit/-/lit-3.2.0.tgz", - "integrity": "sha512-s6tI33Lf6VpDu7u4YqsSX78D28bYQulM+VAzsGch4fx2H0eLZnJsUBsPWmGYSGoKDNbjtRv02rio1o+UdPVwvw==", - "dependencies": { - "@lit/reactive-element": "^2.0.4", - "lit-element": "^4.1.0", - "lit-html": "^3.2.0" - } - }, - "node_modules/igniteui-webcomponents/node_modules/lit-element": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-4.1.0.tgz", - "integrity": "sha512-gSejRUQJuMQjV2Z59KAS/D4iElUhwKpIyJvZ9w+DIagIQjfJnhR20h2Q5ddpzXGS+fF0tMZ/xEYGMnKmaI/iww==", - "dependencies": { - "@lit-labs/ssr-dom-shim": "^1.2.0", - "@lit/reactive-element": "^2.0.4", - "lit-html": "^3.2.0" - } - }, - "node_modules/igniteui-webcomponents/node_modules/lit-html": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-3.2.0.tgz", - "integrity": "sha512-pwT/HwoxqI9FggTrYVarkBKFN9MlTUpLrDHubTmW4SrkL3kkqW5gxwbxMMUnbbRHBC0WTZnYHcjDSCM559VyfA==", - "dependencies": { - "@types/trusted-types": "^2.0.2" - } - }, "node_modules/ignore": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", diff --git a/package.json b/package.json index f8e4293c13..1325f53830 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "core-js": "^3.6.5", "file-saver": "^2.0.2", "igniteui-dockmanager": "1.14.3", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-datasources": "5.0.2", diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index c98829bb32..1315c7090b 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-charts": "5.0.2", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/binding-composite-data/package.json +++ b/samples/grids/grid/binding-composite-data/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/binding-nested-data-1/package.json +++ b/samples/grids/grid/binding-nested-data-1/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/cascading-combo/package.json b/samples/grids/grid/cascading-combo/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/cascading-combo/package.json +++ b/samples/grids/grid/cascading-combo/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/cell-editing-sample/package.json b/samples/grids/grid/cell-editing-sample/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/cell-editing-sample/package.json +++ b/samples/grids/grid/cell-editing-sample/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/cell-selection-mode/package.json +++ b/samples/grids/grid/cell-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/change-icons-custom/package.json b/samples/grids/grid/change-icons-custom/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/grid/change-icons-custom/package.json +++ b/samples/grids/grid/change-icons-custom/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/clipboard-operations/package.json b/samples/grids/grid/clipboard-operations/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/grid/clipboard-operations/package.json +++ b/samples/grids/grid/clipboard-operations/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/column-moving-options/package.json b/samples/grids/grid/column-moving-options/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/column-moving-options/package.json +++ b/samples/grids/grid/column-moving-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/column-moving-styles/package.json b/samples/grids/grid/column-moving-styles/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/column-moving-styles/package.json +++ b/samples/grids/grid/column-moving-styles/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/column-pinning-right-side/package.json b/samples/grids/grid/column-pinning-right-side/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/column-pinning-right-side/package.json +++ b/samples/grids/grid/column-pinning-right-side/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/column-selection-mode/package.json b/samples/grids/grid/column-selection-mode/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/column-selection-mode/package.json +++ b/samples/grids/grid/column-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/column-sorting-options/package.json b/samples/grids/grid/column-sorting-options/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/column-sorting-options/package.json +++ b/samples/grids/grid/column-sorting-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/custom-context-menu/package.json b/samples/grids/grid/custom-context-menu/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/grid/custom-context-menu/package.json +++ b/samples/grids/grid/custom-context-menu/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/data-batch-editing-actions/package.json b/samples/grids/grid/data-batch-editing-actions/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/data-batch-editing-actions/package.json +++ b/samples/grids/grid/data-batch-editing-actions/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/data-paste-options/package.json b/samples/grids/grid/data-paste-options/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/grid/data-paste-options/package.json +++ b/samples/grids/grid/data-paste-options/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/data-performance-virtualization/package.json b/samples/grids/grid/data-performance-virtualization/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/data-performance-virtualization/package.json +++ b/samples/grids/grid/data-performance-virtualization/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/data-searching/package.json b/samples/grids/grid/data-searching/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/grid/data-searching/package.json +++ b/samples/grids/grid/data-searching/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/data-summary-template/package.json +++ b/samples/grids/grid/data-summary-template/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/data-validator-service-extended/package.json +++ b/samples/grids/grid/data-validator-service-extended/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/data-validator-service/package.json +++ b/samples/grids/grid/data-validator-service/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/excel-style-filtering-sample-1/package.json b/samples/grids/grid/excel-style-filtering-sample-1/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/filtering-style/package.json +++ b/samples/grids/grid/filtering-style/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/groupby-summary-options/package.json b/samples/grids/grid/groupby-summary-options/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/groupby-summary-options/package.json +++ b/samples/grids/grid/groupby-summary-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/groupby-summary-styling/package.json b/samples/grids/grid/groupby-summary-styling/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/groupby-summary-styling/package.json +++ b/samples/grids/grid/groupby-summary-styling/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/layout-display-density/package.json b/samples/grids/grid/layout-display-density/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/layout-display-density/package.json +++ b/samples/grids/grid/layout-display-density/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/multi-column-headers-overview/package.json b/samples/grids/grid/multi-column-headers-overview/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/multi-column-headers-overview/package.json +++ b/samples/grids/grid/multi-column-headers-overview/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/paste/package.json b/samples/grids/grid/paste/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/paste/package.json +++ b/samples/grids/grid/paste/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/row-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/row-paging-basic/package.json +++ b/samples/grids/grid/row-paging-basic/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/row-paging-options/package.json b/samples/grids/grid/row-paging-options/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/row-paging-options/package.json +++ b/samples/grids/grid/row-paging-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/row-pinning-options/package.json b/samples/grids/grid/row-pinning-options/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/row-pinning-options/package.json +++ b/samples/grids/grid/row-pinning-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/row-selection-mode/package.json b/samples/grids/grid/row-selection-mode/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/row-selection-mode/package.json +++ b/samples/grids/grid/row-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/row-selection-template-numbers/package.json b/samples/grids/grid/row-selection-template-numbers/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/row-selection-template-numbers/package.json +++ b/samples/grids/grid/row-selection-template-numbers/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/row-styles/package.json b/samples/grids/grid/row-styles/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/grid/row-styles/package.json +++ b/samples/grids/grid/row-styles/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/state-persistence-about/package.json b/samples/grids/grid/state-persistence-about/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/grid/state-persistence-about/package.json +++ b/samples/grids/grid/state-persistence-about/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/grid/state-persistence-main/package.json b/samples/grids/grid/state-persistence-main/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/grid/state-persistence-main/package.json +++ b/samples/grids/grid/state-persistence-main/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/package.json b/samples/grids/hierarchical-grid/cell-editing-sample/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/package.json b/samples/grids/hierarchical-grid/cell-selection-mode/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/package.json b/samples/grids/hierarchical-grid/cell-selection-overview/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/cell-selection-style/package.json b/samples/grids/hierarchical-grid/cell-selection-style/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/cell-selection-styling/package.json b/samples/grids/hierarchical-grid/cell-selection-styling/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/hierarchical-grid/cell-selection-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-styling/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/column-selection-mode/package.json b/samples/grids/hierarchical-grid/column-selection-mode/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/data-summary-template/package.json b/samples/grids/hierarchical-grid/data-summary-template/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/package.json +++ b/samples/grids/hierarchical-grid/data-summary-template/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/layout-display-density/package.json b/samples/grids/hierarchical-grid/layout-display-density/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/package.json +++ b/samples/grids/hierarchical-grid/layout-display-density/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/row-pinning-options/package.json b/samples/grids/hierarchical-grid/row-pinning-options/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/row-selection-mode/package.json b/samples/grids/hierarchical-grid/row-selection-mode/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/state-persistence-about/package.json b/samples/grids/hierarchical-grid/state-persistence-about/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-about/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/hierarchical-grid/state-persistence-main/package.json b/samples/grids/hierarchical-grid/state-persistence-main/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-main/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/list/add-list-items/package.json b/samples/grids/list/add-list-items/package.json index 065075cea9..b10543244a 100644 --- a/samples/grids/list/add-list-items/package.json +++ b/samples/grids/list/add-list-items/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "lit": "^3.2.0", "lit-html": "^3.2.0", diff --git a/samples/grids/list/list-item-content/package.json b/samples/grids/list/list-item-content/package.json index 2def0e3748..30cd1c8a6e 100644 --- a/samples/grids/list/list-item-content/package.json +++ b/samples/grids/list/list-item-content/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/grids/list/overview/package.json b/samples/grids/list/overview/package.json index caf7dd4fed..29af7f8694 100644 --- a/samples/grids/list/overview/package.json +++ b/samples/grids/list/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/grids/list/styling/package.json b/samples/grids/list/styling/package.json index 73a81991a3..7d91a92b34 100644 --- a/samples/grids/list/styling/package.json +++ b/samples/grids/list/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/grids/pivot-grid/data-persistence-noop/package.json b/samples/grids/pivot-grid/data-persistence-noop/package.json index 9833a9bb90..5faa9bd163 100644 --- a/samples/grids/pivot-grid/data-persistence-noop/package.json +++ b/samples/grids/pivot-grid/data-persistence-noop/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/pivot-grid/state-persistence-about/package.json b/samples/grids/pivot-grid/state-persistence-about/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/pivot-grid/state-persistence-about/package.json +++ b/samples/grids/pivot-grid/state-persistence-about/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/pivot-grid/state-persistence-main/package.json b/samples/grids/pivot-grid/state-persistence-main/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/pivot-grid/state-persistence-main/package.json +++ b/samples/grids/pivot-grid/state-persistence-main/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/cell-editing-sample/package.json +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/cell-selection-mode/package.json b/samples/grids/tree-grid/cell-selection-mode/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/cell-selection-mode/package.json +++ b/samples/grids/tree-grid/cell-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/clipboard-operations/package.json b/samples/grids/tree-grid/clipboard-operations/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/tree-grid/clipboard-operations/package.json +++ b/samples/grids/tree-grid/clipboard-operations/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/column-selection-mode/package.json b/samples/grids/tree-grid/column-selection-mode/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/column-selection-mode/package.json +++ b/samples/grids/tree-grid/column-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/column-sorting-options/package.json b/samples/grids/tree-grid/column-sorting-options/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/column-sorting-options/package.json +++ b/samples/grids/tree-grid/column-sorting-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/data-searching/package.json b/samples/grids/tree-grid/data-searching/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/tree-grid/data-searching/package.json +++ b/samples/grids/tree-grid/data-searching/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/data-summary-children/package.json b/samples/grids/tree-grid/data-summary-children/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/data-summary-children/package.json +++ b/samples/grids/tree-grid/data-summary-children/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/data-summary-template/package.json b/samples/grids/tree-grid/data-summary-template/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/data-summary-template/package.json +++ b/samples/grids/tree-grid/data-summary-template/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/layout-display-density/package.json b/samples/grids/tree-grid/layout-display-density/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/layout-display-density/package.json +++ b/samples/grids/tree-grid/layout-display-density/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/multi-column-headers-overview/package.json b/samples/grids/tree-grid/multi-column-headers-overview/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/package.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/row-paging-options/package.json b/samples/grids/tree-grid/row-paging-options/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/row-paging-options/package.json +++ b/samples/grids/tree-grid/row-paging-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/row-pinning-options/package.json b/samples/grids/tree-grid/row-pinning-options/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/row-pinning-options/package.json +++ b/samples/grids/tree-grid/row-pinning-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/row-selection-mode/package.json b/samples/grids/tree-grid/row-selection-mode/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/row-selection-mode/package.json +++ b/samples/grids/tree-grid/row-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/state-persistence-about/package.json b/samples/grids/tree-grid/state-persistence-about/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/tree-grid/state-persistence-about/package.json +++ b/samples/grids/tree-grid/state-persistence-about/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/state-persistence-main/package.json b/samples/grids/tree-grid/state-persistence-main/package.json index 6c34b1d2b8..51b19a2a45 100644 --- a/samples/grids/tree-grid/state-persistence-main/package.json +++ b/samples/grids/tree-grid/state-persistence-main/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/toolbar-sample-1/package.json b/samples/grids/tree-grid/toolbar-sample-1/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/package.json +++ b/samples/grids/tree-grid/toolbar-sample-1/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/toolbar-sample-3/package.json b/samples/grids/tree-grid/toolbar-sample-3/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/package.json +++ b/samples/grids/tree-grid/toolbar-sample-3/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree-grid/toolbar-style/package.json b/samples/grids/tree-grid/toolbar-style/package.json index 5f9deabc52..bcf25d6225 100644 --- a/samples/grids/tree-grid/toolbar-style/package.json +++ b/samples/grids/tree-grid/toolbar-style/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "igniteui-webcomponents-grids": "5.0.2", "igniteui-webcomponents-inputs": "5.0.2", diff --git a/samples/grids/tree/basic-example/package.json b/samples/grids/tree/basic-example/package.json index 4c0db4c1f0..822d6bb54d 100644 --- a/samples/grids/tree/basic-example/package.json +++ b/samples/grids/tree/basic-example/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/grids/tree/load-on-demand-virtualized/package.json b/samples/grids/tree/load-on-demand-virtualized/package.json index b777fef150..6bc395bf7c 100644 --- a/samples/grids/tree/load-on-demand-virtualized/package.json +++ b/samples/grids/tree/load-on-demand-virtualized/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/grids/tree/load-on-demand/package.json b/samples/grids/tree/load-on-demand/package.json index 4cb7c1bbc1..25733c972f 100644 --- a/samples/grids/tree/load-on-demand/package.json +++ b/samples/grids/tree/load-on-demand/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/badge/outlined/package.json b/samples/inputs/badge/outlined/package.json index 5ddc3b2f0c..9e8fbabd7b 100644 --- a/samples/inputs/badge/outlined/package.json +++ b/samples/inputs/badge/outlined/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/badge/shape/package.json b/samples/inputs/badge/shape/package.json index 6dea48ae5d..33d5dbe119 100644 --- a/samples/inputs/badge/shape/package.json +++ b/samples/inputs/badge/shape/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/badge/variants/package.json b/samples/inputs/badge/variants/package.json index f6fb9e31b0..fd5e5dcca2 100644 --- a/samples/inputs/badge/variants/package.json +++ b/samples/inputs/badge/variants/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button-group/alignment/package.json b/samples/inputs/button-group/alignment/package.json index b060fb467f..2029c44173 100644 --- a/samples/inputs/button-group/alignment/package.json +++ b/samples/inputs/button-group/alignment/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button-group/overview/package.json b/samples/inputs/button-group/overview/package.json index 9b88cb1263..45a09a7063 100644 --- a/samples/inputs/button-group/overview/package.json +++ b/samples/inputs/button-group/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button-group/selection/package.json b/samples/inputs/button-group/selection/package.json index 35405b401c..da207071e4 100644 --- a/samples/inputs/button-group/selection/package.json +++ b/samples/inputs/button-group/selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button-group/size/package.json b/samples/inputs/button-group/size/package.json index b1de656c1c..d6cef59651 100644 --- a/samples/inputs/button-group/size/package.json +++ b/samples/inputs/button-group/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button-group/styling/package.json b/samples/inputs/button-group/styling/package.json index 306c0dfe69..5cc2cdae62 100644 --- a/samples/inputs/button-group/styling/package.json +++ b/samples/inputs/button-group/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/contained/package.json b/samples/inputs/button/contained/package.json index 7971f98af7..b6ffa97c99 100644 --- a/samples/inputs/button/contained/package.json +++ b/samples/inputs/button/contained/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/download/package.json b/samples/inputs/button/download/package.json index 51d2dec6c6..b870e95354 100644 --- a/samples/inputs/button/download/package.json +++ b/samples/inputs/button/download/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/fab/package.json b/samples/inputs/button/fab/package.json index b4a64e4ca2..8d5bc4a4e7 100644 --- a/samples/inputs/button/fab/package.json +++ b/samples/inputs/button/fab/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/flat/package.json b/samples/inputs/button/flat/package.json index f6938a57c2..b6213e8a0b 100644 --- a/samples/inputs/button/flat/package.json +++ b/samples/inputs/button/flat/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/outlined/package.json b/samples/inputs/button/outlined/package.json index 2dd38c69d8..8f7d1d72bb 100644 --- a/samples/inputs/button/outlined/package.json +++ b/samples/inputs/button/outlined/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/overview/package.json b/samples/inputs/button/overview/package.json index 3303df20e6..493732347f 100644 --- a/samples/inputs/button/overview/package.json +++ b/samples/inputs/button/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/size/package.json b/samples/inputs/button/size/package.json index 9167797c99..97cbf46ffb 100644 --- a/samples/inputs/button/size/package.json +++ b/samples/inputs/button/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/button/styling/package.json b/samples/inputs/button/styling/package.json index 10e4ae091c..9fc300faf6 100644 --- a/samples/inputs/button/styling/package.json +++ b/samples/inputs/button/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/checkbox/checking/package.json b/samples/inputs/checkbox/checking/package.json index 5fd1817d03..89b174fc25 100644 --- a/samples/inputs/checkbox/checking/package.json +++ b/samples/inputs/checkbox/checking/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/checkbox/disabled/package.json b/samples/inputs/checkbox/disabled/package.json index 35191b9a46..fc1a300399 100644 --- a/samples/inputs/checkbox/disabled/package.json +++ b/samples/inputs/checkbox/disabled/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/checkbox/indeterminate/package.json b/samples/inputs/checkbox/indeterminate/package.json index f4269f5c38..c224dc752d 100644 --- a/samples/inputs/checkbox/indeterminate/package.json +++ b/samples/inputs/checkbox/indeterminate/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/checkbox/label/package.json b/samples/inputs/checkbox/label/package.json index 2862116ccd..bfd9478a99 100644 --- a/samples/inputs/checkbox/label/package.json +++ b/samples/inputs/checkbox/label/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/checkbox/overview/package.json b/samples/inputs/checkbox/overview/package.json index c35a4cfe8e..0238037f77 100644 --- a/samples/inputs/checkbox/overview/package.json +++ b/samples/inputs/checkbox/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/chip/multiple/package.json b/samples/inputs/chip/multiple/package.json index 5fd1817d03..89b174fc25 100644 --- a/samples/inputs/chip/multiple/package.json +++ b/samples/inputs/chip/multiple/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/chip/overview/package.json b/samples/inputs/chip/overview/package.json index 5fd1817d03..89b174fc25 100644 --- a/samples/inputs/chip/overview/package.json +++ b/samples/inputs/chip/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/chip/size/package.json b/samples/inputs/chip/size/package.json index 5fd1817d03..89b174fc25 100644 --- a/samples/inputs/chip/size/package.json +++ b/samples/inputs/chip/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/chip/styling/package.json b/samples/inputs/chip/styling/package.json index 5fd1817d03..89b174fc25 100644 --- a/samples/inputs/chip/styling/package.json +++ b/samples/inputs/chip/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/chip/variants/package.json b/samples/inputs/chip/variants/package.json index 5fd1817d03..89b174fc25 100644 --- a/samples/inputs/chip/variants/package.json +++ b/samples/inputs/chip/variants/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/circular-progress-indicator/dynamic/package.json b/samples/inputs/circular-progress-indicator/dynamic/package.json index 5c76eec6bb..b720795906 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/package.json +++ b/samples/inputs/circular-progress-indicator/dynamic/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/circular-progress-indicator/indeterminate/package.json b/samples/inputs/circular-progress-indicator/indeterminate/package.json index 0c9cd2820d..fadcdd75a5 100644 --- a/samples/inputs/circular-progress-indicator/indeterminate/package.json +++ b/samples/inputs/circular-progress-indicator/indeterminate/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/circular-progress-indicator/simple/package.json b/samples/inputs/circular-progress-indicator/simple/package.json index e78260f6fc..042bf209a8 100644 --- a/samples/inputs/circular-progress-indicator/simple/package.json +++ b/samples/inputs/circular-progress-indicator/simple/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/circular-progress-indicator/styling/package.json b/samples/inputs/circular-progress-indicator/styling/package.json index ef3f17b709..ebe77a9c6b 100644 --- a/samples/inputs/circular-progress-indicator/styling/package.json +++ b/samples/inputs/circular-progress-indicator/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/combo/features/package.json b/samples/inputs/combo/features/package.json index 0a3cb77b59..8ef38e6d50 100644 --- a/samples/inputs/combo/features/package.json +++ b/samples/inputs/combo/features/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/combo/overview/package.json b/samples/inputs/combo/overview/package.json index 7998a15ee4..ebe6ce5792 100644 --- a/samples/inputs/combo/overview/package.json +++ b/samples/inputs/combo/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/combo/selection/package.json b/samples/inputs/combo/selection/package.json index d976a76275..0d7b2dd224 100644 --- a/samples/inputs/combo/selection/package.json +++ b/samples/inputs/combo/selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/combo/simplified/package.json b/samples/inputs/combo/simplified/package.json index d21f420acc..cdabef07b9 100644 --- a/samples/inputs/combo/simplified/package.json +++ b/samples/inputs/combo/simplified/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/combo/styling/package.json b/samples/inputs/combo/styling/package.json index 468b715cf5..95fca131b8 100644 --- a/samples/inputs/combo/styling/package.json +++ b/samples/inputs/combo/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/combo/templates/package.json b/samples/inputs/combo/templates/package.json index 51c68ac18d..ec26045e3d 100644 --- a/samples/inputs/combo/templates/package.json +++ b/samples/inputs/combo/templates/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/date-time-input/input-format-display-format/package.json b/samples/inputs/date-time-input/input-format-display-format/package.json index e9fa0c39d2..a6f6e90c64 100644 --- a/samples/inputs/date-time-input/input-format-display-format/package.json +++ b/samples/inputs/date-time-input/input-format-display-format/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/date-time-input/min-max-value/package.json b/samples/inputs/date-time-input/min-max-value/package.json index 4608411c5a..924a742fc0 100644 --- a/samples/inputs/date-time-input/min-max-value/package.json +++ b/samples/inputs/date-time-input/min-max-value/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/date-time-input/overview/package.json b/samples/inputs/date-time-input/overview/package.json index f0c3b3fc59..b912af4cf3 100644 --- a/samples/inputs/date-time-input/overview/package.json +++ b/samples/inputs/date-time-input/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/date-time-input/step-up-down/package.json b/samples/inputs/date-time-input/step-up-down/package.json index 9178a9397b..015444f710 100644 --- a/samples/inputs/date-time-input/step-up-down/package.json +++ b/samples/inputs/date-time-input/step-up-down/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/date-time-input/step-up-down/src/index.ts b/samples/inputs/date-time-input/step-up-down/src/index.ts index 91b8cef2b1..0ae596928a 100644 --- a/samples/inputs/date-time-input/step-up-down/src/index.ts +++ b/samples/inputs/date-time-input/step-up-down/src/index.ts @@ -1,5 +1,4 @@ -import { defineComponents, IgcIconComponent, IgcDateTimeInputComponent, registerIconFromText } from 'igniteui-webcomponents'; -import { DatePart, DatePartDeltas } from 'igniteui-webcomponents/components/date-time-input/date-util.js'; +import { defineComponents, IgcIconComponent, IgcDateTimeInputComponent, registerIconFromText, DatePartDeltas, DatePart } from 'igniteui-webcomponents'; import 'igniteui-webcomponents/themes/light/bootstrap.css'; defineComponents(IgcIconComponent, IgcDateTimeInputComponent); @@ -29,11 +28,11 @@ export class DateTimeInputStepUpDown { const down = document.getElementById('down'); up!.addEventListener('click', () => { - input.stepUp(DatePart.Month); + input.stepUp("month" as DatePart); }); down!.addEventListener('click', () => { - input.stepDown(DatePart.Date); + input.stepDown("date" as DatePart); }); registerIconFromText("up", upIcon); diff --git a/samples/inputs/dropdown/group/package.json b/samples/inputs/dropdown/group/package.json index eda366efc2..f7e9bba181 100644 --- a/samples/inputs/dropdown/group/package.json +++ b/samples/inputs/dropdown/group/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/dropdown/header/package.json b/samples/inputs/dropdown/header/package.json index 25c7f0bea0..72b4e7fa2c 100644 --- a/samples/inputs/dropdown/header/package.json +++ b/samples/inputs/dropdown/header/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/dropdown/item/package.json b/samples/inputs/dropdown/item/package.json index 16a3ff1923..e9e9ba516c 100644 --- a/samples/inputs/dropdown/item/package.json +++ b/samples/inputs/dropdown/item/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/dropdown/overview/package.json b/samples/inputs/dropdown/overview/package.json index 3e201fdd73..1bcf3a489a 100644 --- a/samples/inputs/dropdown/overview/package.json +++ b/samples/inputs/dropdown/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/dropdown/position/package.json b/samples/inputs/dropdown/position/package.json index 0e6feef8e8..76be6a48c3 100644 --- a/samples/inputs/dropdown/position/package.json +++ b/samples/inputs/dropdown/position/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/dropdown/styling/package.json b/samples/inputs/dropdown/styling/package.json index bcd75272c7..0876a1953d 100644 --- a/samples/inputs/dropdown/styling/package.json +++ b/samples/inputs/dropdown/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/dropdown/target/package.json b/samples/inputs/dropdown/target/package.json index f217cf1920..d07a87e5f1 100644 --- a/samples/inputs/dropdown/target/package.json +++ b/samples/inputs/dropdown/target/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/icon-button/size/package.json b/samples/inputs/icon-button/size/package.json index 7971f98af7..b6ffa97c99 100644 --- a/samples/inputs/icon-button/size/package.json +++ b/samples/inputs/icon-button/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/icon-button/styling/package.json b/samples/inputs/icon-button/styling/package.json index 7971f98af7..b6ffa97c99 100644 --- a/samples/inputs/icon-button/styling/package.json +++ b/samples/inputs/icon-button/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/icon-button/variant/package.json b/samples/inputs/icon-button/variant/package.json index 7971f98af7..b6ffa97c99 100644 --- a/samples/inputs/icon-button/variant/package.json +++ b/samples/inputs/icon-button/variant/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/input/helper-text/package.json b/samples/inputs/input/helper-text/package.json index bec71e0512..e262ffc14f 100644 --- a/samples/inputs/input/helper-text/package.json +++ b/samples/inputs/input/helper-text/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/input/overview/package.json b/samples/inputs/input/overview/package.json index dda7535a77..4e1d47877f 100644 --- a/samples/inputs/input/overview/package.json +++ b/samples/inputs/input/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/input/prefix-suffix/package.json b/samples/inputs/input/prefix-suffix/package.json index 3a8842227a..8b2827634e 100644 --- a/samples/inputs/input/prefix-suffix/package.json +++ b/samples/inputs/input/prefix-suffix/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/input/size/package.json b/samples/inputs/input/size/package.json index 4ddf07bb44..4707d30020 100644 --- a/samples/inputs/input/size/package.json +++ b/samples/inputs/input/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/input/styling/package.json b/samples/inputs/input/styling/package.json index caeea56ebd..753d91ede3 100644 --- a/samples/inputs/input/styling/package.json +++ b/samples/inputs/input/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/linear-progress-indicator/dynamic/package.json b/samples/inputs/linear-progress-indicator/dynamic/package.json index 5c76eec6bb..b720795906 100644 --- a/samples/inputs/linear-progress-indicator/dynamic/package.json +++ b/samples/inputs/linear-progress-indicator/dynamic/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/linear-progress-indicator/simple/package.json b/samples/inputs/linear-progress-indicator/simple/package.json index f1e0071d07..f83482fdee 100644 --- a/samples/inputs/linear-progress-indicator/simple/package.json +++ b/samples/inputs/linear-progress-indicator/simple/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/linear-progress-indicator/striped/package.json b/samples/inputs/linear-progress-indicator/striped/package.json index c8398a9ebd..a4faf8a7c8 100644 --- a/samples/inputs/linear-progress-indicator/striped/package.json +++ b/samples/inputs/linear-progress-indicator/striped/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/linear-progress-indicator/styling/package.json b/samples/inputs/linear-progress-indicator/styling/package.json index 9c153934fc..a1fb1fc0e0 100644 --- a/samples/inputs/linear-progress-indicator/styling/package.json +++ b/samples/inputs/linear-progress-indicator/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/linear-progress-indicator/types/package.json b/samples/inputs/linear-progress-indicator/types/package.json index 5c25e2b166..7388ec29d1 100644 --- a/samples/inputs/linear-progress-indicator/types/package.json +++ b/samples/inputs/linear-progress-indicator/types/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/mask-input/applying-mask/package.json b/samples/inputs/mask-input/applying-mask/package.json index 0db555fa7a..f16d1136c4 100644 --- a/samples/inputs/mask-input/applying-mask/package.json +++ b/samples/inputs/mask-input/applying-mask/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/mask-input/overview/package.json b/samples/inputs/mask-input/overview/package.json index 790804b01b..3fde6a1d43 100644 --- a/samples/inputs/mask-input/overview/package.json +++ b/samples/inputs/mask-input/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/mask-input/value-modes/package.json b/samples/inputs/mask-input/value-modes/package.json index c808170d54..5c10d72fe8 100644 --- a/samples/inputs/mask-input/value-modes/package.json +++ b/samples/inputs/mask-input/value-modes/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/radio/alignment/package.json b/samples/inputs/radio/alignment/package.json index 8db4043b4b..8145a4048f 100644 --- a/samples/inputs/radio/alignment/package.json +++ b/samples/inputs/radio/alignment/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/radio/disabled/package.json b/samples/inputs/radio/disabled/package.json index f1dba73686..a24c6eb2e7 100644 --- a/samples/inputs/radio/disabled/package.json +++ b/samples/inputs/radio/disabled/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/radio/group/package.json b/samples/inputs/radio/group/package.json index d15497bc5c..e3c9ebac97 100644 --- a/samples/inputs/radio/group/package.json +++ b/samples/inputs/radio/group/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/radio/invalid/package.json b/samples/inputs/radio/invalid/package.json index 2465b1e2ec..150888d5d3 100644 --- a/samples/inputs/radio/invalid/package.json +++ b/samples/inputs/radio/invalid/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/radio/label/package.json b/samples/inputs/radio/label/package.json index 2f06e76ee5..aa9976ddda 100644 --- a/samples/inputs/radio/label/package.json +++ b/samples/inputs/radio/label/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/radio/styling/package.json b/samples/inputs/radio/styling/package.json index 80e2812ae9..4fded05fe1 100644 --- a/samples/inputs/radio/styling/package.json +++ b/samples/inputs/radio/styling/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/rating/basic/package.json b/samples/inputs/rating/basic/package.json index 5ddc3b2f0c..9e8fbabd7b 100644 --- a/samples/inputs/rating/basic/package.json +++ b/samples/inputs/rating/basic/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/rating/custom/package.json b/samples/inputs/rating/custom/package.json index a92c142d36..746778c593 100644 --- a/samples/inputs/rating/custom/package.json +++ b/samples/inputs/rating/custom/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/rating/empty/package.json b/samples/inputs/rating/empty/package.json index dfc4512d50..0698314369 100644 --- a/samples/inputs/rating/empty/package.json +++ b/samples/inputs/rating/empty/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/rating/single-selection/package.json b/samples/inputs/rating/single-selection/package.json index cac304b96d..5d6a40ac06 100644 --- a/samples/inputs/rating/single-selection/package.json +++ b/samples/inputs/rating/single-selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/rating/styling/package.json b/samples/inputs/rating/styling/package.json index 5ddc3b2f0c..9e8fbabd7b 100644 --- a/samples/inputs/rating/styling/package.json +++ b/samples/inputs/rating/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/ripple/button/package.json b/samples/inputs/ripple/button/package.json index 3a4ebd36dc..57fdfcb904 100644 --- a/samples/inputs/ripple/button/package.json +++ b/samples/inputs/ripple/button/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/ripple/color/package.json b/samples/inputs/ripple/color/package.json index db75e1b472..2efe8b192f 100644 --- a/samples/inputs/ripple/color/package.json +++ b/samples/inputs/ripple/color/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/select/group/package.json b/samples/inputs/select/group/package.json index d56146a911..e18e1f65ac 100644 --- a/samples/inputs/select/group/package.json +++ b/samples/inputs/select/group/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/select/header/package.json b/samples/inputs/select/header/package.json index a8fe3758de..87ca3c4339 100644 --- a/samples/inputs/select/header/package.json +++ b/samples/inputs/select/header/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/select/item/package.json b/samples/inputs/select/item/package.json index 0da14a7747..67a7ffdc26 100644 --- a/samples/inputs/select/item/package.json +++ b/samples/inputs/select/item/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/select/overview/package.json b/samples/inputs/select/overview/package.json index f9a7372a83..3c4057b464 100644 --- a/samples/inputs/select/overview/package.json +++ b/samples/inputs/select/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/select/styling/package.json b/samples/inputs/select/styling/package.json index 1b11e6785e..4863decfd4 100644 --- a/samples/inputs/select/styling/package.json +++ b/samples/inputs/select/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/constraints/package.json b/samples/inputs/slider/constraints/package.json index 3a3c6065ad..2db7ab4f5d 100644 --- a/samples/inputs/slider/constraints/package.json +++ b/samples/inputs/slider/constraints/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/disabled/package.json b/samples/inputs/slider/disabled/package.json index 1d8077650a..52b472ad9d 100644 --- a/samples/inputs/slider/disabled/package.json +++ b/samples/inputs/slider/disabled/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/discrete/package.json b/samples/inputs/slider/discrete/package.json index ff5733185c..944c19034c 100644 --- a/samples/inputs/slider/discrete/package.json +++ b/samples/inputs/slider/discrete/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/labels/package.json b/samples/inputs/slider/labels/package.json index d2f1e79f21..075f2bdd34 100644 --- a/samples/inputs/slider/labels/package.json +++ b/samples/inputs/slider/labels/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/overview/package.json b/samples/inputs/slider/overview/package.json index 7a1b723c11..dfed016de1 100644 --- a/samples/inputs/slider/overview/package.json +++ b/samples/inputs/slider/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/styling/package.json b/samples/inputs/slider/styling/package.json index c37912f8e8..bc33f231bc 100644 --- a/samples/inputs/slider/styling/package.json +++ b/samples/inputs/slider/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/tick-labels/package.json b/samples/inputs/slider/tick-labels/package.json index 78f739b051..e5b573c182 100644 --- a/samples/inputs/slider/tick-labels/package.json +++ b/samples/inputs/slider/tick-labels/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/ticks/package.json b/samples/inputs/slider/ticks/package.json index d5cea5db38..7589bc877d 100644 --- a/samples/inputs/slider/ticks/package.json +++ b/samples/inputs/slider/ticks/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/value-format/package.json b/samples/inputs/slider/value-format/package.json index 93dc8d00a7..1065750a52 100644 --- a/samples/inputs/slider/value-format/package.json +++ b/samples/inputs/slider/value-format/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/slider/value/package.json b/samples/inputs/slider/value/package.json index 123665940e..6f8d0c6dbb 100644 --- a/samples/inputs/slider/value/package.json +++ b/samples/inputs/slider/value/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/switches/checking/package.json b/samples/inputs/switches/checking/package.json index 8f45704b77..a3f684c35f 100644 --- a/samples/inputs/switches/checking/package.json +++ b/samples/inputs/switches/checking/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/switches/disabled/package.json b/samples/inputs/switches/disabled/package.json index b9ddf0f663..3090e02e6f 100644 --- a/samples/inputs/switches/disabled/package.json +++ b/samples/inputs/switches/disabled/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/switches/label/package.json b/samples/inputs/switches/label/package.json index 78574b5512..146f419860 100644 --- a/samples/inputs/switches/label/package.json +++ b/samples/inputs/switches/label/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/switches/overview/package.json b/samples/inputs/switches/overview/package.json index a7b6d21b99..3e8351b445 100644 --- a/samples/inputs/switches/overview/package.json +++ b/samples/inputs/switches/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/textarea/form-integration/package.json b/samples/inputs/textarea/form-integration/package.json index d198ed3777..ca3c7b8936 100644 --- a/samples/inputs/textarea/form-integration/package.json +++ b/samples/inputs/textarea/form-integration/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/textarea/overview/package.json b/samples/inputs/textarea/overview/package.json index 80924183fa..703d96b688 100644 --- a/samples/inputs/textarea/overview/package.json +++ b/samples/inputs/textarea/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/textarea/resize/package.json b/samples/inputs/textarea/resize/package.json index c8f06fd0ef..47110edf39 100644 --- a/samples/inputs/textarea/resize/package.json +++ b/samples/inputs/textarea/resize/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/textarea/slots/package.json b/samples/inputs/textarea/slots/package.json index 4bc51a209f..962925be43 100644 --- a/samples/inputs/textarea/slots/package.json +++ b/samples/inputs/textarea/slots/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/inputs/textarea/styling/package.json b/samples/inputs/textarea/styling/package.json index cd20a957e8..96fc6e605f 100644 --- a/samples/inputs/textarea/styling/package.json +++ b/samples/inputs/textarea/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/accordion/customization/package.json b/samples/layouts/accordion/customization/package.json index 9438518b78..850f127705 100644 --- a/samples/layouts/accordion/customization/package.json +++ b/samples/layouts/accordion/customization/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/accordion/nested-scenario/package.json b/samples/layouts/accordion/nested-scenario/package.json index 9438518b78..850f127705 100644 --- a/samples/layouts/accordion/nested-scenario/package.json +++ b/samples/layouts/accordion/nested-scenario/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/accordion/overview/package.json b/samples/layouts/accordion/overview/package.json index 9438518b78..850f127705 100644 --- a/samples/layouts/accordion/overview/package.json +++ b/samples/layouts/accordion/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/avatar/icon/package.json b/samples/layouts/avatar/icon/package.json index ee715a82b1..11b6578884 100644 --- a/samples/layouts/avatar/icon/package.json +++ b/samples/layouts/avatar/icon/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/avatar/image/package.json b/samples/layouts/avatar/image/package.json index 6405b64bd3..c740e90df7 100644 --- a/samples/layouts/avatar/image/package.json +++ b/samples/layouts/avatar/image/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/avatar/initials/package.json b/samples/layouts/avatar/initials/package.json index 0f146effc8..bafa2a265e 100644 --- a/samples/layouts/avatar/initials/package.json +++ b/samples/layouts/avatar/initials/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/avatar/shape/package.json b/samples/layouts/avatar/shape/package.json index 7f69e9b5bf..0acda05887 100644 --- a/samples/layouts/avatar/shape/package.json +++ b/samples/layouts/avatar/shape/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/avatar/size/package.json b/samples/layouts/avatar/size/package.json index cdb11aaaea..514dd0177d 100644 --- a/samples/layouts/avatar/size/package.json +++ b/samples/layouts/avatar/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/card/horizontal/package.json b/samples/layouts/card/horizontal/package.json index 041988facf..68aed20ab2 100644 --- a/samples/layouts/card/horizontal/package.json +++ b/samples/layouts/card/horizontal/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/card/integration/package.json b/samples/layouts/card/integration/package.json index fc1bbef83a..c503211dc2 100644 --- a/samples/layouts/card/integration/package.json +++ b/samples/layouts/card/integration/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/card/overview/package.json b/samples/layouts/card/overview/package.json index 765144318a..619114823f 100644 --- a/samples/layouts/card/overview/package.json +++ b/samples/layouts/card/overview/package.json @@ -24,7 +24,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/card/semi-horizontal/package.json b/samples/layouts/card/semi-horizontal/package.json index a1749e3905..0861489f9e 100644 --- a/samples/layouts/card/semi-horizontal/package.json +++ b/samples/layouts/card/semi-horizontal/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/card/styling/package.json b/samples/layouts/card/styling/package.json index 56d31f656c..687ec7e1bf 100644 --- a/samples/layouts/card/styling/package.json +++ b/samples/layouts/card/styling/package.json @@ -24,7 +24,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/divider/dashed/package.json b/samples/layouts/divider/dashed/package.json index f9a7372a83..3c4057b464 100644 --- a/samples/layouts/divider/dashed/package.json +++ b/samples/layouts/divider/dashed/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/divider/middle/package.json b/samples/layouts/divider/middle/package.json index 1b11e6785e..4863decfd4 100644 --- a/samples/layouts/divider/middle/package.json +++ b/samples/layouts/divider/middle/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/divider/overview/package.json b/samples/layouts/divider/overview/package.json index f9a7372a83..3c4057b464 100644 --- a/samples/layouts/divider/overview/package.json +++ b/samples/layouts/divider/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/divider/select/package.json b/samples/layouts/divider/select/package.json index f9a7372a83..3c4057b464 100644 --- a/samples/layouts/divider/select/package.json +++ b/samples/layouts/divider/select/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/divider/vertical/package.json b/samples/layouts/divider/vertical/package.json index 1b11e6785e..4863decfd4 100644 --- a/samples/layouts/divider/vertical/package.json +++ b/samples/layouts/divider/vertical/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/dock-manager/styling/package.json b/samples/layouts/dock-manager/styling/package.json index 30c922cf40..15822e9c4e 100644 --- a/samples/layouts/dock-manager/styling/package.json +++ b/samples/layouts/dock-manager/styling/package.json @@ -25,7 +25,7 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.14.3", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "igniteui-webcomponents-core": "5.0.2", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/expansion-panel/component-customization/package.json b/samples/layouts/expansion-panel/component-customization/package.json index 28977e9428..f9c88556f5 100644 --- a/samples/layouts/expansion-panel/component-customization/package.json +++ b/samples/layouts/expansion-panel/component-customization/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/expansion-panel/properties-and-events/package.json b/samples/layouts/expansion-panel/properties-and-events/package.json index c587aab107..15205e7ddf 100644 --- a/samples/layouts/expansion-panel/properties-and-events/package.json +++ b/samples/layouts/expansion-panel/properties-and-events/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/expansion-panel/styling/package.json b/samples/layouts/expansion-panel/styling/package.json index 8b91d59a03..1f9ba0794c 100644 --- a/samples/layouts/expansion-panel/styling/package.json +++ b/samples/layouts/expansion-panel/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/expansion-panel/usage/package.json b/samples/layouts/expansion-panel/usage/package.json index 9438518b78..850f127705 100644 --- a/samples/layouts/expansion-panel/usage/package.json +++ b/samples/layouts/expansion-panel/usage/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/icon/sizing/package.json b/samples/layouts/icon/sizing/package.json index 9d36ea65b5..4dd1c8aff5 100644 --- a/samples/layouts/icon/sizing/package.json +++ b/samples/layouts/icon/sizing/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/icon/styling/package.json b/samples/layouts/icon/styling/package.json index 9d36ea65b5..4dd1c8aff5 100644 --- a/samples/layouts/icon/styling/package.json +++ b/samples/layouts/icon/styling/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/stepper/animations/package.json b/samples/layouts/stepper/animations/package.json index a67a1a3a8a..983cc28e2c 100644 --- a/samples/layouts/stepper/animations/package.json +++ b/samples/layouts/stepper/animations/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "install": "^0.13.0", "lit": "^3.2.0", "lit-html": "^3.2.0", diff --git a/samples/layouts/stepper/linear/package.json b/samples/layouts/stepper/linear/package.json index a648838a88..82928ce1c4 100644 --- a/samples/layouts/stepper/linear/package.json +++ b/samples/layouts/stepper/linear/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "install": "^0.13.0", "lit": "^3.2.0", "lit-html": "^3.2.0", diff --git a/samples/layouts/stepper/orientation/package.json b/samples/layouts/stepper/orientation/package.json index a0afb7456d..fd7265cbf3 100644 --- a/samples/layouts/stepper/orientation/package.json +++ b/samples/layouts/stepper/orientation/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "install": "^0.13.0", "lit": "^3.2.0", "lit-html": "^3.2.0", diff --git a/samples/layouts/stepper/overview/package.json b/samples/layouts/stepper/overview/package.json index a6e39ec9d1..5643ce7030 100644 --- a/samples/layouts/stepper/overview/package.json +++ b/samples/layouts/stepper/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "install": "^0.13.0", "lit": "^3.2.0", "lit-html": "^3.2.0", diff --git a/samples/layouts/stepper/steptypes/package.json b/samples/layouts/stepper/steptypes/package.json index 527b02daf2..d7cee65af1 100644 --- a/samples/layouts/stepper/steptypes/package.json +++ b/samples/layouts/stepper/steptypes/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "install": "^0.13.0", "lit": "^3.2.0", "lit-html": "^3.2.0", diff --git a/samples/layouts/tabs/alignment/package.json b/samples/layouts/tabs/alignment/package.json index 734032b59b..62a7ceee42 100644 --- a/samples/layouts/tabs/alignment/package.json +++ b/samples/layouts/tabs/alignment/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/tabs/overview/package.json b/samples/layouts/tabs/overview/package.json index 120f4c8348..82f7f81d8d 100644 --- a/samples/layouts/tabs/overview/package.json +++ b/samples/layouts/tabs/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/tabs/prefix-suffix/package.json b/samples/layouts/tabs/prefix-suffix/package.json index bd05d89276..d0c40bef98 100644 --- a/samples/layouts/tabs/prefix-suffix/package.json +++ b/samples/layouts/tabs/prefix-suffix/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/layouts/tabs/scrolling/package.json b/samples/layouts/tabs/scrolling/package.json index cd3663153d..8a6baab690 100644 --- a/samples/layouts/tabs/scrolling/package.json +++ b/samples/layouts/tabs/scrolling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/menus/nav-bar/overview/package.json b/samples/menus/nav-bar/overview/package.json index 74ab8c8a49..fb090d02d3 100644 --- a/samples/menus/nav-bar/overview/package.json +++ b/samples/menus/nav-bar/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/menus/nav-bar/styling/package.json b/samples/menus/nav-bar/styling/package.json index 6817eccda6..0684cc1c7f 100644 --- a/samples/menus/nav-bar/styling/package.json +++ b/samples/menus/nav-bar/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/menus/nav-drawer/add-drawer-items/package.json b/samples/menus/nav-drawer/add-drawer-items/package.json index 09ddeba761..778543b262 100644 --- a/samples/menus/nav-drawer/add-drawer-items/package.json +++ b/samples/menus/nav-drawer/add-drawer-items/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/menus/nav-drawer/add-mini/package.json b/samples/menus/nav-drawer/add-mini/package.json index 8f1a8ff6c5..2065080dc0 100644 --- a/samples/menus/nav-drawer/add-mini/package.json +++ b/samples/menus/nav-drawer/add-mini/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/menus/nav-drawer/add-positions-navbar/package.json b/samples/menus/nav-drawer/add-positions-navbar/package.json index 8ccc914a2a..943102e74a 100644 --- a/samples/menus/nav-drawer/add-positions-navbar/package.json +++ b/samples/menus/nav-drawer/add-positions-navbar/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/menus/nav-drawer/styling/package.json b/samples/menus/nav-drawer/styling/package.json index 24f2c3dfa6..28868527fa 100644 --- a/samples/menus/nav-drawer/styling/package.json +++ b/samples/menus/nav-drawer/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/banner/banner-advanced-sample/package.json b/samples/notifications/banner/banner-advanced-sample/package.json index 6643f343f2..e607bdd62d 100644 --- a/samples/notifications/banner/banner-advanced-sample/package.json +++ b/samples/notifications/banner/banner-advanced-sample/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/banner/banner-sample-1/package.json b/samples/notifications/banner/banner-sample-1/package.json index 95d2d7a2db..61e308e04b 100644 --- a/samples/notifications/banner/banner-sample-1/package.json +++ b/samples/notifications/banner/banner-sample-1/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/banner/banner-sample-2/package.json b/samples/notifications/banner/banner-sample-2/package.json index de0e77980c..5045864481 100644 --- a/samples/notifications/banner/banner-sample-2/package.json +++ b/samples/notifications/banner/banner-sample-2/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/banner/banner-styling/package.json b/samples/notifications/banner/banner-styling/package.json index ef97a4852a..40b280d4e6 100644 --- a/samples/notifications/banner/banner-styling/package.json +++ b/samples/notifications/banner/banner-styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/dialog/closing-variations/package.json b/samples/notifications/dialog/closing-variations/package.json index 5f16be04fd..217565e40c 100644 --- a/samples/notifications/dialog/closing-variations/package.json +++ b/samples/notifications/dialog/closing-variations/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/dialog/form/package.json b/samples/notifications/dialog/form/package.json index 51d9e2ccb3..81e17e733b 100644 --- a/samples/notifications/dialog/form/package.json +++ b/samples/notifications/dialog/form/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/dialog/overview/package.json b/samples/notifications/dialog/overview/package.json index 04ea6be75b..ed8ca38387 100644 --- a/samples/notifications/dialog/overview/package.json +++ b/samples/notifications/dialog/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/dialog/styling/package.json b/samples/notifications/dialog/styling/package.json index 183eaa1f08..5e41729519 100644 --- a/samples/notifications/dialog/styling/package.json +++ b/samples/notifications/dialog/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/snackbar/action-text/package.json b/samples/notifications/snackbar/action-text/package.json index bd1265fb62..2682939b5e 100644 --- a/samples/notifications/snackbar/action-text/package.json +++ b/samples/notifications/snackbar/action-text/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/snackbar/display-time/package.json b/samples/notifications/snackbar/display-time/package.json index bd1265fb62..2682939b5e 100644 --- a/samples/notifications/snackbar/display-time/package.json +++ b/samples/notifications/snackbar/display-time/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/snackbar/overview/package.json b/samples/notifications/snackbar/overview/package.json index bd1265fb62..2682939b5e 100644 --- a/samples/notifications/snackbar/overview/package.json +++ b/samples/notifications/snackbar/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/snackbar/styling/package.json b/samples/notifications/snackbar/styling/package.json index bd1265fb62..2682939b5e 100644 --- a/samples/notifications/snackbar/styling/package.json +++ b/samples/notifications/snackbar/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/toast/overview/package.json b/samples/notifications/toast/overview/package.json index 5fd1817d03..89b174fc25 100644 --- a/samples/notifications/toast/overview/package.json +++ b/samples/notifications/toast/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/toast/properties/package.json b/samples/notifications/toast/properties/package.json index 5fd1817d03..89b174fc25 100644 --- a/samples/notifications/toast/properties/package.json +++ b/samples/notifications/toast/properties/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/notifications/toast/styling/package.json b/samples/notifications/toast/styling/package.json index 5fd1817d03..89b174fc25 100644 --- a/samples/notifications/toast/styling/package.json +++ b/samples/notifications/toast/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/disabled-dates/package.json b/samples/scheduling/calendar/disabled-dates/package.json index fd152c8fbd..91c48d1c38 100644 --- a/samples/scheduling/calendar/disabled-dates/package.json +++ b/samples/scheduling/calendar/disabled-dates/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/formatting/package.json b/samples/scheduling/calendar/formatting/package.json index 7ba652bae0..683a1dcdb7 100644 --- a/samples/scheduling/calendar/formatting/package.json +++ b/samples/scheduling/calendar/formatting/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/header/package.json b/samples/scheduling/calendar/header/package.json index 3c9f697e53..45a3bc85b9 100644 --- a/samples/scheduling/calendar/header/package.json +++ b/samples/scheduling/calendar/header/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/multiple-months/package.json b/samples/scheduling/calendar/multiple-months/package.json index 3b84a1eced..c96228f304 100644 --- a/samples/scheduling/calendar/multiple-months/package.json +++ b/samples/scheduling/calendar/multiple-months/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/multiple-selection/package.json b/samples/scheduling/calendar/multiple-selection/package.json index 582856d6dd..80bb2c23aa 100644 --- a/samples/scheduling/calendar/multiple-selection/package.json +++ b/samples/scheduling/calendar/multiple-selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/overview/package.json b/samples/scheduling/calendar/overview/package.json index 16e8b0ae65..fc5284f658 100644 --- a/samples/scheduling/calendar/overview/package.json +++ b/samples/scheduling/calendar/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/range-selection/package.json b/samples/scheduling/calendar/range-selection/package.json index bed47bd8c5..23af02f7c0 100644 --- a/samples/scheduling/calendar/range-selection/package.json +++ b/samples/scheduling/calendar/range-selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/size/package.json b/samples/scheduling/calendar/size/package.json index bd1367b236..ba6b07b548 100644 --- a/samples/scheduling/calendar/size/package.json +++ b/samples/scheduling/calendar/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/special-dates/package.json b/samples/scheduling/calendar/special-dates/package.json index 5c9db7fb7f..2876be63bb 100644 --- a/samples/scheduling/calendar/special-dates/package.json +++ b/samples/scheduling/calendar/special-dates/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/styling/package.json b/samples/scheduling/calendar/styling/package.json index 171b614d9b..0afb90448e 100644 --- a/samples/scheduling/calendar/styling/package.json +++ b/samples/scheduling/calendar/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/calendar/week-numbers/package.json b/samples/scheduling/calendar/week-numbers/package.json index eaed7c1f7d..a03bf59fb9 100644 --- a/samples/scheduling/calendar/week-numbers/package.json +++ b/samples/scheduling/calendar/week-numbers/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/date-picker/dialog-mode/package.json b/samples/scheduling/date-picker/dialog-mode/package.json index 406c81213e..4884299af2 100644 --- a/samples/scheduling/date-picker/dialog-mode/package.json +++ b/samples/scheduling/date-picker/dialog-mode/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/date-picker/form/package.json b/samples/scheduling/date-picker/form/package.json index 250e0b771d..c1150977c8 100644 --- a/samples/scheduling/date-picker/form/package.json +++ b/samples/scheduling/date-picker/form/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/date-picker/format/package.json b/samples/scheduling/date-picker/format/package.json index ce7fa20947..5f3b4c0f9b 100644 --- a/samples/scheduling/date-picker/format/package.json +++ b/samples/scheduling/date-picker/format/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/date-picker/overview/package.json b/samples/scheduling/date-picker/overview/package.json index e86c42ef6f..db715ce13c 100644 --- a/samples/scheduling/date-picker/overview/package.json +++ b/samples/scheduling/date-picker/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/scheduling/date-picker/styling/package.json b/samples/scheduling/date-picker/styling/package.json index e9f8d21eb6..65851e9d6c 100644 --- a/samples/scheduling/date-picker/styling/package.json +++ b/samples/scheduling/date-picker/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.0.0", + "igniteui-webcomponents": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" From 360a551197104aff50b5beeb6f59107e6300df0c Mon Sep 17 00:00:00 2001 From: Svetoslav Krastev Date: Tue, 5 Nov 2024 09:14:38 +0200 Subject: [PATCH 14/63] Unify range slider styling sample between platforms. (#691) --- samples/inputs/slider/styling/index.html | 10 ++++++-- .../slider/styling/src/SliderStyling.css | 24 ++++++++++++++++++- samples/inputs/slider/styling/src/index.ts | 3 ++- 3 files changed, 33 insertions(+), 4 deletions(-) diff --git a/samples/inputs/slider/styling/index.html b/samples/inputs/slider/styling/index.html index c423875d1a..c81b1696ba 100644 --- a/samples/inputs/slider/styling/index.html +++ b/samples/inputs/slider/styling/index.html @@ -14,8 +14,14 @@
- - +
+ Slider + +
+
+ Range Slider + +
diff --git a/samples/inputs/slider/styling/src/SliderStyling.css b/samples/inputs/slider/styling/src/SliderStyling.css index 10bfe54c50..8ed9188737 100644 --- a/samples/inputs/slider/styling/src/SliderStyling.css +++ b/samples/inputs/slider/styling/src/SliderStyling.css @@ -2,8 +2,12 @@ igc-slider { padding: 30px 30px 0px 30px; } +igc-range-slider { + padding: 30px 30px 0px 30px; +} + igc-slider::part(thumb) { - background: #28a745; +background: #28a745; } igc-slider::part(thumb):focus { @@ -14,4 +18,22 @@ igc-slider::part(thumb):focus { igc-slider::part(fill) { display: block; background: #28a745; +} + +igc-range-slider::part(thumb) { + background: orange; +} + +igc-range-slider::part(thumb):focus { + background: navy; + box-shadow: 0 0 0 2px orange; +} + +igc-range-slider::part(track) { + display: block; + background: navy; +} + +igc-range-slider::part(thumb-label-inner) { + background: navy; } \ No newline at end of file diff --git a/samples/inputs/slider/styling/src/index.ts b/samples/inputs/slider/styling/src/index.ts index a54f83b6ff..0381a907b6 100644 --- a/samples/inputs/slider/styling/src/index.ts +++ b/samples/inputs/slider/styling/src/index.ts @@ -1,8 +1,9 @@ -import { defineComponents, IgcSliderComponent } from 'igniteui-webcomponents'; +import { defineComponents, IgcSliderComponent, IgcRangeSliderComponent } from 'igniteui-webcomponents'; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import './SliderStyling.css'; defineComponents(IgcSliderComponent); +defineComponents(IgcRangeSliderComponent); export class SliderTicks { constructor() { From 3f80d55a4826e5e137e9de1ab8adf0ff5abe9f77 Mon Sep 17 00:00:00 2001 From: Tihomir Tonev Date: Tue, 5 Nov 2024 10:19:42 +0200 Subject: [PATCH 15/63] fix(grid): fixed grid overlay scroll in pop up containers (#861) --- browser/src/router.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/browser/src/router.ts b/browser/src/router.ts index 37331fa52d..c9e8afbec4 100644 --- a/browser/src/router.ts +++ b/browser/src/router.ts @@ -167,7 +167,8 @@ export class Router { } private preventDocumentScroll(event:any) { - if (event.target.outerHTML.toLowerCase().includes('igx')) { + const eventPath = event.composedPath(); + if (event.target.outerHTML.toLowerCase().includes('igx') && eventPath.filter(x => x.classList?.value === 'igx-grid__tbody').length > 0) { event.preventDefault(); } } From 31501039c19d64dbb996be1c128456dd21cedf86 Mon Sep 17 00:00:00 2001 From: RivaIvanova Date: Tue, 5 Nov 2024 12:06:58 +0200 Subject: [PATCH 16/63] fix(*): add constructor; add minor style changes --- samples/layouts/carousel/animations/src/index.css | 5 ++--- samples/layouts/carousel/components/src/index.css | 2 -- samples/layouts/carousel/overview/src/index.css | 2 -- samples/layouts/carousel/overview/src/index.ts | 4 +++- samples/layouts/carousel/thumbnail/src/index.css | 3 ++- samples/layouts/carousel/thumbnail/src/index.ts | 4 +++- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/samples/layouts/carousel/animations/src/index.css b/samples/layouts/carousel/animations/src/index.css index 3c99e7b7dc..2d82443ecf 100644 --- a/samples/layouts/carousel/animations/src/index.css +++ b/samples/layouts/carousel/animations/src/index.css @@ -15,6 +15,7 @@ width: 500px; display: flex; justify-content: space-between; + margin-bottom: 10px; } .action { @@ -30,9 +31,7 @@ } igc-carousel { - border-radius: 10px; - box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); - max-height: 550px; + border: 0.5px solid #dde0e4; } igc-select { diff --git a/samples/layouts/carousel/components/src/index.css b/samples/layouts/carousel/components/src/index.css index ec54b5bc06..b588a05ace 100644 --- a/samples/layouts/carousel/components/src/index.css +++ b/samples/layouts/carousel/components/src/index.css @@ -6,8 +6,6 @@ } igc-carousel { - border-radius: 10px; - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); margin-inline: auto; max-width: 75%; height: 500px; diff --git a/samples/layouts/carousel/overview/src/index.css b/samples/layouts/carousel/overview/src/index.css index 7c8518a5ca..af4562e186 100644 --- a/samples/layouts/carousel/overview/src/index.css +++ b/samples/layouts/carousel/overview/src/index.css @@ -17,8 +17,6 @@ img { } igc-carousel { - border-radius: 10px; - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); margin-inline: auto; max-width: 75%; height: 450px; diff --git a/samples/layouts/carousel/overview/src/index.ts b/samples/layouts/carousel/overview/src/index.ts index 98ff90bdc8..cd00120f87 100644 --- a/samples/layouts/carousel/overview/src/index.ts +++ b/samples/layouts/carousel/overview/src/index.ts @@ -4,6 +4,8 @@ import "./index.css"; defineComponents(IgcCarouselComponent); -export class CarouselOverview {} +export class CarouselOverview { + constructor() {} +} new CarouselOverview(); diff --git a/samples/layouts/carousel/thumbnail/src/index.css b/samples/layouts/carousel/thumbnail/src/index.css index dcc05e0170..8d5a7b6cbc 100644 --- a/samples/layouts/carousel/thumbnail/src/index.css +++ b/samples/layouts/carousel/thumbnail/src/index.css @@ -2,7 +2,8 @@ /* https://static.infragistics.com/xplatform/css/samples */ igc-carousel { - width: 60% + margin-inline: auto; + max-width: 75%; } igc-carousel::part(indicators) { diff --git a/samples/layouts/carousel/thumbnail/src/index.ts b/samples/layouts/carousel/thumbnail/src/index.ts index 1de000b5d0..7eec185528 100644 --- a/samples/layouts/carousel/thumbnail/src/index.ts +++ b/samples/layouts/carousel/thumbnail/src/index.ts @@ -4,6 +4,8 @@ import "./index.css"; defineComponents(IgcCarouselComponent); -export class CarouselThumbnail {} +export class CarouselThumbnail { + constructor() {} +} new CarouselThumbnail(); From f9555de34f3193e96ebc16a666ce5ddaffa0b9bd Mon Sep 17 00:00:00 2001 From: Deyan Kamburov Date: Tue, 12 Nov 2024 12:25:28 +0200 Subject: [PATCH 17/63] chore(*): update ig packages to 5.0.3-beta.0 (#865) --- browser/tasks/gulp-samples.js | 22 +-- package-lock.json | 126 +++++++++--------- package.json | 22 +-- .../annotations-all/package.json | 8 +- .../annotations-callouts/package.json | 8 +- .../annotations-crosshairs/package.json | 8 +- .../annotations-custom/package.json | 8 +- .../annotations-final-value/package.json | 8 +- .../annotations-highlighting/package.json | 8 +- .../category-chart/annotations/package.json | 4 +- .../area-chart-multiple-sources/package.json | 4 +- .../area-chart-single-source/package.json | 4 +- .../area-chart-styling/package.json | 4 +- .../category-chart/axis-gap/package.json | 8 +- .../axis-gridlines/package.json | 8 +- .../category-chart/axis-inverted/package.json | 8 +- .../category-chart/axis-labels/package.json | 8 +- .../axis-locations/package.json | 8 +- .../category-chart/axis-options/package.json | 4 +- .../category-chart/axis-overlap/package.json | 8 +- .../category-chart/axis-range/package.json | 8 +- .../axis-tickmarks/package.json | 8 +- .../category-chart/axis-titles/package.json | 4 +- .../chart-highlight-filter/package.json | 8 +- .../package.json | 4 +- .../column-chart-single-source/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../package.json | 4 +- .../column-chart-with-tooltips/package.json | 8 +- .../custom-selection/package.json | 4 +- .../data-aggregations/package.json | 8 +- .../category-chart/data-filter/package.json | 8 +- .../package.json | 4 +- .../category-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-positioning/package.json | 8 +- .../category-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 8 +- .../high-frequency/package.json | 4 +- .../category-chart/high-volume/package.json | 4 +- .../highlighting-behavior/package.json | 8 +- .../highlighting-mode/package.json | 8 +- .../category-chart/highlighting/package.json | 4 +- .../legend-highlighting/package.json | 4 +- .../line-chart-multiple-sources/package.json | 4 +- .../line-chart-single-source/package.json | 4 +- .../line-chart-styling/package.json | 4 +- .../line-chart-with-animations/package.json | 4 +- .../line-chart-with-annotations/package.json | 4 +- .../marker-options/package.json | 8 +- .../marker-templates/package.json | 4 +- .../category-chart/overview/package.json | 4 +- .../point-chart-multiple-sources/package.json | 4 +- .../point-chart-single-source/package.json | 4 +- .../point-chart-styling/package.json | 4 +- .../selection-modes/package.json | 4 +- .../selection-multiple-modes/package.json | 8 +- .../spline-area-multiple-sources/package.json | 4 +- .../spline-area-single-source/package.json | 4 +- .../spline-area-styling/package.json | 4 +- .../spline-multiple-sources/package.json | 4 +- .../spline-single-source/package.json | 4 +- .../spline-styling/package.json | 4 +- .../category-chart/stack-columns/package.json | 4 +- .../step-area-multiple-sources/package.json | 4 +- .../step-area-single-source/package.json | 4 +- .../step-area-styling/package.json | 4 +- .../step-line-multiple-sources/package.json | 4 +- .../step-line-single-source/package.json | 4 +- .../step-line-styling/package.json | 4 +- .../tooltip-template/package.json | 4 +- .../category-chart/tooltip-types/package.json | 4 +- .../category-chart/trendline/package.json | 4 +- .../category-chart/value-lines/package.json | 8 +- .../annotations-custom/package.json | 4 +- .../package.json | 4 +- .../data-chart/axis-annotations/package.json | 4 +- .../data-chart/axis-crossing/package.json | 4 +- .../axis-label-rotation/package.json | 8 +- .../data-chart/axis-locations/package.json | 4 +- .../data-chart/axis-min-max-gap/package.json | 4 +- .../data-chart/axis-settings/package.json | 4 +- .../data-chart/axis-sharing/package.json | 4 +- .../charts/data-chart/axis-types/package.json | 4 +- .../bar-chart-multiple-sources/package.json | 4 +- .../bar-chart-overlapping/package.json | 4 +- .../bar-chart-single-source/package.json | 4 +- .../data-chart/bar-chart-styling/package.json | 4 +- .../callout-layer-styling/package.json | 4 +- .../package.json | 8 +- .../package.json | 8 +- .../chart-highlight-filter/package.json | 8 +- .../data-chart/chart-navigation/package.json | 4 +- .../data-chart/chart-overview/package.json | 4 +- .../data-chart/chart-performance/package.json | 4 +- .../chart-synchronization/package.json | 4 +- .../data-chart/chart-titles/package.json | 4 +- .../data-chart/composite-chart/package.json | 4 +- .../crosshair-layer-styling/package.json | 4 +- .../custom-drawing-annotations/package.json | 8 +- .../custom-editing-data/package.json | 4 +- .../data-chart/dash-array-axes/package.json | 4 +- .../data-chart/dash-array-series/package.json | 4 +- .../dash-array-tickmarks/package.json | 4 +- .../dash-array-trendline/package.json | 4 +- .../package.json | 4 +- .../data-legend-grouping/package.json | 4 +- .../data-legend-styling/package.json | 4 +- .../data-chart/data-legend/package.json | 4 +- .../package.json | 8 +- .../data-tooltip-grouping/package.json | 8 +- .../data-tooltip-styling/package.json | 8 +- .../data-chart/data-tooltip/package.json | 4 +- .../final-value-layer-styling/package.json | 4 +- .../financial-price-series/package.json | 4 +- .../data-chart/format-specifiers/package.json | 4 +- .../charts/data-chart/legends/package.json | 4 +- .../polar-area-chart-styling/package.json | 4 +- .../data-chart/polar-area-chart/package.json | 4 +- .../data-chart/polar-chart-types/package.json | 4 +- .../data-chart/polar-line-chart/package.json | 4 +- .../polar-scatter-chart/package.json | 4 +- .../polar-spline-area-chart/package.json | 4 +- .../polar-spline-chart/package.json | 4 +- .../radial-area-chart-styling/package.json | 4 +- .../data-chart/radial-area-chart/package.json | 4 +- .../radial-chart-types/package.json | 4 +- .../package.json | 4 +- .../radial-column-chart/package.json | 4 +- .../data-chart/radial-label-mode/package.json | 8 +- .../data-chart/radial-line-chart/package.json | 4 +- .../data-chart/radial-pie-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../data-chart/range-area-chart/package.json | 4 +- .../range-column-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../scatter-bubble-chart-styling/package.json | 4 +- .../scatter-line-chart/package.json | 4 +- .../scatter-point-chart/package.json | 4 +- .../scatter-spline-chart/package.json | 4 +- .../data-chart/series-animations/package.json | 4 +- .../series-annotations/package.json | 4 +- .../data-chart/series-error-bars/package.json | 4 +- .../series-highlighting/package.json | 4 +- .../series-marker-template/package.json | 4 +- .../data-chart/series-markers/package.json | 4 +- .../data-chart/series-tooltips/package.json | 4 +- .../data-chart/series-trendlines/package.json | 4 +- .../series-value-overlay/package.json | 4 +- .../stacked-100-area-chart/package.json | 4 +- .../stacked-100-bar-chart/package.json | 4 +- .../stacked-100-column-chart/package.json | 4 +- .../stacked-100-line-chart/package.json | 4 +- .../package.json | 4 +- .../stacked-100-spline-chart/package.json | 4 +- .../stacked-area-chart/package.json | 4 +- .../data-chart/stacked-bar-chart/package.json | 4 +- .../stacked-chart-types/package.json | 4 +- .../stacked-column-chart/package.json | 4 +- .../stacked-line-chart/package.json | 4 +- .../stacked-spline-area-chart/package.json | 4 +- .../stacked-spline-chart/package.json | 4 +- .../data-chart/tooltip-template/package.json | 4 +- .../data-chart/transition-event/package.json | 8 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../type-financial-ohlc-series/package.json | 4 +- .../type-financial-overlays/package.json | 4 +- .../type-financial-series/package.json | 4 +- .../type-range-area-series/package.json | 4 +- .../type-range-column-series/package.json | 4 +- .../data-chart/type-range-series/package.json | 4 +- .../type-scatter-area-series/package.json | 4 +- .../type-scatter-bubble-series/package.json | 4 +- .../type-scatter-contour-series/package.json | 4 +- .../type-scatter-hd-series/package.json | 4 +- .../type-scatter-polygon-series/package.json | 4 +- .../type-scatter-polyline-series/package.json | 4 +- .../type-scatter-series/package.json | 4 +- .../data-chart/type-shape-series/package.json | 4 +- .../data-chart/waterfall-chart/package.json | 4 +- .../data-pie-chart/animation/package.json | 8 +- .../highlight-filter/package.json | 4 +- .../data-pie-chart/highlighting/package.json | 8 +- .../charts/data-pie-chart/legend/package.json | 8 +- .../charts/data-pie-chart/others/package.json | 8 +- .../data-pie-chart/overview/package.json | 4 +- .../data-pie-chart/selection/package.json | 8 +- .../doughnut-chart/animation/package.json | 4 +- .../doughnut-chart/explosion/package.json | 4 +- .../charts/doughnut-chart/legend/package.json | 4 +- .../doughnut-chart/overview/package.json | 4 +- .../charts/doughnut-chart/rings/package.json | 4 +- .../doughnut-chart/selection/package.json | 4 +- .../financial-chart/annotations/package.json | 4 +- .../financial-chart/axis-types/package.json | 4 +- .../package.json | 4 +- .../data-legend-styling-props/package.json | 4 +- .../financial-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-styling-props/package.json | 4 +- .../financial-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 4 +- .../high-frequency/package.json | 4 +- .../financial-chart/high-volume/package.json | 4 +- .../indicator-customization/package.json | 4 +- .../indicator-types/package.json | 4 +- .../multiple-data/package.json | 4 +- .../financial-chart/overview/package.json | 4 +- .../charts/financial-chart/panes/package.json | 4 +- .../financial-chart/performance/package.json | 4 +- .../financial-chart/scrollbars/package.json | 4 +- .../stock-index-chart/package.json | 4 +- .../financial-chart/styling/package.json | 4 +- .../financial-chart/titles/package.json | 4 +- .../tooltip-types/package.json | 4 +- .../financial-chart/trendlines/package.json | 4 +- .../financial-chart/volume-types/package.json | 4 +- .../charts/pie-chart/animation/package.json | 4 +- .../charts/pie-chart/explosion/package.json | 4 +- samples/charts/pie-chart/legend/package.json | 4 +- samples/charts/pie-chart/others/package.json | 4 +- .../charts/pie-chart/overview/package.json | 4 +- .../charts/pie-chart/selection/package.json | 4 +- samples/charts/pie-chart/styling/package.json | 4 +- .../sparkline/display-area/package.json | 4 +- .../sparkline/display-column/package.json | 4 +- .../sparkline/display-lines/package.json | 8 +- .../sparkline/display-types/package.json | 4 +- .../sparkline/display-winloss/package.json | 4 +- samples/charts/sparkline/grid/package.json | 10 +- samples/charts/sparkline/markers/package.json | 8 +- .../sparkline/normal-range/package.json | 8 +- .../charts/sparkline/trendlines/package.json | 8 +- .../sparkline/unknown-values/package.json | 8 +- .../package.json | 8 +- .../actions-built-in-data-chart/package.json | 8 +- .../charts/toolbar/custom-tool/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- samples/charts/toolbar/theming/package.json | 8 +- samples/charts/tree-map/events/package.json | 4 +- .../highlighting-percent-based/package.json | 4 +- .../charts/tree-map/highlighting/package.json | 8 +- samples/charts/tree-map/layout/package.json | 8 +- samples/charts/tree-map/overview/package.json | 4 +- samples/charts/tree-map/styling/package.json | 4 +- .../charts/zoomslider/overview/package.json | 4 +- .../overview/package.json | 8 +- .../x-date-picker/date-limits/package.json | 6 +- .../x-date-picker/editing/package.json | 6 +- .../editors/x-date-picker/format/package.json | 6 +- .../x-date-picker/overview/package.json | 6 +- .../editors/x-date-picker/range/package.json | 6 +- .../operations-on-workbooks/package.json | 10 +- .../operations-on-worksheets/package.json | 4 +- .../excel/excel-library/overview/package.json | 4 +- .../working-with-cells/package.json | 4 +- .../working-with-charts/package.json | 12 +- .../working-with-sparklines/package.json | 12 +- .../excel/spreadsheet/activation/package.json | 6 +- .../spreadsheet/adapter-chart/package.json | 10 +- .../spreadsheet/adapter-combo/package.json | 10 +- .../excel/spreadsheet/clipboard/package.json | 6 +- .../excel/spreadsheet/commands/package.json | 6 +- .../conditional-formatting/package.json | 6 +- .../spreadsheet/config-options/package.json | 6 +- .../spreadsheet/data-validation/package.json | 6 +- .../spreadsheet/filter-dialog/package.json | 6 +- .../spreadsheet/format-dialog/package.json | 6 +- .../excel/spreadsheet/hyperlinks/package.json | 6 +- .../excel/spreadsheet/overview/package.json | 6 +- .../spreadsheet/sort-dialog/package.json | 6 +- .../bullet-graph/animation/package.json | 4 +- .../bullet-graph/background/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/bullet-graph/labels/package.json | 4 +- .../gauges/bullet-graph/measures/package.json | 4 +- .../gauges/bullet-graph/ranges/package.json | 4 +- .../gauges/bullet-graph/scale/package.json | 4 +- .../bullet-graph/tickmarks/package.json | 4 +- .../bullet-graph/type-filled/package.json | 4 +- .../bullet-graph/type-horizontal/package.json | 4 +- .../bullet-graph/type-reversed/package.json | 4 +- .../bullet-graph/type-segmented/package.json | 4 +- .../bullet-graph/type-vertical/package.json | 4 +- .../linear-gauge/animation/package.json | 4 +- .../gauges/linear-gauge/backing/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/linear-gauge/labels/package.json | 4 +- .../gauges/linear-gauge/needle/package.json | 4 +- .../gauges/linear-gauge/ranges/package.json | 4 +- .../gauges/linear-gauge/scale/package.json | 4 +- .../linear-gauge/tickmarks/package.json | 4 +- .../linear-gauge/type-curved/package.json | 4 +- .../linear-gauge/type-filled/package.json | 4 +- .../linear-gauge/type-horizontal/package.json | 4 +- .../type-multi-range/package.json | 4 +- .../type-multi-scale/package.json | 4 +- .../linear-gauge/type-segmented/package.json | 4 +- .../linear-gauge/type-vertical/package.json | 4 +- .../radial-gauge/animation/package.json | 4 +- .../gauges/radial-gauge/backing/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/radial-gauge/labels/package.json | 4 +- .../gauges/radial-gauge/needle/package.json | 4 +- .../radial-gauge/optical-scaling/package.json | 4 +- .../gauges/radial-gauge/ranges/package.json | 4 +- .../gauges/radial-gauge/scale/package.json | 4 +- .../radial-gauge/tickmarks/package.json | 4 +- .../radial-gauge/type-column/package.json | 4 +- .../radial-gauge/type-curved/package.json | 4 +- .../radial-gauge/type-direction/package.json | 4 +- .../radial-gauge/type-full/package.json | 4 +- .../radial-gauge/type-half/package.json | 4 +- .../radial-gauge/type-quatre/package.json | 4 +- .../radial-gauge/type-ring/package.json | 4 +- .../radial-gauge/type-segmented/package.json | 4 +- .../radial-gauge/type-semi/package.json | 4 +- .../data-grid/accessibility/package.json | 8 +- .../binding-data-service/package.json | 8 +- .../data-grid/binding-live-data/package.json | 10 +- .../data-grid/binding-local-data/package.json | 8 +- .../binding-remote-data/package.json | 10 +- .../data-grid/cell-activation/package.json | 8 +- .../grids/data-grid/cell-editing/package.json | 8 +- .../grids/data-grid/cell-merging/package.json | 10 +- .../data-grid/cell-selection/package.json | 8 +- .../data-grid/column-animation/package.json | 8 +- .../column-chooser-picker/package.json | 8 +- .../column-chooser-toolbar/package.json | 8 +- .../column-filter-expressions/package.json | 8 +- .../column-filter-operands/package.json | 8 +- .../data-grid/column-filtering/package.json | 8 +- .../data-grid/column-moving/package.json | 8 +- .../data-grid/column-options/package.json | 8 +- .../column-pinning-picker/package.json | 8 +- .../column-pinning-toolbar/package.json | 8 +- .../data-grid/column-resizing/package.json | 8 +- .../data-grid/column-scrolling/package.json | 8 +- .../data-grid/column-sorting/package.json | 8 +- .../data-grid/column-summaries/package.json | 8 +- .../grids/data-grid/column-types/package.json | 10 +- .../data-grid/load-save-layout/package.json | 10 +- .../grids/data-grid/localization/package.json | 10 +- samples/grids/data-grid/overview/package.json | 10 +- samples/grids/data-grid/pager/package.json | 8 +- .../grids/data-grid/performance/package.json | 8 +- .../row-group-descriptions/package.json | 8 +- .../grids/data-grid/row-grouping/package.json | 8 +- .../data-grid/row-highlighting/package.json | 8 +- .../grids/data-grid/row-paging/package.json | 8 +- .../grids/data-grid/row-pinning/package.json | 8 +- .../data-grid/row-selection/package.json | 8 +- .../type-comparison-table/package.json | 10 +- .../data-grid/type-heatmap-table/package.json | 8 +- .../type-marketing-table/package.json | 10 +- .../data-grid/type-matrix-table/package.json | 8 +- .../type-periodic-table/package.json | 8 +- .../grids/data-grid/type-table/package.json | 8 +- samples/grids/grid/action-strip/package.json | 8 +- .../advanced-filtering-options/package.json | 8 +- .../advanced-filtering-style/package.json | 8 +- .../grid/binding-composite-data/package.json | 8 +- .../grids/grid/binding-crud-data/package.json | 8 +- .../grid/binding-nested-data-1/package.json | 8 +- .../grids/grid/cascading-combo/package.json | 8 +- .../grid/cell-editing-sample/package.json | 8 +- .../grid/cell-editing-styling/package.json | 8 +- .../grid/cell-selection-mode/package.json | 8 +- .../grid/cell-selection-style/package.json | 8 +- .../grid/change-icons-custom/package.json | 8 +- .../grid/clipboard-operations/package.json | 8 +- .../grid/column-auto-sizing/package.json | 8 +- .../column-collapsible-groups/package.json | 8 +- .../grids/grid/column-data-types/package.json | 8 +- .../grid/column-hiding-options/package.json | 8 +- .../column-hiding-toolbar-style/package.json | 8 +- .../grid/column-hiding-toolbar/package.json | 8 +- .../grid/column-moving-options/package.json | 8 +- .../grid/column-moving-styles/package.json | 8 +- .../grid/column-pinning-options/package.json | 8 +- .../column-pinning-right-side/package.json | 8 +- .../grid/column-pinning-styles/package.json | 8 +- .../grids/grid/column-pinning/package.json | 8 +- .../grid/column-resize-styling/package.json | 8 +- .../grids/grid/column-resizing/package.json | 8 +- .../grid/column-selection-group/package.json | 8 +- .../grid/column-selection-mode/package.json | 8 +- .../grid/column-selection-styles/package.json | 8 +- .../column-sorting-indicators/package.json | 8 +- .../grid/column-sorting-options/package.json | 8 +- .../grid/column-sorting-style/package.json | 8 +- .../conditional-cell-style-1/package.json | 8 +- .../conditional-cell-style-2/package.json | 8 +- .../conditional-row-selectors/package.json | 8 +- .../grid/custom-context-menu/package.json | 8 +- .../grids/grid/custom-filtering/package.json | 8 +- .../data-batch-editing-actions/package.json | 8 +- .../data-exporting-indicator/package.json | 8 +- .../grid/data-paste-options/package.json | 8 +- .../package.json | 8 +- .../grids/grid/data-searching/package.json | 8 +- .../grid/data-summaries-custom/package.json | 8 +- .../grid/data-summary-formatter/package.json | 8 +- .../grid/data-summary-options/package.json | 8 +- .../grid/data-summary-template/package.json | 8 +- .../grid/data-validation-style/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../grid/data-validator-service/package.json | 8 +- .../grids/grid/editing-columns/package.json | 8 +- .../grids/grid/editing-events/package.json | 8 +- .../editing-excel-style-custom/package.json | 8 +- .../grid/editing-excel-style/package.json | 8 +- .../grids/grid/editing-lifecycle/package.json | 8 +- .../grids/grid/excel-exporting/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../excel-style-filtering-style/package.json | 8 +- .../external-advanced-filtering/package.json | 8 +- .../grids/grid/filtering-options/package.json | 8 +- .../grid/filtering-strategy/package.json | 8 +- .../grids/grid/filtering-style/package.json | 8 +- samples/grids/grid/finjs/package.json | 10 +- .../grids/grid/groupby-custom/package.json | 8 +- .../grid/groupby-expressions/package.json | 8 +- .../grids/grid/groupby-paging/package.json | 8 +- .../grids/grid/groupby-styling/package.json | 8 +- .../grid/groupby-summary-options/package.json | 8 +- .../grid/groupby-summary-styling/package.json | 8 +- .../grids/grid/infinite-scroll/package.json | 8 +- .../keyboard-custom-navigation/package.json | 8 +- .../grid/keyboard-mrl-navigation/package.json | 8 +- .../keyboard-navigation-guide/package.json | 8 +- .../grid/layout-display-density/package.json | 8 +- samples/grids/grid/master-detail/package.json | 8 +- .../multi-cell-selection-mode/package.json | 8 +- .../multi-column-headers-export/package.json | 8 +- .../package.json | 8 +- .../multi-column-headers-styling/package.json | 8 +- .../package.json | 8 +- .../multi-row-layout-options/package.json | 8 +- .../grid/multi-row-layout-style/package.json | 8 +- samples/grids/grid/overview/package.json | 8 +- samples/grids/grid/paste/package.json | 8 +- .../grid/remote-paging-data/package.json | 8 +- .../grid/remote-paging-grid/package.json | 8 +- samples/grids/grid/row-adding/package.json | 8 +- samples/grids/grid/row-classes/package.json | 8 +- samples/grids/grid/row-drag-base/package.json | 8 +- .../grid/row-editing-options/package.json | 8 +- .../grids/grid/row-editing-style/package.json | 8 +- .../grids/grid/row-paging-basic/package.json | 8 +- .../grid/row-paging-options/package.json | 8 +- .../grids/grid/row-pinning-drag/package.json | 8 +- .../row-pinning-extra-column/package.json | 8 +- .../grid/row-pinning-options/package.json | 8 +- .../grids/grid/row-pinning-style/package.json | 8 +- samples/grids/grid/row-reorder/package.json | 8 +- .../grid/row-selection-mode/package.json | 8 +- .../row-selection-template-excel/package.json | 8 +- .../package.json | 8 +- samples/grids/grid/row-styles/package.json | 8 +- .../grid/state-persistence-about/package.json | 8 +- .../grid/state-persistence-main/package.json | 8 +- .../grid/styling-custom-CSS/package.json | 8 +- .../grids/grid/toolbar-sample-1/package.json | 8 +- .../grids/grid/toolbar-sample-2/package.json | 8 +- .../grids/grid/toolbar-sample-3/package.json | 8 +- .../grids/grid/toolbar-sample-4/package.json | 8 +- samples/grids/grid/toolbar-style/package.json | 8 +- .../action-strip/package.json | 8 +- .../advanced-filtering-options/package.json | 8 +- .../advanced-filtering-style/package.json | 8 +- .../cell-editing-sample/package.json | 8 +- .../cell-editing-styling/package.json | 8 +- .../cell-selection-mode/package.json | 8 +- .../cell-selection-overview/package.json | 8 +- .../cell-selection-style/package.json | 8 +- .../cell-selection-styling/package.json | 8 +- .../column-auto-sizing/package.json | 8 +- .../column-collapsible-groups/package.json | 8 +- .../column-hiding-toolbar-style/package.json | 8 +- .../column-hiding-toolbar/package.json | 8 +- .../column-moving-options/package.json | 8 +- .../column-moving-styles/package.json | 8 +- .../column-pinning-options/package.json | 8 +- .../column-pinning-right-side/package.json | 8 +- .../column-pinning-styles/package.json | 8 +- .../column-pinning/package.json | 8 +- .../column-resize-styling/package.json | 8 +- .../column-resizing/package.json | 8 +- .../column-selection-group/package.json | 8 +- .../column-selection-mode/package.json | 8 +- .../column-selection-styles/package.json | 8 +- .../column-sorting-indicators/package.json | 8 +- .../column-sorting-options/package.json | 8 +- .../column-sorting-style/package.json | 8 +- .../conditional-cell-style-1/package.json | 8 +- .../conditional-cell-style-2/package.json | 8 +- .../conditional-row-selectors/package.json | 8 +- .../custom-filtering/package.json | 8 +- .../data-exporting-indicator/package.json | 8 +- .../package.json | 8 +- .../data-summary-formatter/package.json | 8 +- .../data-summary-options-styling/package.json | 8 +- .../data-summary-options/package.json | 8 +- .../data-summary-template/package.json | 8 +- .../editing-columns/package.json | 8 +- .../editing-events/package.json | 8 +- .../editing-lifecycle/package.json | 8 +- .../excel-exporting/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../excel-style-filtering-style/package.json | 8 +- .../filtering-options/package.json | 8 +- .../filtering-style/package.json | 8 +- .../hierarchical-grid-options/package.json | 8 +- .../package.json | 8 +- .../hierarchical-grid-styling/package.json | 8 +- .../layout-display-density/package.json | 8 +- .../multi-column-headers-export/package.json | 8 +- .../package.json | 8 +- .../multi-column-headers-styling/package.json | 8 +- .../package.json | 8 +- .../hierarchical-grid/overview/package.json | 8 +- .../remote-paging-sample/package.json | 8 +- .../hierarchical-grid/row-adding/package.json | 8 +- .../row-classes/package.json | 8 +- .../row-drag-base/package.json | 8 +- .../row-editing-options/package.json | 8 +- .../row-editing-style/package.json | 8 +- .../row-pinning-extra-column/package.json | 8 +- .../row-pinning-options/package.json | 8 +- .../row-pinning-style/package.json | 8 +- .../row-reorder/package.json | 8 +- .../row-selection-mode/package.json | 8 +- .../package.json | 8 +- .../hierarchical-grid/row-styles/package.json | 8 +- .../state-persistence-about/package.json | 8 +- .../state-persistence-main/package.json | 8 +- .../toolbar-sample-1/package.json | 8 +- .../toolbar-sample-2/package.json | 8 +- .../toolbar-sample-3/package.json | 8 +- .../toolbar-sample-4/package.json | 8 +- .../toolbar-style/package.json | 8 +- .../grids/list/add-list-items/package.json | 2 +- .../aggregate-max-sales/package.json | 8 +- .../aggregate-units-sold/package.json | 8 +- samples/grids/pivot-grid/basic/package.json | 8 +- .../data-persistence-noop/package.json | 8 +- .../pivot-grid/data-selector/package.json | 8 +- .../grids/pivot-grid/features/package.json | 8 +- samples/grids/pivot-grid/remote/package.json | 8 +- .../state-persistence-about/package.json | 8 +- .../state-persistence-main/package.json | 8 +- .../grids/tree-grid/action-strip/package.json | 8 +- .../advanced-filtering-options/package.json | 8 +- .../advanced-filtering-style/package.json | 8 +- .../cell-editing-sample/package.json | 8 +- .../cell-editing-styling/package.json | 8 +- .../cell-selection-mode/package.json | 8 +- .../cell-selection-style/package.json | 8 +- .../clipboard-operations/package.json | 8 +- .../tree-grid/column-auto-sizing/package.json | 8 +- .../column-collapsible-groups/package.json | 8 +- .../tree-grid/column-data-types/package.json | 8 +- .../column-hiding-toolbar-style/package.json | 8 +- .../column-hiding-toolbar/package.json | 8 +- .../column-moving-options/package.json | 8 +- .../column-moving-styles/package.json | 8 +- .../column-pinning-options/package.json | 8 +- .../column-pinning-right-side/package.json | 8 +- .../column-pinning-styles/package.json | 8 +- .../column-pinning-toolbar/package.json | 8 +- .../tree-grid/column-pinning/package.json | 8 +- .../column-resize-styling/package.json | 8 +- .../tree-grid/column-resizing/package.json | 8 +- .../column-selection-group/package.json | 8 +- .../column-selection-mode/package.json | 8 +- .../column-selection-style/package.json | 8 +- .../column-selection-styles/package.json | 8 +- .../column-sorting-indicators/package.json | 8 +- .../column-sorting-options/package.json | 8 +- .../column-sorting-style/package.json | 8 +- .../conditional-cell-style-1/package.json | 8 +- .../conditional-cell-style-2/package.json | 8 +- .../conditional-row-selectors/package.json | 8 +- .../tree-grid/custom-filtering/package.json | 8 +- .../data-exporting-indicator/package.json | 8 +- .../tree-grid/data-searching/package.json | 8 +- .../data-summaries-custom/package.json | 8 +- .../data-summary-children/package.json | 8 +- .../data-summary-formatter/package.json | 8 +- .../data-summary-options-styling/package.json | 8 +- .../data-summary-options/package.json | 8 +- .../data-summary-template/package.json | 8 +- .../tree-grid/editing-columns/package.json | 8 +- .../tree-grid/editing-events/package.json | 8 +- .../tree-grid/editing-lifecycle/package.json | 8 +- .../tree-grid/excel-exporting/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../excel-style-filtering-style/package.json | 8 +- .../tree-grid/filtering-options/package.json | 8 +- .../tree-grid/filtering-style/package.json | 8 +- samples/grids/tree-grid/finjs/package.json | 10 +- .../keyboard-custom-navigation/package.json | 8 +- .../keyboard-navigation-guide/package.json | 8 +- .../layout-display-density/package.json | 8 +- .../tree-grid/load-on-demand/package.json | 8 +- .../multi-cell-selection-mode/package.json | 8 +- .../multi-column-headers-export/package.json | 8 +- .../package.json | 8 +- .../multi-column-headers-styling/package.json | 8 +- .../package.json | 8 +- .../tree-grid/overview-styling/package.json | 8 +- samples/grids/tree-grid/overview/package.json | 8 +- .../grids/tree-grid/row-adding/package.json | 8 +- .../grids/tree-grid/row-classes/package.json | 8 +- .../tree-grid/row-drag-base/package.json | 8 +- .../row-editing-options/package.json | 8 +- .../tree-grid/row-editing-style/package.json | 8 +- .../tree-grid/row-paging-basic/package.json | 8 +- .../tree-grid/row-paging-options/package.json | 8 +- .../tree-grid/row-paging-style/package.json | 8 +- .../row-pinning-extra-column/package.json | 8 +- .../row-pinning-options/package.json | 8 +- .../tree-grid/row-pinning-style/package.json | 8 +- .../grids/tree-grid/row-reorder/package.json | 8 +- .../tree-grid/row-selection-mode/package.json | 8 +- .../row-selection-template-excel/package.json | 8 +- .../package.json | 8 +- .../grids/tree-grid/row-styles/package.json | 8 +- .../state-persistence-about/package.json | 8 +- .../state-persistence-main/package.json | 8 +- .../tree-grid/toolbar-sample-1/package.json | 8 +- .../tree-grid/toolbar-sample-2/package.json | 8 +- .../tree-grid/toolbar-sample-3/package.json | 8 +- .../tree-grid/toolbar-sample-4/package.json | 8 +- .../tree-grid/toolbar-style/package.json | 8 +- .../using-primary-foreign-keys/package.json | 8 +- .../layouts/carousel/animations/package.json | 4 +- .../layouts/carousel/components/package.json | 4 +- .../layouts/carousel/overview/package.json | 4 +- .../layouts/carousel/thumbnail/package.json | 4 +- .../embedding-frames/package.json | 2 +- .../dock-manager/hiding-panes/package.json | 2 +- .../dock-manager/overview/package.json | 2 +- .../layouts/dock-manager/styling/package.json | 2 +- .../dock-manager/updating-panes/package.json | 8 +- .../geo-map/binding-data-csv/package.json | 6 +- .../binding-data-json-points/package.json | 6 +- .../geo-map/binding-data-model/package.json | 6 +- .../binding-multiple-shapes/package.json | 6 +- .../binding-multiple-sources/package.json | 6 +- .../geo-map/binding-shp-points/package.json | 6 +- .../geo-map/binding-shp-polygons/package.json | 6 +- .../binding-shp-polylines/package.json | 6 +- .../maps/geo-map/custom-tooltips/package.json | 6 +- .../geo-map/display-all-imagery/package.json | 6 +- .../geo-map/display-bing-imagery/package.json | 6 +- .../geo-map/display-esri-imagery/package.json | 6 +- .../geo-map/display-heat-imagery/package.json | 6 +- .../geo-map/display-osm-imagery/package.json | 6 +- .../maps/geo-map/marker-template/package.json | 6 +- samples/maps/geo-map/marker-type/package.json | 6 +- samples/maps/geo-map/navigation/package.json | 6 +- samples/maps/geo-map/overview/package.json | 6 +- .../maps/geo-map/shape-styling/package.json | 6 +- .../maps/geo-map/synchronization/package.json | 6 +- .../geo-map/triangulating-data/package.json | 6 +- .../type-scatter-area-series/package.json | 6 +- .../type-scatter-bubble-series/package.json | 6 +- .../type-scatter-contour-series/package.json | 6 +- .../type-scatter-density-series/package.json | 6 +- .../type-scatter-symbol-series/package.json | 6 +- .../type-shape-polygon-series/package.json | 6 +- .../type-shape-polyline-series/package.json | 6 +- 687 files changed, 2285 insertions(+), 2285 deletions(-) diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js index abe977c7a2..1e6b1ecb28 100644 --- a/browser/tasks/gulp-samples.js +++ b/browser/tasks/gulp-samples.js @@ -976,17 +976,17 @@ function updateIG(cb) { // { name: "igniteui-webcomponents-core", version: "3.2.2" }, // PUBLIC NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-webcomponents-core" , version: "5.0.2" }, - { name: "igniteui-webcomponents-charts" , version: "5.0.2" }, - { name: "igniteui-webcomponents-excel" , version: "5.0.2" }, - { name: "igniteui-webcomponents-gauges" , version: "5.0.2" }, - { name: "igniteui-webcomponents-grids" , version: "5.0.2" }, - { name: "igniteui-webcomponents-inputs" , version: "5.0.2" }, - { name: "igniteui-webcomponents-layouts" , version: "5.0.2" }, - { name: "igniteui-webcomponents-maps" , version: "5.0.2" }, - { name: "igniteui-webcomponents-spreadsheet-chart-adapter", version: "5.0.2" }, - { name: "igniteui-webcomponents-spreadsheet" , version: "5.0.2" }, - { name: "igniteui-webcomponents-datasources" , version: "5.0.2" }, + { name: "igniteui-webcomponents-core" , version: "5.0.3-beta.0" }, + { name: "igniteui-webcomponents-charts" , version: "5.0.3-beta.0" }, + { name: "igniteui-webcomponents-excel" , version: "5.0.3-beta.0" }, + { name: "igniteui-webcomponents-gauges" , version: "5.0.3-beta.0" }, + { name: "igniteui-webcomponents-grids" , version: "5.0.3-beta.0" }, + { name: "igniteui-webcomponents-inputs" , version: "5.0.3-beta.0" }, + { name: "igniteui-webcomponents-layouts" , version: "5.0.3-beta.0" }, + { name: "igniteui-webcomponents-maps" , version: "5.0.3-beta.0" }, + { name: "igniteui-webcomponents-spreadsheet-chart-adapter", version: "5.0.3-beta.0" }, + { name: "igniteui-webcomponents-spreadsheet" , version: "5.0.3-beta.0" }, + { name: "igniteui-webcomponents-datasources" , version: "5.0.3-beta.0" }, // these IG packages are sometimes updated: { name: "igniteui-webcomponents", version: "5.1.1" }, { name: "igniteui-dockmanager", version: "1.14.3" }, diff --git a/package-lock.json b/package-lock.json index 4185a6a34f..d2cd114a9f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22,17 +22,17 @@ "file-saver": "^2.0.2", "igniteui-dockmanager": "1.14.3", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-datasources": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-datasources": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.0.3-beta.0", "lit": "^3.2.0", "lit-html": "^3.2.0" }, @@ -8804,14 +8804,14 @@ } }, "node_modules/igniteui-webcomponents-charts": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-charts/-/igniteui-webcomponents-charts-5.0.2.tgz", - "integrity": "sha512-1V/Givkf+S+A10dNO6P0aKM67DI86+1VvudXp4g5oc3L4TIHQ2hoFkiSi05ZN7p+dGwTPZhWr7NEeTpNcXUwOg==", + "version": "5.0.3-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-charts/-/igniteui-webcomponents-charts-5.0.3-beta.0.tgz", + "integrity": "sha512-rS1/WtNSUdZMXOQk26yW6oMkf5bVOc3wYSqK0VsiQJu4vUJj5WiaZWWsHPgsxsJfeYEG5mfROOxryNazCA1NTQ==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.2" + "igniteui-webcomponents-core": "5.0.3-beta.0" } }, "node_modules/igniteui-webcomponents-charts/node_modules/tslib": { @@ -8820,14 +8820,14 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-core": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-core/-/igniteui-webcomponents-core-5.0.2.tgz", - "integrity": "sha512-EgCG1jMNSSYp8bBmlaxaxVhtQrmYOSrDmZKgcNCYZaQsQpC98TiOFRQyp2KcWViLWYTjX5DZN5YyfjDt96/lDw==", + "version": "5.0.3-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-core/-/igniteui-webcomponents-core-5.0.3-beta.0.tgz", + "integrity": "sha512-8WHGu1FzaoDgqLoyWo8DtKKAc6Yq+RLxBu8KKr5NAyheQYH1V4Zviw/sQz/AmIhpMkq+EBIBBvTgAoheZOWjpA==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "lit-html": "^2.0.0" + "lit-html": "^3.2.0" } }, "node_modules/igniteui-webcomponents-core/node_modules/tslib": { @@ -8836,14 +8836,14 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-datasources": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-datasources/-/igniteui-webcomponents-datasources-5.0.2.tgz", - "integrity": "sha512-ox3Ti+WFQSVjX1WK4o/m7HgsWzWETRx+JTDZuRnq/Rh8WqyoSgmCDh907hKhhzp6DsFvKc8TVcdEnMyoz/gGtQ==", + "version": "5.0.3-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-datasources/-/igniteui-webcomponents-datasources-5.0.3-beta.0.tgz", + "integrity": "sha512-Sq3zDGpbM7wx49GMqf9Yt6QmpuPoqD61W0JoRUhJcHi50UNA2KCbCkAZAfJ2LxXEEBAdr0LuiCLsNBGw8n1RmQ==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.2" + "igniteui-webcomponents-core": "5.0.3-beta.0" } }, "node_modules/igniteui-webcomponents-datasources/node_modules/tslib": { @@ -8852,16 +8852,16 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-excel": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-excel/-/igniteui-webcomponents-excel-5.0.2.tgz", - "integrity": "sha512-aBYkK9DAbBWiiSop7xXQzEfAb071lWz3qklBoogyfuQACQf61hFo1Rg3NMdWyt1/zeZXXAop3lwNuaQje9XJVw==", + "version": "5.0.3-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-excel/-/igniteui-webcomponents-excel-5.0.3-beta.0.tgz", + "integrity": "sha512-CP5QnBGuTWrhmwaVgEzYow9xU5cKeEsa0M5jbGOsJVvuzMg9wVomVLn1hZQa5bvOJZCyK2RrXhhMRDkluH/38g==", "dependencies": { "jszip": "^3.1.5", "pako": "^1.0.6", "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.2" + "igniteui-webcomponents-core": "5.0.3-beta.0" } }, "node_modules/igniteui-webcomponents-excel/node_modules/tslib": { @@ -8870,14 +8870,14 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-gauges": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-gauges/-/igniteui-webcomponents-gauges-5.0.2.tgz", - "integrity": "sha512-hKe4h8H16lX4qq/9H3YJhrl5uU4KEcm4c2yRBcIkW7rYVtEZilic7YzoKJBoxOsMbJyMYl/dxrR93ci95xq3zg==", + "version": "5.0.3-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-gauges/-/igniteui-webcomponents-gauges-5.0.3-beta.0.tgz", + "integrity": "sha512-Nx02pjdzkTVByjoY37kzQ7DSt2TNimTE+DDnRx6pmc9dOaly8PTgF+yfjXzVDmgUCermtgk6TdPWJtdbMSoEdQ==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.2" + "igniteui-webcomponents-core": "5.0.3-beta.0" } }, "node_modules/igniteui-webcomponents-gauges/node_modules/tslib": { @@ -8886,16 +8886,16 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-grids": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-5.0.2.tgz", - "integrity": "sha512-G7pfoHT1ysItrF+c3q5tpW+v+QYxw3pLYQD1h/u8ko3hgt+Fl8tKEuRCos23h/VX8+xGJS3jTBXTRuanBAFJTw==", + "version": "5.0.3-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-5.0.3-beta.0.tgz", + "integrity": "sha512-D19p3pLkdGvzMSfRbQgJQrS4Ui3DF4Pe1VbRnD10O0v6nBqGYml+sxbnR3mkQTLKhpOqPPiXc9WkPZsNqoiccw==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2" + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0" } }, "node_modules/igniteui-webcomponents-grids/node_modules/tslib": { @@ -8904,14 +8904,14 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-inputs": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-inputs/-/igniteui-webcomponents-inputs-5.0.2.tgz", - "integrity": "sha512-TeUIv1IbkUQwUS1fCkTGi/g3vD0z19ML7lxi0RQRwQzJNgt+jEJD/9/2NfCTxE1bUy6ubdyXx4j7OQr3afiTgg==", + "version": "5.0.3-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-inputs/-/igniteui-webcomponents-inputs-5.0.3-beta.0.tgz", + "integrity": "sha512-aciUOV3GYExvU/8z581tlbKK37pIyUhrvp/O4Qp4DIvsAI1bfi6Vg/pTMe9ayFjfLpc74/3tdAhGXjVjxy9ejQ==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.2" + "igniteui-webcomponents-core": "5.0.3-beta.0" } }, "node_modules/igniteui-webcomponents-inputs/node_modules/tslib": { @@ -8920,15 +8920,15 @@ "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" }, "node_modules/igniteui-webcomponents-layouts": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-layouts/-/igniteui-webcomponents-layouts-5.0.2.tgz", - "integrity": "sha512-KTKNeTCgjYvYEz1HtpIV++k0CDfvpbIQFYG76s8bErk4D/wrSRjeU2dBA0oFuXrHPocui0XN+KdpcC/aLaepGw==", + "version": "5.0.3-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-layouts/-/igniteui-webcomponents-layouts-5.0.3-beta.0.tgz", + "integrity": "sha512-md5mRE7vlj1i4+Hkl2fcykJBBPfAmKnpizDiBNDz23BhS1Hj04pcL5B8emnaxk2d6tYe5arkeBvGOi16IZLADg==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2" + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0" } }, "node_modules/igniteui-webcomponents-layouts/node_modules/tslib": { @@ -8937,15 +8937,15 @@ "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" }, "node_modules/igniteui-webcomponents-maps": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-maps/-/igniteui-webcomponents-maps-5.0.2.tgz", - "integrity": "sha512-lg6JJF6xpA678IltQoVdy5iZ2dp2KKjN8OqVktQQdeWc5JZed9QOs8YQN3WpoVCc6PNxoX3/ktFq4bbvkofdxA==", + "version": "5.0.3-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-maps/-/igniteui-webcomponents-maps-5.0.3-beta.0.tgz", + "integrity": "sha512-6yXPg1b4Vy6G3ExJ1+vaN4jTHEsa0vWxph7wnjZDWTD6CL8rohSquSv4joGwS2ZknnhriCGvAyHQ/Bl8ZJJ/jg==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2" + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0" } }, "node_modules/igniteui-webcomponents-maps/node_modules/tslib": { @@ -8954,29 +8954,29 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-spreadsheet": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet/-/igniteui-webcomponents-spreadsheet-5.0.2.tgz", - "integrity": "sha512-pAwNSAqRbi/bE1TvC0W1ImCWT3/jCSlNcs6960jf2nC2OQFMkLBsq9mWQaAYEhhR89shmt/k3j4ux6C0oprGPg==", + "version": "5.0.3-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet/-/igniteui-webcomponents-spreadsheet-5.0.3-beta.0.tgz", + "integrity": "sha512-ufU/OtAPvi6uZ1tl4X8X4ZEcIztt3L9rZ3bgTzY+J1fh6WrV4D4Nh2IBD14Oa8CSaxcfo/j+SU7FdNFAjNeXbg==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2" + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0" } }, "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet-chart-adapter/-/igniteui-webcomponents-spreadsheet-chart-adapter-5.0.2.tgz", - "integrity": "sha512-z02wy0uhJyonosmdZvHA2yvS+YtgtzdlTVca9YhjHF3PVHrDzSwBOqwK4UM+2/Vul7egAkoUBNXgyZcTypOrqA==", + "version": "5.0.3-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet-chart-adapter/-/igniteui-webcomponents-spreadsheet-chart-adapter-5.0.3-beta.0.tgz", + "integrity": "sha512-VDNogVI7BDx5QMWbKRS1Jq92k4PjgtW+AXEMMZ/YQjfSEzOqYE89/h3QFlUvyOCMX98Fioch9dKpWIahQt7JQg==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2" + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0" } }, "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter/node_modules/tslib": { diff --git a/package.json b/package.json index 1325f53830..355420064f 100644 --- a/package.json +++ b/package.json @@ -42,17 +42,17 @@ "file-saver": "^2.0.2", "igniteui-dockmanager": "1.14.3", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-datasources": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-datasources": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.0.3-beta.0", "lit": "^3.2.0", "lit-html": "^3.2.0" }, diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 282d90e379..d1899e40bf 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 1d1902a00b..4ff3f1a8a6 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index edaaf999a7..130ebeed84 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 89a9ab750c..1fb33dee25 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 65f98b0da9..e25ddfc3af 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 1d1902a00b..4ff3f1a8a6 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 61d5d7665c..e228d60596 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 282d90e379..d1899e40bf 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index ef4b24da91..e9bb2bd534 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 571e0b68ba..3dab0218b3 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index cc5b855f19..db2abb4cc0 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index cc5b855f19..db2abb4cc0 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 02d05b327b..d3a3a0f5af 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 917f49944f..44aab0b16d 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 8d8d807b10..d1e63bc9ae 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 8d8d807b10..d1e63bc9ae 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 4a00910a70..d410d6df14 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 12fd75ae9e..3aaf7cb18d 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index aa2ed5186a..d0df75c680 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index e2c0bbca98..747f83790f 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 14336e7343..589d23e3bf 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 0e625ff892..7631447cd8 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 38e889b861..e56e21584d 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index f2883fb376..749ca3bfe1 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 14336e7343..589d23e3bf 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 7b589d12f9..462cda9f5c 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 67f006614a..bbfefd3db6 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 7d8184d2bf..393292b0c0 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 7d8184d2bf..393292b0c0 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 7d8184d2bf..393292b0c0 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 7d8184d2bf..393292b0c0 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 7d8184d2bf..393292b0c0 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index edaaf999a7..130ebeed84 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index edaaf999a7..130ebeed84 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index edaaf999a7..130ebeed84 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index ed343c1c63..73c10c727c 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 7d8184d2bf..393292b0c0 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 8e300525d9..66c1c01084 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 1cb953f04e..0c158582ab 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index b82abbb428..a6fd19170f 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index d53ae3c969..9b3d2e48f7 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 899ff74195..245c3e8e45 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-error-bars/package.json b/samples/charts/data-chart/series-error-bars/package.json index bf4ba12246..42ab399e63 100644 --- a/samples/charts/data-chart/series-error-bars/package.json +++ b/samples/charts/data-chart/series-error-bars/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index b3ddaa52e6..3b13cbfe82 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index b123668035..0965c6d7a3 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 90b0e32300..77f143cc9b 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 0ebe052eeb..0446916fc2 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 150d1b9604..6ed68b1d6a 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index c92028f928..8b89849cbe 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 6212c313ed..eb7e0a0ef4 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index f7f91cbbaa..4313f8d6f6 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index bdf7f84101..ed3131c30e 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-indicator-column/package.json b/samples/charts/data-chart/type-financial-indicator-column/package.json index c930311dda..c4239aaecf 100644 --- a/samples/charts/data-chart/type-financial-indicator-column/package.json +++ b/samples/charts/data-chart/type-financial-indicator-column/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-indicator-line/package.json b/samples/charts/data-chart/type-financial-indicator-line/package.json index b70fbb88c4..666b04639b 100644 --- a/samples/charts/data-chart/type-financial-indicator-line/package.json +++ b/samples/charts/data-chart/type-financial-indicator-line/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 00909c7547..87bf90c883 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 11d39a2289..b779b8bf4e 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index e446e31c3b..5874a0d771 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index c3b0c4db03..af5a8243b8 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 6aff75a456..cba8aacdc0 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index fa6f7b93aa..6bdd2a1817 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 9eed622b30..251b930548 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 728bdda452..8a7c157b7e 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 7a591b3299..f0e8b03c74 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index c4cef10ac5..84c9e5f8e9 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 614fa06bb0..97f66466ef 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 120288643c..835e145027 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 56bf4d0071..633d9111c1 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 3bc3f5e47a..fc26a70af5 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index edaaf999a7..130ebeed84 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 04111087f4..38076bf1d4 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 781735754b..5156d00128 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index be235fd986..f0a8f2caf7 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 74fcd08b38..3a95bcea12 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index dbc6bac6aa..b98093c4ed 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 02dec5b3d7..53237dffca 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 01b2e4710d..6f7a7df36d 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 046d5f3215..93ac23d70e 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index cb5759b3a5..a102f45195 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 7891088a21..3f0b745612 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 8e49566964..2f5e9f6726 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index f8262a29ab..d847182fad 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index d7c5d38f77..de8911111c 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 3b35782c8d..86857e6f1e 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 785541ffaf..ff8d3de808 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 52fb732014..7483bbe292 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index fa1ad19080..472f661b70 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index bbed84dae0..7ea1745476 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 988d472b24..9b904cb357 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 4aa0644511..c62bd76eaf 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 39a551bdca..888494e69c 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 96f7d0e456..355df3bc2a 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index edaaf999a7..130ebeed84 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 9cb9916454..c4e00bddcb 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index e3f171b3eb..5dc9de264c 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index edaaf999a7..130ebeed84 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index edaaf999a7..130ebeed84 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index edaaf999a7..130ebeed84 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index edaaf999a7..130ebeed84 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index edaaf999a7..130ebeed84 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 5b4eaa8fed..6f36edde9c 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 1315c7090b..8a1edd5bd3 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index bd5623f4c9..a1dd5e86ea 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index b21ea39f9f..4e1d83ec03 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/multi-column-combobox/overview/package.json b/samples/editors/multi-column-combobox/overview/package.json index 3232fcef59..a781416884 100644 --- a/samples/editors/multi-column-combobox/overview/package.json +++ b/samples/editors/multi-column-combobox/overview/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/date-limits/package.json b/samples/editors/x-date-picker/date-limits/package.json index 005ac6d42f..61fa4f3f96 100644 --- a/samples/editors/x-date-picker/date-limits/package.json +++ b/samples/editors/x-date-picker/date-limits/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/editing/package.json b/samples/editors/x-date-picker/editing/package.json index 548d60ddf5..ec509f96bb 100644 --- a/samples/editors/x-date-picker/editing/package.json +++ b/samples/editors/x-date-picker/editing/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/format/package.json b/samples/editors/x-date-picker/format/package.json index d7512ed0d4..0e37a9d8cb 100644 --- a/samples/editors/x-date-picker/format/package.json +++ b/samples/editors/x-date-picker/format/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/overview/package.json b/samples/editors/x-date-picker/overview/package.json index 70b4b4064f..2dcf73057e 100644 --- a/samples/editors/x-date-picker/overview/package.json +++ b/samples/editors/x-date-picker/overview/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/range/package.json b/samples/editors/x-date-picker/range/package.json index a26f1504d9..c4b6631ae7 100644 --- a/samples/editors/x-date-picker/range/package.json +++ b/samples/editors/x-date-picker/range/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 00b460b015..a38d881bb8 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -25,11 +25,11 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index ebe1e7c5a9..813e3cc00d 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -25,8 +25,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 63465c04de..4876d9b3cd 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -25,8 +25,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 8b964c14b8..846067893c 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -25,8 +25,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index d45b8101a2..d6faff3c8a 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -25,12 +25,12 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index b714ce9130..735ad9ee3c 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -25,12 +25,12 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 10a85050e7..729939d8ee 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index ba23b8c3ee..aa1d8bbecd 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -25,11 +25,11 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index ec97c92251..f1117a1739 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index 12d1a09cdc..c197b470d2 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index baf5f57335..1790f3cf9f 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index f97f7b31b4..217030ca9d 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 3fcc699779..15fba4ba68 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 7149264158..76e6e5fb6a 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/filter-dialog/package.json b/samples/excel/spreadsheet/filter-dialog/package.json index 36e1022c17..8de869918c 100644 --- a/samples/excel/spreadsheet/filter-dialog/package.json +++ b/samples/excel/spreadsheet/filter-dialog/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/format-dialog/package.json b/samples/excel/spreadsheet/format-dialog/package.json index 35cc3fa5b5..555f008ff4 100644 --- a/samples/excel/spreadsheet/format-dialog/package.json +++ b/samples/excel/spreadsheet/format-dialog/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index e6ba56f45c..c512bfc5f2 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 7648f2f2f1..e29390af5d 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/sort-dialog/package.json b/samples/excel/spreadsheet/sort-dialog/package.json index 95aee32407..4c34dd076a 100644 --- a/samples/excel/spreadsheet/sort-dialog/package.json +++ b/samples/excel/spreadsheet/sort-dialog/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-excel": "5.0.2", - "igniteui-webcomponents-spreadsheet": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 5d15394d1e..53f625df16 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index d77c116f4c..521dd4017c 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 35107cbb2e..2b109d0ff6 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 12b386e969..eb5bb63e65 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 3f15264150..4df35de231 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index bc87a8a214..a00baac99c 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 6b93672932..9565b3f4e6 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index b803e4931d..80ec193831 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-filled/package.json b/samples/gauges/bullet-graph/type-filled/package.json index eabbbe6665..6cf29dc128 100644 --- a/samples/gauges/bullet-graph/type-filled/package.json +++ b/samples/gauges/bullet-graph/type-filled/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-horizontal/package.json b/samples/gauges/bullet-graph/type-horizontal/package.json index 555cc1d448..c973d6a103 100644 --- a/samples/gauges/bullet-graph/type-horizontal/package.json +++ b/samples/gauges/bullet-graph/type-horizontal/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-reversed/package.json b/samples/gauges/bullet-graph/type-reversed/package.json index db14fc57c0..8ff1f8096b 100644 --- a/samples/gauges/bullet-graph/type-reversed/package.json +++ b/samples/gauges/bullet-graph/type-reversed/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-segmented/package.json b/samples/gauges/bullet-graph/type-segmented/package.json index 6648145f11..887fe799c5 100644 --- a/samples/gauges/bullet-graph/type-segmented/package.json +++ b/samples/gauges/bullet-graph/type-segmented/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-vertical/package.json b/samples/gauges/bullet-graph/type-vertical/package.json index e21a1ae4f6..d7756195b2 100644 --- a/samples/gauges/bullet-graph/type-vertical/package.json +++ b/samples/gauges/bullet-graph/type-vertical/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 20218dcd76..538fcede93 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 8ffc0adc82..6630764544 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index 73f868bc5a..fb58740cc3 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 428218f802..6e7877b7e4 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 6e713572db..70355bd7ba 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index dd81891307..d1fee6f3de 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 298ecdde4b..a2422bf11d 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 889dc65322..d1a8963b22 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-curved/package.json b/samples/gauges/linear-gauge/type-curved/package.json index 9be24317c5..6d7c68115d 100644 --- a/samples/gauges/linear-gauge/type-curved/package.json +++ b/samples/gauges/linear-gauge/type-curved/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-filled/package.json b/samples/gauges/linear-gauge/type-filled/package.json index 742b1ea8ab..722b2a6876 100644 --- a/samples/gauges/linear-gauge/type-filled/package.json +++ b/samples/gauges/linear-gauge/type-filled/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-horizontal/package.json b/samples/gauges/linear-gauge/type-horizontal/package.json index 240c4cd403..c66ad8310e 100644 --- a/samples/gauges/linear-gauge/type-horizontal/package.json +++ b/samples/gauges/linear-gauge/type-horizontal/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-multi-range/package.json b/samples/gauges/linear-gauge/type-multi-range/package.json index a2d6a38edf..80fc780397 100644 --- a/samples/gauges/linear-gauge/type-multi-range/package.json +++ b/samples/gauges/linear-gauge/type-multi-range/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-multi-scale/package.json b/samples/gauges/linear-gauge/type-multi-scale/package.json index 8eb4eaf6b0..9c2e530802 100644 --- a/samples/gauges/linear-gauge/type-multi-scale/package.json +++ b/samples/gauges/linear-gauge/type-multi-scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-segmented/package.json b/samples/gauges/linear-gauge/type-segmented/package.json index 7bdac6be9b..cfceae5aef 100644 --- a/samples/gauges/linear-gauge/type-segmented/package.json +++ b/samples/gauges/linear-gauge/type-segmented/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-vertical/package.json b/samples/gauges/linear-gauge/type-vertical/package.json index a20d9282ff..19eb71ece4 100644 --- a/samples/gauges/linear-gauge/type-vertical/package.json +++ b/samples/gauges/linear-gauge/type-vertical/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 1b0c60c61b..ce3960a5e5 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index cd0c37724b..58f90b8481 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 2add0c2c73..844c92bf68 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 911232aff1..273c67b002 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 270bbb3651..53de2376e5 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 911232aff1..273c67b002 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index c9332d7f12..bc20620b32 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index 6193fabe94..ce055d1d40 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index a680cf3dcd..ba19b97076 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-column/package.json b/samples/gauges/radial-gauge/type-column/package.json index d0ee9d89d3..1471fe94cd 100644 --- a/samples/gauges/radial-gauge/type-column/package.json +++ b/samples/gauges/radial-gauge/type-column/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-curved/package.json b/samples/gauges/radial-gauge/type-curved/package.json index d5b23e0d3a..96cbfda8fb 100644 --- a/samples/gauges/radial-gauge/type-curved/package.json +++ b/samples/gauges/radial-gauge/type-curved/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-direction/package.json b/samples/gauges/radial-gauge/type-direction/package.json index b6049cc093..6dc4ccd5a2 100644 --- a/samples/gauges/radial-gauge/type-direction/package.json +++ b/samples/gauges/radial-gauge/type-direction/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-full/package.json b/samples/gauges/radial-gauge/type-full/package.json index 46b80c1306..bed9833adc 100644 --- a/samples/gauges/radial-gauge/type-full/package.json +++ b/samples/gauges/radial-gauge/type-full/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-half/package.json b/samples/gauges/radial-gauge/type-half/package.json index b333fe5db2..c989d36341 100644 --- a/samples/gauges/radial-gauge/type-half/package.json +++ b/samples/gauges/radial-gauge/type-half/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-quatre/package.json b/samples/gauges/radial-gauge/type-quatre/package.json index b3275fbea5..227a9afa73 100644 --- a/samples/gauges/radial-gauge/type-quatre/package.json +++ b/samples/gauges/radial-gauge/type-quatre/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-ring/package.json b/samples/gauges/radial-gauge/type-ring/package.json index 8c1abe8ec3..0ce06ddbbe 100644 --- a/samples/gauges/radial-gauge/type-ring/package.json +++ b/samples/gauges/radial-gauge/type-ring/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-segmented/package.json b/samples/gauges/radial-gauge/type-segmented/package.json index 969ad78371..7bea1911cd 100644 --- a/samples/gauges/radial-gauge/type-segmented/package.json +++ b/samples/gauges/radial-gauge/type-segmented/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-semi/package.json b/samples/gauges/radial-gauge/type-semi/package.json index b5fa2a7a6f..e1fb299b35 100644 --- a/samples/gauges/radial-gauge/type-semi/package.json +++ b/samples/gauges/radial-gauge/type-semi/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/accessibility/package.json b/samples/grids/data-grid/accessibility/package.json index 9e564c1aa0..c6c763fa5e 100644 --- a/samples/grids/data-grid/accessibility/package.json +++ b/samples/grids/data-grid/accessibility/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/binding-data-service/package.json b/samples/grids/data-grid/binding-data-service/package.json index fee46fe081..e4dcd082c1 100644 --- a/samples/grids/data-grid/binding-data-service/package.json +++ b/samples/grids/data-grid/binding-data-service/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/binding-live-data/package.json b/samples/grids/data-grid/binding-live-data/package.json index 452e133877..ac62141270 100644 --- a/samples/grids/data-grid/binding-live-data/package.json +++ b/samples/grids/data-grid/binding-live-data/package.json @@ -29,11 +29,11 @@ "@webcomponents/webcomponentsjs": "2.3.0", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/binding-local-data/package.json b/samples/grids/data-grid/binding-local-data/package.json index 70d8e72c97..674ebb6977 100644 --- a/samples/grids/data-grid/binding-local-data/package.json +++ b/samples/grids/data-grid/binding-local-data/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/binding-remote-data/package.json b/samples/grids/data-grid/binding-remote-data/package.json index 112827405a..cc8aed4ec5 100644 --- a/samples/grids/data-grid/binding-remote-data/package.json +++ b/samples/grids/data-grid/binding-remote-data/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-datasources": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-datasources": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-activation/package.json b/samples/grids/data-grid/cell-activation/package.json index 11506e38f3..1fd0ea11f5 100644 --- a/samples/grids/data-grid/cell-activation/package.json +++ b/samples/grids/data-grid/cell-activation/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-editing/package.json b/samples/grids/data-grid/cell-editing/package.json index 47724b772b..a319b775a4 100644 --- a/samples/grids/data-grid/cell-editing/package.json +++ b/samples/grids/data-grid/cell-editing/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-merging/package.json b/samples/grids/data-grid/cell-merging/package.json index b782bcf5fb..1e234994ec 100644 --- a/samples/grids/data-grid/cell-merging/package.json +++ b/samples/grids/data-grid/cell-merging/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-datasources": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-datasources": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-selection/package.json b/samples/grids/data-grid/cell-selection/package.json index 708c2a8b1a..f556ce2b5b 100644 --- a/samples/grids/data-grid/cell-selection/package.json +++ b/samples/grids/data-grid/cell-selection/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-animation/package.json b/samples/grids/data-grid/column-animation/package.json index 2f07eead6b..6fbd6b6068 100644 --- a/samples/grids/data-grid/column-animation/package.json +++ b/samples/grids/data-grid/column-animation/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-chooser-picker/package.json b/samples/grids/data-grid/column-chooser-picker/package.json index 9078868080..62ab25966c 100644 --- a/samples/grids/data-grid/column-chooser-picker/package.json +++ b/samples/grids/data-grid/column-chooser-picker/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-chooser-toolbar/package.json b/samples/grids/data-grid/column-chooser-toolbar/package.json index 9484ed27a9..3e52ece00a 100644 --- a/samples/grids/data-grid/column-chooser-toolbar/package.json +++ b/samples/grids/data-grid/column-chooser-toolbar/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-filter-expressions/package.json b/samples/grids/data-grid/column-filter-expressions/package.json index d281bcead0..335f7228e9 100644 --- a/samples/grids/data-grid/column-filter-expressions/package.json +++ b/samples/grids/data-grid/column-filter-expressions/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-filter-operands/package.json b/samples/grids/data-grid/column-filter-operands/package.json index 38c00430a0..d660e7704f 100644 --- a/samples/grids/data-grid/column-filter-operands/package.json +++ b/samples/grids/data-grid/column-filter-operands/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-filtering/package.json b/samples/grids/data-grid/column-filtering/package.json index 4e0e75358f..3943d22cbb 100644 --- a/samples/grids/data-grid/column-filtering/package.json +++ b/samples/grids/data-grid/column-filtering/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-moving/package.json b/samples/grids/data-grid/column-moving/package.json index 8489256906..492c52f35f 100644 --- a/samples/grids/data-grid/column-moving/package.json +++ b/samples/grids/data-grid/column-moving/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-options/package.json b/samples/grids/data-grid/column-options/package.json index abc0e4184a..5fb048e065 100644 --- a/samples/grids/data-grid/column-options/package.json +++ b/samples/grids/data-grid/column-options/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-pinning-picker/package.json b/samples/grids/data-grid/column-pinning-picker/package.json index 7781592074..f32f8a0613 100644 --- a/samples/grids/data-grid/column-pinning-picker/package.json +++ b/samples/grids/data-grid/column-pinning-picker/package.json @@ -25,10 +25,10 @@ "@webcomponents/webcomponentsjs": "2.3.0", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-pinning-toolbar/package.json b/samples/grids/data-grid/column-pinning-toolbar/package.json index e14472cdb9..58d1a8bb6c 100644 --- a/samples/grids/data-grid/column-pinning-toolbar/package.json +++ b/samples/grids/data-grid/column-pinning-toolbar/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-resizing/package.json b/samples/grids/data-grid/column-resizing/package.json index 5890dda630..5badcc5f49 100644 --- a/samples/grids/data-grid/column-resizing/package.json +++ b/samples/grids/data-grid/column-resizing/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-scrolling/package.json b/samples/grids/data-grid/column-scrolling/package.json index a456a91db5..f9cfa00640 100644 --- a/samples/grids/data-grid/column-scrolling/package.json +++ b/samples/grids/data-grid/column-scrolling/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-sorting/package.json b/samples/grids/data-grid/column-sorting/package.json index a7e3bf62d3..dee95b7be0 100644 --- a/samples/grids/data-grid/column-sorting/package.json +++ b/samples/grids/data-grid/column-sorting/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-summaries/package.json b/samples/grids/data-grid/column-summaries/package.json index 4032082225..d13898ef17 100644 --- a/samples/grids/data-grid/column-summaries/package.json +++ b/samples/grids/data-grid/column-summaries/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-types/package.json b/samples/grids/data-grid/column-types/package.json index a97c87ce54..b4af7d2112 100644 --- a/samples/grids/data-grid/column-types/package.json +++ b/samples/grids/data-grid/column-types/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/load-save-layout/package.json b/samples/grids/data-grid/load-save-layout/package.json index 3f31718446..477dc89ace 100644 --- a/samples/grids/data-grid/load-save-layout/package.json +++ b/samples/grids/data-grid/load-save-layout/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/localization/package.json b/samples/grids/data-grid/localization/package.json index a25e6b937c..ccba669207 100644 --- a/samples/grids/data-grid/localization/package.json +++ b/samples/grids/data-grid/localization/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/overview/package.json b/samples/grids/data-grid/overview/package.json index 470e2b1ecd..f7ba46940d 100644 --- a/samples/grids/data-grid/overview/package.json +++ b/samples/grids/data-grid/overview/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/pager/package.json b/samples/grids/data-grid/pager/package.json index 469fe9b497..6edddf5668 100644 --- a/samples/grids/data-grid/pager/package.json +++ b/samples/grids/data-grid/pager/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/performance/package.json b/samples/grids/data-grid/performance/package.json index cd99a48b09..c52330f9c0 100644 --- a/samples/grids/data-grid/performance/package.json +++ b/samples/grids/data-grid/performance/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-group-descriptions/package.json b/samples/grids/data-grid/row-group-descriptions/package.json index 78203355bf..e579497af4 100644 --- a/samples/grids/data-grid/row-group-descriptions/package.json +++ b/samples/grids/data-grid/row-group-descriptions/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-grouping/package.json b/samples/grids/data-grid/row-grouping/package.json index 78203355bf..e579497af4 100644 --- a/samples/grids/data-grid/row-grouping/package.json +++ b/samples/grids/data-grid/row-grouping/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-highlighting/package.json b/samples/grids/data-grid/row-highlighting/package.json index 6da5a69d7f..a1e3be2b10 100644 --- a/samples/grids/data-grid/row-highlighting/package.json +++ b/samples/grids/data-grid/row-highlighting/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-paging/package.json b/samples/grids/data-grid/row-paging/package.json index de86d6f702..4ad4217089 100644 --- a/samples/grids/data-grid/row-paging/package.json +++ b/samples/grids/data-grid/row-paging/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-pinning/package.json b/samples/grids/data-grid/row-pinning/package.json index d8150df795..4c767271b4 100644 --- a/samples/grids/data-grid/row-pinning/package.json +++ b/samples/grids/data-grid/row-pinning/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-selection/package.json b/samples/grids/data-grid/row-selection/package.json index 708c2a8b1a..f556ce2b5b 100644 --- a/samples/grids/data-grid/row-selection/package.json +++ b/samples/grids/data-grid/row-selection/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-comparison-table/package.json b/samples/grids/data-grid/type-comparison-table/package.json index 93f7a54deb..c8eab7b395 100644 --- a/samples/grids/data-grid/type-comparison-table/package.json +++ b/samples/grids/data-grid/type-comparison-table/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-datasources": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-datasources": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-heatmap-table/package.json b/samples/grids/data-grid/type-heatmap-table/package.json index 7df48607a7..27f4a0e8af 100644 --- a/samples/grids/data-grid/type-heatmap-table/package.json +++ b/samples/grids/data-grid/type-heatmap-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-marketing-table/package.json b/samples/grids/data-grid/type-marketing-table/package.json index 6b4f983d5e..a3392054bc 100644 --- a/samples/grids/data-grid/type-marketing-table/package.json +++ b/samples/grids/data-grid/type-marketing-table/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-matrix-table/package.json b/samples/grids/data-grid/type-matrix-table/package.json index ba82810cf4..6be67ae155 100644 --- a/samples/grids/data-grid/type-matrix-table/package.json +++ b/samples/grids/data-grid/type-matrix-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-periodic-table/package.json b/samples/grids/data-grid/type-periodic-table/package.json index ba0f151078..9a2c12b060 100644 --- a/samples/grids/data-grid/type-periodic-table/package.json +++ b/samples/grids/data-grid/type-periodic-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-table/package.json b/samples/grids/data-grid/type-table/package.json index 47f068f5c8..be748f6038 100644 --- a/samples/grids/data-grid/type-table/package.json +++ b/samples/grids/data-grid/type-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/action-strip/package.json b/samples/grids/grid/action-strip/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/action-strip/package.json +++ b/samples/grids/grid/action-strip/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/advanced-filtering-options/package.json b/samples/grids/grid/advanced-filtering-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/advanced-filtering-options/package.json +++ b/samples/grids/grid/advanced-filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/advanced-filtering-style/package.json b/samples/grids/grid/advanced-filtering-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/advanced-filtering-style/package.json +++ b/samples/grids/grid/advanced-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/binding-composite-data/package.json +++ b/samples/grids/grid/binding-composite-data/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/binding-crud-data/package.json b/samples/grids/grid/binding-crud-data/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/binding-crud-data/package.json +++ b/samples/grids/grid/binding-crud-data/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/binding-nested-data-1/package.json +++ b/samples/grids/grid/binding-nested-data-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cascading-combo/package.json b/samples/grids/grid/cascading-combo/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/cascading-combo/package.json +++ b/samples/grids/grid/cascading-combo/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-editing-sample/package.json b/samples/grids/grid/cell-editing-sample/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/cell-editing-sample/package.json +++ b/samples/grids/grid/cell-editing-sample/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-editing-styling/package.json b/samples/grids/grid/cell-editing-styling/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/cell-editing-styling/package.json +++ b/samples/grids/grid/cell-editing-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/cell-selection-mode/package.json +++ b/samples/grids/grid/cell-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-selection-style/package.json b/samples/grids/grid/cell-selection-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/cell-selection-style/package.json +++ b/samples/grids/grid/cell-selection-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/change-icons-custom/package.json b/samples/grids/grid/change-icons-custom/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/grid/change-icons-custom/package.json +++ b/samples/grids/grid/change-icons-custom/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/clipboard-operations/package.json b/samples/grids/grid/clipboard-operations/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/grid/clipboard-operations/package.json +++ b/samples/grids/grid/clipboard-operations/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-auto-sizing/package.json b/samples/grids/grid/column-auto-sizing/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-auto-sizing/package.json +++ b/samples/grids/grid/column-auto-sizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-collapsible-groups/package.json b/samples/grids/grid/column-collapsible-groups/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-collapsible-groups/package.json +++ b/samples/grids/grid/column-collapsible-groups/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-data-types/package.json b/samples/grids/grid/column-data-types/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-data-types/package.json +++ b/samples/grids/grid/column-data-types/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-hiding-options/package.json b/samples/grids/grid/column-hiding-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-hiding-options/package.json +++ b/samples/grids/grid/column-hiding-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-hiding-toolbar-style/package.json b/samples/grids/grid/column-hiding-toolbar-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/grid/column-hiding-toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-hiding-toolbar/package.json b/samples/grids/grid/column-hiding-toolbar/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-hiding-toolbar/package.json +++ b/samples/grids/grid/column-hiding-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-moving-options/package.json b/samples/grids/grid/column-moving-options/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/column-moving-options/package.json +++ b/samples/grids/grid/column-moving-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-moving-styles/package.json b/samples/grids/grid/column-moving-styles/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/column-moving-styles/package.json +++ b/samples/grids/grid/column-moving-styles/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning-options/package.json b/samples/grids/grid/column-pinning-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-pinning-options/package.json +++ b/samples/grids/grid/column-pinning-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning-right-side/package.json b/samples/grids/grid/column-pinning-right-side/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/column-pinning-right-side/package.json +++ b/samples/grids/grid/column-pinning-right-side/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning-styles/package.json b/samples/grids/grid/column-pinning-styles/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-pinning-styles/package.json +++ b/samples/grids/grid/column-pinning-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning/package.json b/samples/grids/grid/column-pinning/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-pinning/package.json +++ b/samples/grids/grid/column-pinning/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-resize-styling/package.json b/samples/grids/grid/column-resize-styling/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-resize-styling/package.json +++ b/samples/grids/grid/column-resize-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-resizing/package.json b/samples/grids/grid/column-resizing/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-resizing/package.json +++ b/samples/grids/grid/column-resizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-selection-group/package.json b/samples/grids/grid/column-selection-group/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-selection-group/package.json +++ b/samples/grids/grid/column-selection-group/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-selection-mode/package.json b/samples/grids/grid/column-selection-mode/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/column-selection-mode/package.json +++ b/samples/grids/grid/column-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-selection-styles/package.json b/samples/grids/grid/column-selection-styles/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-selection-styles/package.json +++ b/samples/grids/grid/column-selection-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-sorting-indicators/package.json b/samples/grids/grid/column-sorting-indicators/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-sorting-indicators/package.json +++ b/samples/grids/grid/column-sorting-indicators/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-sorting-options/package.json b/samples/grids/grid/column-sorting-options/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/column-sorting-options/package.json +++ b/samples/grids/grid/column-sorting-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-sorting-style/package.json b/samples/grids/grid/column-sorting-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/column-sorting-style/package.json +++ b/samples/grids/grid/column-sorting-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/conditional-cell-style-1/package.json b/samples/grids/grid/conditional-cell-style-1/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/conditional-cell-style-1/package.json +++ b/samples/grids/grid/conditional-cell-style-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/conditional-cell-style-2/package.json b/samples/grids/grid/conditional-cell-style-2/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/conditional-cell-style-2/package.json +++ b/samples/grids/grid/conditional-cell-style-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/conditional-row-selectors/package.json b/samples/grids/grid/conditional-row-selectors/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/conditional-row-selectors/package.json +++ b/samples/grids/grid/conditional-row-selectors/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/custom-context-menu/package.json b/samples/grids/grid/custom-context-menu/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/grid/custom-context-menu/package.json +++ b/samples/grids/grid/custom-context-menu/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/custom-filtering/package.json b/samples/grids/grid/custom-filtering/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/grid/custom-filtering/package.json +++ b/samples/grids/grid/custom-filtering/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-batch-editing-actions/package.json b/samples/grids/grid/data-batch-editing-actions/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/data-batch-editing-actions/package.json +++ b/samples/grids/grid/data-batch-editing-actions/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-exporting-indicator/package.json b/samples/grids/grid/data-exporting-indicator/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/grid/data-exporting-indicator/package.json +++ b/samples/grids/grid/data-exporting-indicator/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-paste-options/package.json b/samples/grids/grid/data-paste-options/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/grid/data-paste-options/package.json +++ b/samples/grids/grid/data-paste-options/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-performance-virtualization/package.json b/samples/grids/grid/data-performance-virtualization/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/data-performance-virtualization/package.json +++ b/samples/grids/grid/data-performance-virtualization/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-searching/package.json b/samples/grids/grid/data-searching/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/grid/data-searching/package.json +++ b/samples/grids/grid/data-searching/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summaries-custom/package.json b/samples/grids/grid/data-summaries-custom/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/grid/data-summaries-custom/package.json +++ b/samples/grids/grid/data-summaries-custom/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summary-formatter/package.json b/samples/grids/grid/data-summary-formatter/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/data-summary-formatter/package.json +++ b/samples/grids/grid/data-summary-formatter/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summary-options/package.json b/samples/grids/grid/data-summary-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/data-summary-options/package.json +++ b/samples/grids/grid/data-summary-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/data-summary-template/package.json +++ b/samples/grids/grid/data-summary-template/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validation-style/package.json b/samples/grids/grid/data-validation-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/data-validation-style/package.json +++ b/samples/grids/grid/data-validation-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validator-service-cross-field/package.json b/samples/grids/grid/data-validator-service-cross-field/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/data-validator-service-cross-field/package.json +++ b/samples/grids/grid/data-validator-service-cross-field/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/data-validator-service-extended/package.json +++ b/samples/grids/grid/data-validator-service-extended/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/data-validator-service/package.json +++ b/samples/grids/grid/data-validator-service/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-columns/package.json b/samples/grids/grid/editing-columns/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/editing-columns/package.json +++ b/samples/grids/grid/editing-columns/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-events/package.json b/samples/grids/grid/editing-events/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/editing-events/package.json +++ b/samples/grids/grid/editing-events/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-excel-style-custom/package.json b/samples/grids/grid/editing-excel-style-custom/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/grid/editing-excel-style-custom/package.json +++ b/samples/grids/grid/editing-excel-style-custom/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-excel-style/package.json b/samples/grids/grid/editing-excel-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/editing-excel-style/package.json +++ b/samples/grids/grid/editing-excel-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-lifecycle/package.json b/samples/grids/grid/editing-lifecycle/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/editing-lifecycle/package.json +++ b/samples/grids/grid/editing-lifecycle/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-exporting/package.json b/samples/grids/grid/excel-exporting/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/excel-exporting/package.json +++ b/samples/grids/grid/excel-exporting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-sample-1/package.json b/samples/grids/grid/excel-style-filtering-sample-1/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-sample-2/package.json b/samples/grids/grid/excel-style-filtering-sample-2/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-sample-3/package.json b/samples/grids/grid/excel-style-filtering-sample-3/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-style/package.json b/samples/grids/grid/excel-style-filtering-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/excel-style-filtering-style/package.json +++ b/samples/grids/grid/excel-style-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/external-advanced-filtering/package.json b/samples/grids/grid/external-advanced-filtering/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/external-advanced-filtering/package.json +++ b/samples/grids/grid/external-advanced-filtering/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/filtering-options/package.json b/samples/grids/grid/filtering-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/filtering-options/package.json +++ b/samples/grids/grid/filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/filtering-strategy/package.json b/samples/grids/grid/filtering-strategy/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/filtering-strategy/package.json +++ b/samples/grids/grid/filtering-strategy/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/filtering-style/package.json +++ b/samples/grids/grid/filtering-style/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/finjs/package.json b/samples/grids/grid/finjs/package.json index 88ca5ded9c..125c04c72b 100644 --- a/samples/grids/grid/finjs/package.json +++ b/samples/grids/grid/finjs/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-custom/package.json b/samples/grids/grid/groupby-custom/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/grid/groupby-custom/package.json +++ b/samples/grids/grid/groupby-custom/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-expressions/package.json b/samples/grids/grid/groupby-expressions/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/groupby-expressions/package.json +++ b/samples/grids/grid/groupby-expressions/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-paging/package.json b/samples/grids/grid/groupby-paging/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/groupby-paging/package.json +++ b/samples/grids/grid/groupby-paging/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-styling/package.json b/samples/grids/grid/groupby-styling/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/groupby-styling/package.json +++ b/samples/grids/grid/groupby-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-summary-options/package.json b/samples/grids/grid/groupby-summary-options/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/groupby-summary-options/package.json +++ b/samples/grids/grid/groupby-summary-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-summary-styling/package.json b/samples/grids/grid/groupby-summary-styling/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/groupby-summary-styling/package.json +++ b/samples/grids/grid/groupby-summary-styling/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/infinite-scroll/package.json b/samples/grids/grid/infinite-scroll/package.json index 8e3ab9a468..05c158bf91 100644 --- a/samples/grids/grid/infinite-scroll/package.json +++ b/samples/grids/grid/infinite-scroll/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "rxjs": "7.8.1", "tslib": "^2.0.0" diff --git a/samples/grids/grid/keyboard-custom-navigation/package.json b/samples/grids/grid/keyboard-custom-navigation/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/keyboard-custom-navigation/package.json +++ b/samples/grids/grid/keyboard-custom-navigation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/keyboard-mrl-navigation/package.json b/samples/grids/grid/keyboard-mrl-navigation/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/package.json +++ b/samples/grids/grid/keyboard-mrl-navigation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/keyboard-navigation-guide/package.json b/samples/grids/grid/keyboard-navigation-guide/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/grid/keyboard-navigation-guide/package.json +++ b/samples/grids/grid/keyboard-navigation-guide/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/layout-display-density/package.json b/samples/grids/grid/layout-display-density/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/layout-display-density/package.json +++ b/samples/grids/grid/layout-display-density/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/master-detail/package.json b/samples/grids/grid/master-detail/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/master-detail/package.json +++ b/samples/grids/grid/master-detail/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-cell-selection-mode/package.json b/samples/grids/grid/multi-cell-selection-mode/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/grid/multi-cell-selection-mode/package.json +++ b/samples/grids/grid/multi-cell-selection-mode/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-export/package.json b/samples/grids/grid/multi-column-headers-export/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/multi-column-headers-export/package.json +++ b/samples/grids/grid/multi-column-headers-export/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-overview/package.json b/samples/grids/grid/multi-column-headers-overview/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/multi-column-headers-overview/package.json +++ b/samples/grids/grid/multi-column-headers-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-styling/package.json b/samples/grids/grid/multi-column-headers-styling/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/multi-column-headers-styling/package.json +++ b/samples/grids/grid/multi-column-headers-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-template/package.json b/samples/grids/grid/multi-column-headers-template/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/multi-column-headers-template/package.json +++ b/samples/grids/grid/multi-column-headers-template/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-row-layout-options/package.json b/samples/grids/grid/multi-row-layout-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/multi-row-layout-options/package.json +++ b/samples/grids/grid/multi-row-layout-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-row-layout-style/package.json b/samples/grids/grid/multi-row-layout-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/multi-row-layout-style/package.json +++ b/samples/grids/grid/multi-row-layout-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/overview/package.json b/samples/grids/grid/overview/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/overview/package.json +++ b/samples/grids/grid/overview/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/paste/package.json b/samples/grids/grid/paste/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/paste/package.json +++ b/samples/grids/grid/paste/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/remote-paging-data/package.json b/samples/grids/grid/remote-paging-data/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/remote-paging-data/package.json +++ b/samples/grids/grid/remote-paging-data/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/remote-paging-grid/package.json b/samples/grids/grid/remote-paging-grid/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/grid/remote-paging-grid/package.json +++ b/samples/grids/grid/remote-paging-grid/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-adding/package.json b/samples/grids/grid/row-adding/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/row-adding/package.json +++ b/samples/grids/grid/row-adding/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-classes/package.json b/samples/grids/grid/row-classes/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/row-classes/package.json +++ b/samples/grids/grid/row-classes/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-drag-base/package.json b/samples/grids/grid/row-drag-base/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/grid/row-drag-base/package.json +++ b/samples/grids/grid/row-drag-base/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-editing-options/package.json b/samples/grids/grid/row-editing-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/row-editing-options/package.json +++ b/samples/grids/grid/row-editing-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-editing-style/package.json b/samples/grids/grid/row-editing-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/row-editing-style/package.json +++ b/samples/grids/grid/row-editing-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/row-paging-basic/package.json +++ b/samples/grids/grid/row-paging-basic/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-paging-options/package.json b/samples/grids/grid/row-paging-options/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/row-paging-options/package.json +++ b/samples/grids/grid/row-paging-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-drag/package.json b/samples/grids/grid/row-pinning-drag/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/row-pinning-drag/package.json +++ b/samples/grids/grid/row-pinning-drag/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-extra-column/package.json b/samples/grids/grid/row-pinning-extra-column/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/row-pinning-extra-column/package.json +++ b/samples/grids/grid/row-pinning-extra-column/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-options/package.json b/samples/grids/grid/row-pinning-options/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/row-pinning-options/package.json +++ b/samples/grids/grid/row-pinning-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-style/package.json b/samples/grids/grid/row-pinning-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/row-pinning-style/package.json +++ b/samples/grids/grid/row-pinning-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-reorder/package.json b/samples/grids/grid/row-reorder/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/row-reorder/package.json +++ b/samples/grids/grid/row-reorder/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-selection-mode/package.json b/samples/grids/grid/row-selection-mode/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/row-selection-mode/package.json +++ b/samples/grids/grid/row-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-selection-template-excel/package.json b/samples/grids/grid/row-selection-template-excel/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/row-selection-template-excel/package.json +++ b/samples/grids/grid/row-selection-template-excel/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-selection-template-numbers/package.json b/samples/grids/grid/row-selection-template-numbers/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/row-selection-template-numbers/package.json +++ b/samples/grids/grid/row-selection-template-numbers/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-styles/package.json b/samples/grids/grid/row-styles/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/grid/row-styles/package.json +++ b/samples/grids/grid/row-styles/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/state-persistence-about/package.json b/samples/grids/grid/state-persistence-about/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/grid/state-persistence-about/package.json +++ b/samples/grids/grid/state-persistence-about/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/state-persistence-main/package.json b/samples/grids/grid/state-persistence-main/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/grid/state-persistence-main/package.json +++ b/samples/grids/grid/state-persistence-main/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/styling-custom-CSS/package.json b/samples/grids/grid/styling-custom-CSS/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/styling-custom-CSS/package.json +++ b/samples/grids/grid/styling-custom-CSS/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-1/package.json b/samples/grids/grid/toolbar-sample-1/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/toolbar-sample-1/package.json +++ b/samples/grids/grid/toolbar-sample-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-2/package.json b/samples/grids/grid/toolbar-sample-2/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/toolbar-sample-2/package.json +++ b/samples/grids/grid/toolbar-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-3/package.json b/samples/grids/grid/toolbar-sample-3/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/toolbar-sample-3/package.json +++ b/samples/grids/grid/toolbar-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-4/package.json b/samples/grids/grid/toolbar-sample-4/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/grid/toolbar-sample-4/package.json +++ b/samples/grids/grid/toolbar-sample-4/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-style/package.json b/samples/grids/grid/toolbar-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/grid/toolbar-style/package.json +++ b/samples/grids/grid/toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/action-strip/package.json b/samples/grids/hierarchical-grid/action-strip/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/action-strip/package.json +++ b/samples/grids/hierarchical-grid/action-strip/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/package.json b/samples/grids/hierarchical-grid/cell-editing-sample/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/package.json b/samples/grids/hierarchical-grid/cell-editing-styling/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/package.json b/samples/grids/hierarchical-grid/cell-selection-mode/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/package.json b/samples/grids/hierarchical-grid/cell-selection-overview/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-selection-style/package.json b/samples/grids/hierarchical-grid/cell-selection-style/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-selection-styling/package.json b/samples/grids/hierarchical-grid/cell-selection-styling/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/hierarchical-grid/cell-selection-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-styling/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/package.json b/samples/grids/hierarchical-grid/column-auto-sizing/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/package.json +++ b/samples/grids/hierarchical-grid/column-auto-sizing/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-moving-options/package.json b/samples/grids/hierarchical-grid/column-moving-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/package.json +++ b/samples/grids/hierarchical-grid/column-moving-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-moving-styles/package.json b/samples/grids/hierarchical-grid/column-moving-styles/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/package.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-pinning-options/package.json b/samples/grids/hierarchical-grid/column-pinning-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/package.json b/samples/grids/hierarchical-grid/column-pinning-styles/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-pinning/package.json b/samples/grids/hierarchical-grid/column-pinning/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-pinning/package.json +++ b/samples/grids/hierarchical-grid/column-pinning/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-resize-styling/package.json b/samples/grids/hierarchical-grid/column-resize-styling/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/package.json +++ b/samples/grids/hierarchical-grid/column-resize-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-resizing/package.json b/samples/grids/hierarchical-grid/column-resizing/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-resizing/package.json +++ b/samples/grids/hierarchical-grid/column-resizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-selection-group/package.json b/samples/grids/hierarchical-grid/column-selection-group/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/package.json +++ b/samples/grids/hierarchical-grid/column-selection-group/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-selection-mode/package.json b/samples/grids/hierarchical-grid/column-selection-mode/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-selection-styles/package.json b/samples/grids/hierarchical-grid/column-selection-styles/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/package.json +++ b/samples/grids/hierarchical-grid/column-selection-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-sorting-options/package.json b/samples/grids/hierarchical-grid/column-sorting-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-sorting-style/package.json b/samples/grids/hierarchical-grid/column-sorting-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/custom-filtering/package.json b/samples/grids/hierarchical-grid/custom-filtering/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/package.json +++ b/samples/grids/hierarchical-grid/custom-filtering/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/package.json b/samples/grids/hierarchical-grid/data-summary-formatter/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/package.json +++ b/samples/grids/hierarchical-grid/data-summary-formatter/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-summary-options/package.json b/samples/grids/hierarchical-grid/data-summary-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-summary-template/package.json b/samples/grids/hierarchical-grid/data-summary-template/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/package.json +++ b/samples/grids/hierarchical-grid/data-summary-template/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/editing-columns/package.json b/samples/grids/hierarchical-grid/editing-columns/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/editing-columns/package.json +++ b/samples/grids/hierarchical-grid/editing-columns/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/editing-events/package.json b/samples/grids/hierarchical-grid/editing-events/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/editing-events/package.json +++ b/samples/grids/hierarchical-grid/editing-events/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/package.json b/samples/grids/hierarchical-grid/editing-lifecycle/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/package.json +++ b/samples/grids/hierarchical-grid/editing-lifecycle/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-exporting/package.json b/samples/grids/hierarchical-grid/excel-exporting/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/package.json +++ b/samples/grids/hierarchical-grid/excel-exporting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/filtering-options/package.json b/samples/grids/hierarchical-grid/filtering-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/filtering-options/package.json +++ b/samples/grids/hierarchical-grid/filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/filtering-style/package.json b/samples/grids/hierarchical-grid/filtering-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/filtering-style/package.json +++ b/samples/grids/hierarchical-grid/filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/layout-display-density/package.json b/samples/grids/hierarchical-grid/layout-display-density/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/package.json +++ b/samples/grids/hierarchical-grid/layout-display-density/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/overview/package.json b/samples/grids/hierarchical-grid/overview/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/overview/package.json +++ b/samples/grids/hierarchical-grid/overview/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/package.json b/samples/grids/hierarchical-grid/remote-paging-sample/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/hierarchical-grid/remote-paging-sample/package.json +++ b/samples/grids/hierarchical-grid/remote-paging-sample/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-adding/package.json b/samples/grids/hierarchical-grid/row-adding/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/row-adding/package.json +++ b/samples/grids/hierarchical-grid/row-adding/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-classes/package.json b/samples/grids/hierarchical-grid/row-classes/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/row-classes/package.json +++ b/samples/grids/hierarchical-grid/row-classes/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-drag-base/package.json b/samples/grids/hierarchical-grid/row-drag-base/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/package.json +++ b/samples/grids/hierarchical-grid/row-drag-base/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-editing-options/package.json b/samples/grids/hierarchical-grid/row-editing-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/package.json +++ b/samples/grids/hierarchical-grid/row-editing-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-editing-style/package.json b/samples/grids/hierarchical-grid/row-editing-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/package.json +++ b/samples/grids/hierarchical-grid/row-editing-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-pinning-options/package.json b/samples/grids/hierarchical-grid/row-pinning-options/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-pinning-style/package.json b/samples/grids/hierarchical-grid/row-pinning-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-reorder/package.json b/samples/grids/hierarchical-grid/row-reorder/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/row-reorder/package.json +++ b/samples/grids/hierarchical-grid/row-reorder/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-selection-mode/package.json b/samples/grids/hierarchical-grid/row-selection-mode/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-styles/package.json b/samples/grids/hierarchical-grid/row-styles/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/row-styles/package.json +++ b/samples/grids/hierarchical-grid/row-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/state-persistence-about/package.json b/samples/grids/hierarchical-grid/state-persistence-about/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-about/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/state-persistence-main/package.json b/samples/grids/hierarchical-grid/state-persistence-main/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-main/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-1/package.json b/samples/grids/hierarchical-grid/toolbar-sample-1/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-1/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-2/package.json b/samples/grids/hierarchical-grid/toolbar-sample-2/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-2/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-style/package.json b/samples/grids/hierarchical-grid/toolbar-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/list/add-list-items/package.json b/samples/grids/list/add-list-items/package.json index b10543244a..194c816724 100644 --- a/samples/grids/list/add-list-items/package.json +++ b/samples/grids/list/add-list-items/package.json @@ -24,7 +24,7 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/grids/pivot-grid/aggregate-max-sales/package.json b/samples/grids/pivot-grid/aggregate-max-sales/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/package.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/aggregate-units-sold/package.json b/samples/grids/pivot-grid/aggregate-units-sold/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/package.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/basic/package.json b/samples/grids/pivot-grid/basic/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/pivot-grid/basic/package.json +++ b/samples/grids/pivot-grid/basic/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/data-persistence-noop/package.json b/samples/grids/pivot-grid/data-persistence-noop/package.json index 5faa9bd163..cea0501702 100644 --- a/samples/grids/pivot-grid/data-persistence-noop/package.json +++ b/samples/grids/pivot-grid/data-persistence-noop/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/data-selector/package.json b/samples/grids/pivot-grid/data-selector/package.json index d9b98fc082..b2f62a89fa 100644 --- a/samples/grids/pivot-grid/data-selector/package.json +++ b/samples/grids/pivot-grid/data-selector/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/features/package.json b/samples/grids/pivot-grid/features/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/pivot-grid/features/package.json +++ b/samples/grids/pivot-grid/features/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/remote/package.json b/samples/grids/pivot-grid/remote/package.json index d9b98fc082..b2f62a89fa 100644 --- a/samples/grids/pivot-grid/remote/package.json +++ b/samples/grids/pivot-grid/remote/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/state-persistence-about/package.json b/samples/grids/pivot-grid/state-persistence-about/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/pivot-grid/state-persistence-about/package.json +++ b/samples/grids/pivot-grid/state-persistence-about/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/state-persistence-main/package.json b/samples/grids/pivot-grid/state-persistence-main/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/pivot-grid/state-persistence-main/package.json +++ b/samples/grids/pivot-grid/state-persistence-main/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/action-strip/package.json b/samples/grids/tree-grid/action-strip/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/action-strip/package.json +++ b/samples/grids/tree-grid/action-strip/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/advanced-filtering-options/package.json b/samples/grids/tree-grid/advanced-filtering-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/package.json +++ b/samples/grids/tree-grid/advanced-filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/advanced-filtering-style/package.json b/samples/grids/tree-grid/advanced-filtering-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/package.json +++ b/samples/grids/tree-grid/advanced-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/cell-editing-sample/package.json +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-editing-styling/package.json b/samples/grids/tree-grid/cell-editing-styling/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/cell-editing-styling/package.json +++ b/samples/grids/tree-grid/cell-editing-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-selection-mode/package.json b/samples/grids/tree-grid/cell-selection-mode/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/cell-selection-mode/package.json +++ b/samples/grids/tree-grid/cell-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-selection-style/package.json b/samples/grids/tree-grid/cell-selection-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/cell-selection-style/package.json +++ b/samples/grids/tree-grid/cell-selection-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/clipboard-operations/package.json b/samples/grids/tree-grid/clipboard-operations/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/tree-grid/clipboard-operations/package.json +++ b/samples/grids/tree-grid/clipboard-operations/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-auto-sizing/package.json b/samples/grids/tree-grid/column-auto-sizing/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-auto-sizing/package.json +++ b/samples/grids/tree-grid/column-auto-sizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-collapsible-groups/package.json b/samples/grids/tree-grid/column-collapsible-groups/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/package.json +++ b/samples/grids/tree-grid/column-collapsible-groups/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-data-types/package.json b/samples/grids/tree-grid/column-data-types/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/tree-grid/column-data-types/package.json +++ b/samples/grids/tree-grid/column-data-types/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-hiding-toolbar/package.json b/samples/grids/tree-grid/column-hiding-toolbar/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-moving-options/package.json b/samples/grids/tree-grid/column-moving-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-moving-options/package.json +++ b/samples/grids/tree-grid/column-moving-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-moving-styles/package.json b/samples/grids/tree-grid/column-moving-styles/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-moving-styles/package.json +++ b/samples/grids/tree-grid/column-moving-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-options/package.json b/samples/grids/tree-grid/column-pinning-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-pinning-options/package.json +++ b/samples/grids/tree-grid/column-pinning-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-right-side/package.json b/samples/grids/tree-grid/column-pinning-right-side/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/package.json +++ b/samples/grids/tree-grid/column-pinning-right-side/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-styles/package.json b/samples/grids/tree-grid/column-pinning-styles/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-pinning-styles/package.json +++ b/samples/grids/tree-grid/column-pinning-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-toolbar/package.json b/samples/grids/tree-grid/column-pinning-toolbar/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/package.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning/package.json b/samples/grids/tree-grid/column-pinning/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-pinning/package.json +++ b/samples/grids/tree-grid/column-pinning/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-resize-styling/package.json b/samples/grids/tree-grid/column-resize-styling/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-resize-styling/package.json +++ b/samples/grids/tree-grid/column-resize-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-resizing/package.json b/samples/grids/tree-grid/column-resizing/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-resizing/package.json +++ b/samples/grids/tree-grid/column-resizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-group/package.json b/samples/grids/tree-grid/column-selection-group/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-selection-group/package.json +++ b/samples/grids/tree-grid/column-selection-group/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-mode/package.json b/samples/grids/tree-grid/column-selection-mode/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/column-selection-mode/package.json +++ b/samples/grids/tree-grid/column-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-style/package.json b/samples/grids/tree-grid/column-selection-style/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/tree-grid/column-selection-style/package.json +++ b/samples/grids/tree-grid/column-selection-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-styles/package.json b/samples/grids/tree-grid/column-selection-styles/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-selection-styles/package.json +++ b/samples/grids/tree-grid/column-selection-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-sorting-indicators/package.json b/samples/grids/tree-grid/column-sorting-indicators/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/package.json +++ b/samples/grids/tree-grid/column-sorting-indicators/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-sorting-options/package.json b/samples/grids/tree-grid/column-sorting-options/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/column-sorting-options/package.json +++ b/samples/grids/tree-grid/column-sorting-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-sorting-style/package.json b/samples/grids/tree-grid/column-sorting-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/column-sorting-style/package.json +++ b/samples/grids/tree-grid/column-sorting-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/conditional-cell-style-1/package.json b/samples/grids/tree-grid/conditional-cell-style-1/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/conditional-cell-style-2/package.json b/samples/grids/tree-grid/conditional-cell-style-2/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/conditional-row-selectors/package.json b/samples/grids/tree-grid/conditional-row-selectors/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/package.json +++ b/samples/grids/tree-grid/conditional-row-selectors/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/custom-filtering/package.json b/samples/grids/tree-grid/custom-filtering/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/tree-grid/custom-filtering/package.json +++ b/samples/grids/tree-grid/custom-filtering/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-exporting-indicator/package.json b/samples/grids/tree-grid/data-exporting-indicator/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/package.json +++ b/samples/grids/tree-grid/data-exporting-indicator/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-searching/package.json b/samples/grids/tree-grid/data-searching/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/tree-grid/data-searching/package.json +++ b/samples/grids/tree-grid/data-searching/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summaries-custom/package.json b/samples/grids/tree-grid/data-summaries-custom/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/tree-grid/data-summaries-custom/package.json +++ b/samples/grids/tree-grid/data-summaries-custom/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-children/package.json b/samples/grids/tree-grid/data-summary-children/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/data-summary-children/package.json +++ b/samples/grids/tree-grid/data-summary-children/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-formatter/package.json b/samples/grids/tree-grid/data-summary-formatter/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/data-summary-formatter/package.json +++ b/samples/grids/tree-grid/data-summary-formatter/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-options-styling/package.json b/samples/grids/tree-grid/data-summary-options-styling/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/package.json +++ b/samples/grids/tree-grid/data-summary-options-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-options/package.json b/samples/grids/tree-grid/data-summary-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/data-summary-options/package.json +++ b/samples/grids/tree-grid/data-summary-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-template/package.json b/samples/grids/tree-grid/data-summary-template/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/data-summary-template/package.json +++ b/samples/grids/tree-grid/data-summary-template/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/editing-columns/package.json b/samples/grids/tree-grid/editing-columns/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/editing-columns/package.json +++ b/samples/grids/tree-grid/editing-columns/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/editing-events/package.json b/samples/grids/tree-grid/editing-events/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/editing-events/package.json +++ b/samples/grids/tree-grid/editing-events/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/editing-lifecycle/package.json b/samples/grids/tree-grid/editing-lifecycle/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/editing-lifecycle/package.json +++ b/samples/grids/tree-grid/editing-lifecycle/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-exporting/package.json b/samples/grids/tree-grid/excel-exporting/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/excel-exporting/package.json +++ b/samples/grids/tree-grid/excel-exporting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-style/package.json b/samples/grids/tree-grid/excel-style-filtering-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/filtering-options/package.json b/samples/grids/tree-grid/filtering-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/filtering-options/package.json +++ b/samples/grids/tree-grid/filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/filtering-style/package.json b/samples/grids/tree-grid/filtering-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/filtering-style/package.json +++ b/samples/grids/tree-grid/filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/finjs/package.json b/samples/grids/tree-grid/finjs/package.json index 88ca5ded9c..125c04c72b 100644 --- a/samples/grids/tree-grid/finjs/package.json +++ b/samples/grids/tree-grid/finjs/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/package.json b/samples/grids/tree-grid/keyboard-custom-navigation/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/package.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/package.json b/samples/grids/tree-grid/keyboard-navigation-guide/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/tree-grid/keyboard-navigation-guide/package.json +++ b/samples/grids/tree-grid/keyboard-navigation-guide/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/layout-display-density/package.json b/samples/grids/tree-grid/layout-display-density/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/layout-display-density/package.json +++ b/samples/grids/tree-grid/layout-display-density/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/load-on-demand/package.json b/samples/grids/tree-grid/load-on-demand/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/tree-grid/load-on-demand/package.json +++ b/samples/grids/tree-grid/load-on-demand/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/package.json b/samples/grids/tree-grid/multi-cell-selection-mode/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/package.json +++ b/samples/grids/tree-grid/multi-cell-selection-mode/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-export/package.json b/samples/grids/tree-grid/multi-column-headers-export/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/package.json +++ b/samples/grids/tree-grid/multi-column-headers-export/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-overview/package.json b/samples/grids/tree-grid/multi-column-headers-overview/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/package.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-styling/package.json b/samples/grids/tree-grid/multi-column-headers-styling/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/package.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-template/package.json b/samples/grids/tree-grid/multi-column-headers-template/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/package.json +++ b/samples/grids/tree-grid/multi-column-headers-template/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/overview-styling/package.json b/samples/grids/tree-grid/overview-styling/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/overview-styling/package.json +++ b/samples/grids/tree-grid/overview-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/overview/package.json b/samples/grids/tree-grid/overview/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/overview/package.json +++ b/samples/grids/tree-grid/overview/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-adding/package.json b/samples/grids/tree-grid/row-adding/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/row-adding/package.json +++ b/samples/grids/tree-grid/row-adding/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-classes/package.json b/samples/grids/tree-grid/row-classes/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/row-classes/package.json +++ b/samples/grids/tree-grid/row-classes/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-drag-base/package.json b/samples/grids/tree-grid/row-drag-base/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/tree-grid/row-drag-base/package.json +++ b/samples/grids/tree-grid/row-drag-base/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-editing-options/package.json b/samples/grids/tree-grid/row-editing-options/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/row-editing-options/package.json +++ b/samples/grids/tree-grid/row-editing-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-editing-style/package.json b/samples/grids/tree-grid/row-editing-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/row-editing-style/package.json +++ b/samples/grids/tree-grid/row-editing-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-paging-basic/package.json b/samples/grids/tree-grid/row-paging-basic/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/row-paging-basic/package.json +++ b/samples/grids/tree-grid/row-paging-basic/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-paging-options/package.json b/samples/grids/tree-grid/row-paging-options/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/row-paging-options/package.json +++ b/samples/grids/tree-grid/row-paging-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-paging-style/package.json b/samples/grids/tree-grid/row-paging-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/row-paging-style/package.json +++ b/samples/grids/tree-grid/row-paging-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-pinning-extra-column/package.json b/samples/grids/tree-grid/row-pinning-extra-column/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/package.json +++ b/samples/grids/tree-grid/row-pinning-extra-column/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-pinning-options/package.json b/samples/grids/tree-grid/row-pinning-options/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/row-pinning-options/package.json +++ b/samples/grids/tree-grid/row-pinning-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-pinning-style/package.json b/samples/grids/tree-grid/row-pinning-style/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/row-pinning-style/package.json +++ b/samples/grids/tree-grid/row-pinning-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-reorder/package.json b/samples/grids/tree-grid/row-reorder/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/row-reorder/package.json +++ b/samples/grids/tree-grid/row-reorder/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-selection-mode/package.json b/samples/grids/tree-grid/row-selection-mode/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/row-selection-mode/package.json +++ b/samples/grids/tree-grid/row-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-selection-template-excel/package.json b/samples/grids/tree-grid/row-selection-template-excel/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/package.json +++ b/samples/grids/tree-grid/row-selection-template-excel/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-selection-template-numbers/package.json b/samples/grids/tree-grid/row-selection-template-numbers/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/package.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-styles/package.json b/samples/grids/tree-grid/row-styles/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/row-styles/package.json +++ b/samples/grids/tree-grid/row-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/state-persistence-about/package.json b/samples/grids/tree-grid/state-persistence-about/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/tree-grid/state-persistence-about/package.json +++ b/samples/grids/tree-grid/state-persistence-about/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/state-persistence-main/package.json b/samples/grids/tree-grid/state-persistence-main/package.json index 51b19a2a45..59c439beab 100644 --- a/samples/grids/tree-grid/state-persistence-main/package.json +++ b/samples/grids/tree-grid/state-persistence-main/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-sample-1/package.json b/samples/grids/tree-grid/toolbar-sample-1/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/package.json +++ b/samples/grids/tree-grid/toolbar-sample-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-sample-2/package.json b/samples/grids/tree-grid/toolbar-sample-2/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/package.json +++ b/samples/grids/tree-grid/toolbar-sample-2/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-sample-3/package.json b/samples/grids/tree-grid/toolbar-sample-3/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/package.json +++ b/samples/grids/tree-grid/toolbar-sample-3/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-sample-4/package.json b/samples/grids/tree-grid/toolbar-sample-4/package.json index e35e8a9af2..df2b6d36d4 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/package.json +++ b/samples/grids/tree-grid/toolbar-sample-4/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-style/package.json b/samples/grids/tree-grid/toolbar-style/package.json index bcf25d6225..8ab82339e8 100644 --- a/samples/grids/tree-grid/toolbar-style/package.json +++ b/samples/grids/tree-grid/toolbar-style/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/package.json b/samples/grids/tree-grid/using-primary-foreign-keys/package.json index 7527cf9aa1..746ecab235 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/package.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-grids": "5.0.2", - "igniteui-webcomponents-inputs": "5.0.2", - "igniteui-webcomponents-layouts": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-grids": "5.0.3-beta.0", + "igniteui-webcomponents-inputs": "5.0.3-beta.0", + "igniteui-webcomponents-layouts": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/carousel/animations/package.json b/samples/layouts/carousel/animations/package.json index 7126dfd886..8d04f9e75b 100644 --- a/samples/layouts/carousel/animations/package.json +++ b/samples/layouts/carousel/animations/package.json @@ -24,8 +24,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "lit": "^3.2.1", - "lit-html": "^3.2.1", + "lit": "^3.2.0", + "lit-html": "^3.2.0", "tslib": "^2.6.3" }, "devDependencies": { diff --git a/samples/layouts/carousel/components/package.json b/samples/layouts/carousel/components/package.json index 374834efff..3377b52716 100644 --- a/samples/layouts/carousel/components/package.json +++ b/samples/layouts/carousel/components/package.json @@ -24,8 +24,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "lit": "^3.2.1", - "lit-html": "^3.2.1", + "lit": "^3.2.0", + "lit-html": "^3.2.0", "tslib": "^2.6.3" }, "devDependencies": { diff --git a/samples/layouts/carousel/overview/package.json b/samples/layouts/carousel/overview/package.json index de5b858ccc..8d25558349 100644 --- a/samples/layouts/carousel/overview/package.json +++ b/samples/layouts/carousel/overview/package.json @@ -24,8 +24,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "lit": "^3.2.1", - "lit-html": "^3.2.1", + "lit": "^3.2.0", + "lit-html": "^3.2.0", "tslib": "^2.6.3" }, "devDependencies": { diff --git a/samples/layouts/carousel/thumbnail/package.json b/samples/layouts/carousel/thumbnail/package.json index bbf63a6c5c..5eddc045a1 100644 --- a/samples/layouts/carousel/thumbnail/package.json +++ b/samples/layouts/carousel/thumbnail/package.json @@ -24,8 +24,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.1", - "lit": "^3.2.1", - "lit-html": "^3.2.1", + "lit": "^3.2.0", + "lit-html": "^3.2.0", "tslib": "^2.6.3" }, "devDependencies": { diff --git a/samples/layouts/dock-manager/embedding-frames/package.json b/samples/layouts/dock-manager/embedding-frames/package.json index 79769cf173..253db42235 100644 --- a/samples/layouts/dock-manager/embedding-frames/package.json +++ b/samples/layouts/dock-manager/embedding-frames/package.json @@ -24,7 +24,7 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.14.3", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/hiding-panes/package.json b/samples/layouts/dock-manager/hiding-panes/package.json index 207ba326e4..160e6b4faa 100644 --- a/samples/layouts/dock-manager/hiding-panes/package.json +++ b/samples/layouts/dock-manager/hiding-panes/package.json @@ -24,7 +24,7 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.14.3", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/overview/package.json b/samples/layouts/dock-manager/overview/package.json index beb05593b1..26f7f4786d 100644 --- a/samples/layouts/dock-manager/overview/package.json +++ b/samples/layouts/dock-manager/overview/package.json @@ -24,7 +24,7 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.14.3", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/styling/package.json b/samples/layouts/dock-manager/styling/package.json index 15822e9c4e..f3017184e2 100644 --- a/samples/layouts/dock-manager/styling/package.json +++ b/samples/layouts/dock-manager/styling/package.json @@ -26,7 +26,7 @@ "core-js": "^3.6.5", "igniteui-dockmanager": "1.14.3", "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.2", + "igniteui-webcomponents-core": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/updating-panes/package.json b/samples/layouts/dock-manager/updating-panes/package.json index 6aed074b36..a4f9258eda 100644 --- a/samples/layouts/dock-manager/updating-panes/package.json +++ b/samples/layouts/dock-manager/updating-panes/package.json @@ -24,10 +24,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.14.3", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-gauges": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 465568b69b..9bf6214d4e 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 22f1538309..61055aeeee 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 939e0bf42d..2c8d5a63d3 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 20d4e4e526..44ed4db46f 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index e1b374c1a7..fd2918b43f 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 5585489a22..ba468eb8cc 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 352f865c30..dbf6d68d67 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 947b057c40..375b29b7ae 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index be0ff82941..9ce8a51c72 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-all-imagery/package.json b/samples/maps/geo-map/display-all-imagery/package.json index 214d8007c3..0904b25a55 100644 --- a/samples/maps/geo-map/display-all-imagery/package.json +++ b/samples/maps/geo-map/display-all-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 8514fe1673..5e39ca8e5a 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index fb12e43996..a0802f191f 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index c8840f24e8..7891c94753 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index 6bfae4d78f..f1cf1f7a15 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 305224fec7..3c7160d926 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index c1293df4e2..2dbb306fa8 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 152f937fca..6e93d52ff1 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 3d41ffed13..6fb6286722 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index f663e2a277..b0f9461871 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/synchronization/package.json b/samples/maps/geo-map/synchronization/package.json index d4ed1ba543..ab0688777a 100644 --- a/samples/maps/geo-map/synchronization/package.json +++ b/samples/maps/geo-map/synchronization/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index da59ac85ac..42626570b1 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 70b6f6ffd6..21cbc7e4a1 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index f5f92a1dcf..19cd144818 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index d7c570bfb1..63711e20dc 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 12c19b9253..2761221810 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index e62c5f4c2f..332c89ff33 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index e9e36aa46a..8fa89c0542 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 880a8a7e40..3e2d53a663 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.2", - "igniteui-webcomponents-core": "5.0.2", - "igniteui-webcomponents-maps": "5.0.2", + "igniteui-webcomponents-charts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-maps": "5.0.3-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, From f3fa754acf2000dd3fbd33527b8bac84950ba0d4 Mon Sep 17 00:00:00 2001 From: Borislav Traykov Date: Tue, 12 Nov 2024 16:41:02 +0200 Subject: [PATCH 18/63] Re-instate steps for Licensed packages & use npm install npm install instead of npm ci - due to some package balagans --- azure-pipelines/build-pipeline.yml | 66 +++++++++++++++--------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml index 2c50f280e7..a52d8cb6ff 100644 --- a/azure-pipelines/build-pipeline.yml +++ b/azure-pipelines/build-pipeline.yml @@ -46,45 +46,45 @@ stages: customEndpoint: 'public proget' - task: Npm@1 - displayName: 'npm ci --legacy-peer-deps' + displayName: 'npm install --legacy-peer-deps' inputs: command: custom workingDir: '$(Build.SourcesDirectory)' - customCommand: 'ci --legacy-peer-deps' + customCommand: 'install --legacy-peer-deps' customEndpoint: 'public proget' - # - task: Npm@1 - # displayName: 'Register licensed npm registry in .npmrc' - # inputs: - # command: 'custom' - # workingDir: '$(Build.SourcesDirectory)' - # customCommand: 'config -L project set @infragistics:registry=http://proget.infragistics.local:81/npm/IgniteUILicensed/' - # customEndpoint: 'internal licensed proget' + - task: Npm@1 + displayName: 'Register licensed npm registry in .npmrc' + inputs: + command: 'custom' + workingDir: '$(Build.SourcesDirectory)' + customCommand: 'config -L project set @infragistics:registry=http://proget.infragistics.local:81/npm/IgniteUILicensed/' + customEndpoint: 'internal licensed proget' - # - task: PowerShell@2 - # displayName: 'Uninstall all IG trial packages & re-install their licensed variations' - # inputs: - # failOnStderr: true - # showWarnings: true - # workingDirectory: '$(Build.SourcesDirectory)' - # targetType: 'inline' - # script: | - # Get-Content -Path .\.npmrc - # $packageJson = Get-Content -Raw .\package.json | ConvertFrom-Json - # $npmUninstallPackages = "npm uninstall --save " - # $npmInstallPackages = "npm install --legacy-peer-deps " - # $packageJson.dependencies.PSObject.Properties | ` - # Where-Object { - # $_.Name.StartsWith("igniteui-webcomponents-") -or $_.Name.StartsWith("igniteui-dockmanager") ` - # } | ` - # ForEach-Object { ` - # $npmUninstallPackages += $_.Name + " " - # $npmInstallPackages += "@infragistics/" + $_.Name + "@" + $_.Value + " " - # } - # Write-Host $npmUninstallPackages - # Write-Host $npmInstallPackages - # Invoke-Expression -Command “$npmUninstallPackages” - # Invoke-Expression -Command “$npmInstallPackages” + - task: PowerShell@2 + displayName: 'Uninstall all IG trial packages & re-install their licensed variations' + inputs: + failOnStderr: true + showWarnings: true + workingDirectory: '$(Build.SourcesDirectory)' + targetType: 'inline' + script: | + Get-Content -Path .\.npmrc + $packageJson = Get-Content -Raw .\package.json | ConvertFrom-Json + $npmUninstallPackages = "npm uninstall --save " + $npmInstallPackages = "npm install --legacy-peer-deps " + $packageJson.dependencies.PSObject.Properties | ` + Where-Object { + $_.Name.StartsWith("igniteui-webcomponents-") -or $_.Name.StartsWith("igniteui-dockmanager") ` + } | ` + ForEach-Object { ` + $npmUninstallPackages += $_.Name + " " + $npmInstallPackages += "@infragistics/" + $_.Name + "@" + $_.Value + " " + } + Write-Host $npmUninstallPackages + Write-Host $npmInstallPackages + Invoke-Expression -Command “$npmUninstallPackages” + Invoke-Expression -Command “$npmInstallPackages” - task: Npm@1 displayName: 'npm run build' From 882d179a0fa3da17cd75068ac046067904a8e3ac Mon Sep 17 00:00:00 2001 From: Borislav Traykov Date: Tue, 12 Nov 2024 18:33:57 +0200 Subject: [PATCH 19/63] Re-instate licensed packages & use node 18 (#866) --- azure-pipelines/build-pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml index a52d8cb6ff..f1880bacaf 100644 --- a/azure-pipelines/build-pipeline.yml +++ b/azure-pipelines/build-pipeline.yml @@ -35,7 +35,7 @@ stages: displayName: 'Install Node' inputs: versionSource: 'spec' - versionSpec: '16.x' + versionSpec: '18.x' - task: Npm@1 displayName: 'Register licensed npm registry in .npmrc' @@ -58,7 +58,7 @@ stages: inputs: command: 'custom' workingDir: '$(Build.SourcesDirectory)' - customCommand: 'config -L project set @infragistics:registry=http://proget.infragistics.local:81/npm/IgniteUILicensed/' + customCommand: 'config -L project set @infragistics:registry=https://packages.infragistics.com/npm/js-licensed/' customEndpoint: 'internal licensed proget' - task: PowerShell@2 From 831387d3ca54b228034c858392a062a669d3e01c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 08:12:05 +0000 Subject: [PATCH 20/63] chore(deps): bump follow-redirects from 1.15.4 to 1.15.9 Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.4 to 1.15.9. - [Release notes](https://github.com/follow-redirects/follow-redirects/releases) - [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.15.4...v1.15.9) --- updated-dependencies: - dependency-name: follow-redirects dependency-type: indirect ... Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index d2cd114a9f..bde070b6a5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7318,9 +7318,9 @@ } }, "node_modules/follow-redirects": { - "version": "1.15.4", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.4.tgz", - "integrity": "sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==", + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", "dev": true, "funding": [ { From 77eb9a6d9af9bbdb36a70a7d033236b9a3650ea0 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 14:56:47 +0200 Subject: [PATCH 21/63] Adding changes from build igniteui-xplat-examples-output+PRs_2024.11.14.1 (#873) --- .../annotations-all/package.json | 2 +- .../annotations-callouts/package.json | 2 +- .../annotations-crosshairs/package.json | 2 +- .../annotations-custom/package.json | 2 +- .../annotations-final-value/package.json | 2 +- .../annotations-highlighting/package.json | 2 +- .../category-chart/axis-gap/package.json | 2 +- .../axis-gridlines/package.json | 2 +- .../category-chart/axis-inverted/package.json | 2 +- .../category-chart/axis-labels/package.json | 2 +- .../axis-locations/package.json | 2 +- .../category-chart/axis-overlap/package.json | 2 +- .../category-chart/axis-range/package.json | 2 +- .../axis-tickmarks/package.json | 2 +- .../chart-highlight-filter/package.json | 2 +- .../column-chart-with-tooltips/package.json | 2 +- .../data-aggregations/package.json | 2 +- .../category-chart/data-filter/package.json | 2 +- .../data-tooltip-positioning/package.json | 2 +- .../highlighting-behavior/package.json | 2 +- .../highlighting-mode/package.json | 2 +- .../marker-options/package.json | 2 +- .../selection-multiple-modes/package.json | 2 +- .../category-chart/value-lines/package.json | 2 +- .../axis-label-rotation/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../chart-highlight-filter/package.json | 2 +- .../data-chart/radial-label-mode/package.json | 2 +- .../data-chart/transition-event/package.json | 2 +- .../data-pie-chart/animation/package.json | 2 +- .../data-pie-chart/highlighting/package.json | 2 +- .../charts/data-pie-chart/others/package.json | 2 +- .../data-pie-chart/selection/package.json | 2 +- samples/charts/sparkline/markers/package.json | 2 +- .../sparkline/normal-range/package.json | 2 +- .../charts/sparkline/trendlines/package.json | 2 +- .../sparkline/unknown-values/package.json | 2 +- samples/charts/toolbar/theming/package.json | 2 +- .../charts/tree-map/highlighting/package.json | 2 +- samples/charts/tree-map/layout/package.json | 2 +- .../grids/grid/action-strip/src/NwindData.ts | 550 ------------------ .../src/NwindData.ts | 550 ------------------ .../advanced-filtering-style/src/NwindData.ts | 550 ------------------ .../grid/binding-composite-data/package.json | 2 +- .../grid/binding-nested-data-1/package.json | 2 +- .../grids/grid/cascading-combo/package.json | 2 +- .../grid/cell-editing-sample/package.json | 2 +- .../cell-editing-styling/src/NwindData.ts | 550 ------------------ .../grid/cell-selection-mode/package.json | 2 +- .../grid/cell-selection-mode/src/NwindData.ts | 550 ------------------ .../grid/column-moving-options/package.json | 2 +- .../grid/column-moving-styles/package.json | 2 +- .../column-pinning-right-side/package.json | 2 +- .../grid/column-selection-mode/package.json | 2 +- .../grid/column-sorting-options/package.json | 2 +- .../data-batch-editing-actions/package.json | 2 +- .../src/NwindData.ts | 550 ------------------ .../package.json | 2 +- .../data-summary-formatter/src/NwindData.ts | 550 ------------------ .../data-summary-options/src/NwindData.ts | 550 ------------------ .../grid/data-summary-template/package.json | 2 +- .../data-summary-template/src/NwindData.ts | 550 ------------------ .../data-validation-style/src/NwindData.ts | 550 ------------------ .../src/NwindData.ts | 550 ------------------ .../package.json | 2 +- .../src/NwindData.ts | 550 ------------------ .../grid/data-validator-service/package.json | 2 +- .../grid/editing-columns/src/NwindData.ts | 550 ------------------ .../grid/editing-events/src/NwindData.ts | 550 ------------------ .../grid/editing-excel-style/src/NwindData.ts | 550 ------------------ .../grid/editing-lifecycle/src/NwindData.ts | 550 ------------------ .../package.json | 2 +- .../src/NwindData.ts | 550 ------------------ .../src/NwindData.ts | 550 ------------------ .../src/NwindData.ts | 550 ------------------ .../src/NwindData.ts | 550 ------------------ .../src/NwindData.ts | 550 ------------------ .../grid/filtering-options/src/NwindData.ts | 550 ------------------ .../grid/filtering-strategy/src/NwindData.ts | 550 ------------------ .../grids/grid/filtering-style/package.json | 2 +- .../grid/filtering-style/src/NwindData.ts | 550 ------------------ .../grid/groupby-summary-options/package.json | 2 +- .../grid/groupby-summary-styling/package.json | 2 +- .../src/NwindData.ts | 550 ------------------ .../grid/layout-display-density/package.json | 2 +- .../package.json | 2 +- samples/grids/grid/overview/src/NwindData.ts | 550 ------------------ samples/grids/grid/paste/package.json | 2 +- .../grid/remote-paging-data/src/NwindData.ts | 550 ------------------ .../grids/grid/row-adding/src/NwindData.ts | 550 ------------------ .../grids/grid/row-classes/src/NwindData.ts | 550 ------------------ .../grid/row-editing-options/src/NwindData.ts | 550 ------------------ .../grid/row-editing-style/src/NwindData.ts | 550 ------------------ .../grid/row-editing-style/src/index.css | 7 +- .../grids/grid/row-paging-basic/package.json | 2 +- .../grid/row-paging-options/package.json | 2 +- .../grid/row-pinning-options/package.json | 2 +- .../grid/row-selection-mode/package.json | 2 +- .../package.json | 2 +- samples/grids/grid/row-styles/package.json | 2 +- .../cell-editing-sample/package.json | 2 +- .../cell-editing-styling/src/NwindData.ts | 550 ------------------ .../cell-selection-mode/package.json | 2 +- .../cell-selection-overview/package.json | 2 +- .../cell-selection-style/package.json | 2 +- .../column-selection-mode/package.json | 2 +- .../data-summary-template/package.json | 2 +- .../editing-columns/src/NwindData.ts | 550 ------------------ .../editing-events/src/NwindData.ts | 550 ------------------ .../layout-display-density/package.json | 2 +- .../package.json | 2 +- .../row-pinning-extra-column/package.json | 2 +- .../row-pinning-options/package.json | 2 +- .../row-selection-mode/package.json | 2 +- .../package.json | 2 +- .../cell-editing-sample/package.json | 2 +- .../cell-editing-sample/src/index.ts | 3 +- .../cell-selection-mode/package.json | 2 +- .../column-selection-mode/package.json | 2 +- .../column-sorting-options/package.json | 2 +- .../data-summary-children/package.json | 2 +- .../data-summary-template/package.json | 2 +- .../package.json | 2 +- .../layout-display-density/package.json | 2 +- .../package.json | 2 +- .../tree-grid/row-editing-style/src/index.css | 7 +- .../tree-grid/row-paging-options/package.json | 2 +- .../row-pinning-options/package.json | 2 +- .../tree-grid/row-selection-mode/package.json | 2 +- .../tree-grid/toolbar-sample-1/package.json | 2 +- .../tree-grid/toolbar-sample-3/package.json | 2 +- .../tree-grid/toolbar-style/package.json | 2 +- 133 files changed, 108 insertions(+), 18801 deletions(-) delete mode 100644 samples/grids/grid/action-strip/src/NwindData.ts delete mode 100644 samples/grids/grid/advanced-filtering-options/src/NwindData.ts delete mode 100644 samples/grids/grid/advanced-filtering-style/src/NwindData.ts delete mode 100644 samples/grids/grid/cell-editing-styling/src/NwindData.ts delete mode 100644 samples/grids/grid/cell-selection-mode/src/NwindData.ts delete mode 100644 samples/grids/grid/data-batch-editing-actions/src/NwindData.ts delete mode 100644 samples/grids/grid/data-summary-formatter/src/NwindData.ts delete mode 100644 samples/grids/grid/data-summary-options/src/NwindData.ts delete mode 100644 samples/grids/grid/data-summary-template/src/NwindData.ts delete mode 100644 samples/grids/grid/data-validation-style/src/NwindData.ts delete mode 100644 samples/grids/grid/data-validator-service-cross-field/src/NwindData.ts delete mode 100644 samples/grids/grid/data-validator-service-extended/src/NwindData.ts delete mode 100644 samples/grids/grid/editing-columns/src/NwindData.ts delete mode 100644 samples/grids/grid/editing-events/src/NwindData.ts delete mode 100644 samples/grids/grid/editing-excel-style/src/NwindData.ts delete mode 100644 samples/grids/grid/editing-lifecycle/src/NwindData.ts delete mode 100644 samples/grids/grid/excel-style-filtering-sample-1/src/NwindData.ts delete mode 100644 samples/grids/grid/excel-style-filtering-sample-2/src/NwindData.ts delete mode 100644 samples/grids/grid/excel-style-filtering-sample-3/src/NwindData.ts delete mode 100644 samples/grids/grid/excel-style-filtering-style/src/NwindData.ts delete mode 100644 samples/grids/grid/external-advanced-filtering/src/NwindData.ts delete mode 100644 samples/grids/grid/filtering-options/src/NwindData.ts delete mode 100644 samples/grids/grid/filtering-strategy/src/NwindData.ts delete mode 100644 samples/grids/grid/filtering-style/src/NwindData.ts delete mode 100644 samples/grids/grid/keyboard-custom-navigation/src/NwindData.ts delete mode 100644 samples/grids/grid/overview/src/NwindData.ts delete mode 100644 samples/grids/grid/remote-paging-data/src/NwindData.ts delete mode 100644 samples/grids/grid/row-adding/src/NwindData.ts delete mode 100644 samples/grids/grid/row-classes/src/NwindData.ts delete mode 100644 samples/grids/grid/row-editing-options/src/NwindData.ts delete mode 100644 samples/grids/grid/row-editing-style/src/NwindData.ts delete mode 100644 samples/grids/hierarchical-grid/cell-editing-styling/src/NwindData.ts delete mode 100644 samples/grids/hierarchical-grid/editing-columns/src/NwindData.ts delete mode 100644 samples/grids/hierarchical-grid/editing-events/src/NwindData.ts diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 8a1edd5bd3..3265726c77 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-charts": "5.0.3-beta.0", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/action-strip/src/NwindData.ts b/samples/grids/grid/action-strip/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/action-strip/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/advanced-filtering-options/src/NwindData.ts b/samples/grids/grid/advanced-filtering-options/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/advanced-filtering-options/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/advanced-filtering-style/src/NwindData.ts b/samples/grids/grid/advanced-filtering-style/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/advanced-filtering-style/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/binding-composite-data/package.json +++ b/samples/grids/grid/binding-composite-data/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/binding-nested-data-1/package.json +++ b/samples/grids/grid/binding-nested-data-1/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/cascading-combo/package.json b/samples/grids/grid/cascading-combo/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/cascading-combo/package.json +++ b/samples/grids/grid/cascading-combo/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/cell-editing-sample/package.json b/samples/grids/grid/cell-editing-sample/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/cell-editing-sample/package.json +++ b/samples/grids/grid/cell-editing-sample/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/cell-editing-styling/src/NwindData.ts b/samples/grids/grid/cell-editing-styling/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/cell-editing-styling/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/cell-selection-mode/package.json +++ b/samples/grids/grid/cell-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/cell-selection-mode/src/NwindData.ts b/samples/grids/grid/cell-selection-mode/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/cell-selection-mode/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/column-moving-options/package.json b/samples/grids/grid/column-moving-options/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/column-moving-options/package.json +++ b/samples/grids/grid/column-moving-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/column-moving-styles/package.json b/samples/grids/grid/column-moving-styles/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/column-moving-styles/package.json +++ b/samples/grids/grid/column-moving-styles/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/column-pinning-right-side/package.json b/samples/grids/grid/column-pinning-right-side/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/column-pinning-right-side/package.json +++ b/samples/grids/grid/column-pinning-right-side/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/column-selection-mode/package.json b/samples/grids/grid/column-selection-mode/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/column-selection-mode/package.json +++ b/samples/grids/grid/column-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/column-sorting-options/package.json b/samples/grids/grid/column-sorting-options/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/column-sorting-options/package.json +++ b/samples/grids/grid/column-sorting-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/data-batch-editing-actions/package.json b/samples/grids/grid/data-batch-editing-actions/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/data-batch-editing-actions/package.json +++ b/samples/grids/grid/data-batch-editing-actions/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/data-batch-editing-actions/src/NwindData.ts b/samples/grids/grid/data-batch-editing-actions/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/data-batch-editing-actions/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/data-performance-virtualization/package.json b/samples/grids/grid/data-performance-virtualization/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/data-performance-virtualization/package.json +++ b/samples/grids/grid/data-performance-virtualization/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/data-summary-formatter/src/NwindData.ts b/samples/grids/grid/data-summary-formatter/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/data-summary-formatter/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/data-summary-options/src/NwindData.ts b/samples/grids/grid/data-summary-options/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/data-summary-options/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/data-summary-template/package.json +++ b/samples/grids/grid/data-summary-template/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/data-summary-template/src/NwindData.ts b/samples/grids/grid/data-summary-template/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/data-summary-template/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/data-validation-style/src/NwindData.ts b/samples/grids/grid/data-validation-style/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/data-validation-style/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/data-validator-service-cross-field/src/NwindData.ts b/samples/grids/grid/data-validator-service-cross-field/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/data-validator-service-cross-field/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/data-validator-service-extended/package.json +++ b/samples/grids/grid/data-validator-service-extended/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/data-validator-service-extended/src/NwindData.ts b/samples/grids/grid/data-validator-service-extended/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/data-validator-service-extended/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/data-validator-service/package.json +++ b/samples/grids/grid/data-validator-service/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/editing-columns/src/NwindData.ts b/samples/grids/grid/editing-columns/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/editing-columns/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/editing-events/src/NwindData.ts b/samples/grids/grid/editing-events/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/editing-events/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/editing-excel-style/src/NwindData.ts b/samples/grids/grid/editing-excel-style/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/editing-excel-style/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/editing-lifecycle/src/NwindData.ts b/samples/grids/grid/editing-lifecycle/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/editing-lifecycle/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/excel-style-filtering-sample-1/package.json b/samples/grids/grid/excel-style-filtering-sample-1/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-1/src/NwindData.ts b/samples/grids/grid/excel-style-filtering-sample-1/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/excel-style-filtering-sample-1/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/excel-style-filtering-sample-2/src/NwindData.ts b/samples/grids/grid/excel-style-filtering-sample-2/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/excel-style-filtering-sample-2/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/excel-style-filtering-sample-3/src/NwindData.ts b/samples/grids/grid/excel-style-filtering-sample-3/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/excel-style-filtering-sample-3/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/excel-style-filtering-style/src/NwindData.ts b/samples/grids/grid/excel-style-filtering-style/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/excel-style-filtering-style/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/external-advanced-filtering/src/NwindData.ts b/samples/grids/grid/external-advanced-filtering/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/external-advanced-filtering/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/filtering-options/src/NwindData.ts b/samples/grids/grid/filtering-options/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/filtering-options/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/filtering-strategy/src/NwindData.ts b/samples/grids/grid/filtering-strategy/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/filtering-strategy/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/filtering-style/package.json +++ b/samples/grids/grid/filtering-style/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/filtering-style/src/NwindData.ts b/samples/grids/grid/filtering-style/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/filtering-style/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/groupby-summary-options/package.json b/samples/grids/grid/groupby-summary-options/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/groupby-summary-options/package.json +++ b/samples/grids/grid/groupby-summary-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/groupby-summary-styling/package.json b/samples/grids/grid/groupby-summary-styling/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/groupby-summary-styling/package.json +++ b/samples/grids/grid/groupby-summary-styling/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/keyboard-custom-navigation/src/NwindData.ts b/samples/grids/grid/keyboard-custom-navigation/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/keyboard-custom-navigation/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/layout-display-density/package.json b/samples/grids/grid/layout-display-density/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/layout-display-density/package.json +++ b/samples/grids/grid/layout-display-density/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/multi-column-headers-overview/package.json b/samples/grids/grid/multi-column-headers-overview/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/multi-column-headers-overview/package.json +++ b/samples/grids/grid/multi-column-headers-overview/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/overview/src/NwindData.ts b/samples/grids/grid/overview/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/overview/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/paste/package.json b/samples/grids/grid/paste/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/paste/package.json +++ b/samples/grids/grid/paste/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/remote-paging-data/src/NwindData.ts b/samples/grids/grid/remote-paging-data/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/remote-paging-data/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/row-adding/src/NwindData.ts b/samples/grids/grid/row-adding/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/row-adding/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/row-classes/src/NwindData.ts b/samples/grids/grid/row-classes/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/row-classes/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/row-editing-options/src/NwindData.ts b/samples/grids/grid/row-editing-options/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/row-editing-options/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/row-editing-style/src/NwindData.ts b/samples/grids/grid/row-editing-style/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/grid/row-editing-style/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/grid/row-editing-style/src/index.css b/samples/grids/grid/row-editing-style/src/index.css index a9393efcbb..cc7b8709b5 100644 --- a/samples/grids/grid/row-editing-style/src/index.css +++ b/samples/grids/grid/row-editing-style/src/index.css @@ -2,7 +2,10 @@ /* https://static.infragistics.com/xplatform/css/samples */ #grid { - --ig-banner-banner-background: #e3e3e3; - --ig-banner-banner-message-color: #423589; + --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-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/row-paging-basic/package.json +++ b/samples/grids/grid/row-paging-basic/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/row-paging-options/package.json b/samples/grids/grid/row-paging-options/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/row-paging-options/package.json +++ b/samples/grids/grid/row-paging-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/row-pinning-options/package.json b/samples/grids/grid/row-pinning-options/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/row-pinning-options/package.json +++ b/samples/grids/grid/row-pinning-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/row-selection-mode/package.json b/samples/grids/grid/row-selection-mode/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/row-selection-mode/package.json +++ b/samples/grids/grid/row-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/row-selection-template-numbers/package.json b/samples/grids/grid/row-selection-template-numbers/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/row-selection-template-numbers/package.json +++ b/samples/grids/grid/row-selection-template-numbers/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/grid/row-styles/package.json b/samples/grids/grid/row-styles/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/grid/row-styles/package.json +++ b/samples/grids/grid/row-styles/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/package.json b/samples/grids/hierarchical-grid/cell-editing-sample/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/src/NwindData.ts b/samples/grids/hierarchical-grid/cell-editing-styling/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/hierarchical-grid/cell-editing-styling/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/package.json b/samples/grids/hierarchical-grid/cell-selection-mode/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/package.json b/samples/grids/hierarchical-grid/cell-selection-overview/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-style/package.json b/samples/grids/hierarchical-grid/cell-selection-style/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/hierarchical-grid/column-selection-mode/package.json b/samples/grids/hierarchical-grid/column-selection-mode/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/hierarchical-grid/data-summary-template/package.json b/samples/grids/hierarchical-grid/data-summary-template/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/package.json +++ b/samples/grids/hierarchical-grid/data-summary-template/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/hierarchical-grid/editing-columns/src/NwindData.ts b/samples/grids/hierarchical-grid/editing-columns/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/hierarchical-grid/editing-columns/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/hierarchical-grid/editing-events/src/NwindData.ts b/samples/grids/hierarchical-grid/editing-events/src/NwindData.ts deleted file mode 100644 index f59afd0b79..0000000000 --- a/samples/grids/hierarchical-grid/editing-events/src/NwindData.ts +++ /dev/null @@ -1,550 +0,0 @@ -export class NwindDataItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public ProductID: number; - public ProductName: string; - public SupplierID: number; - public CategoryID: number; - public QuantityPerUnit: string; - public UnitPrice: number; - public UnitsInStock: number; - public UnitsOnOrder: number; - public ReorderLevel: number; - public Discontinued: boolean; - public OrderDate: string; - public Rating: number; - public Locations: NwindDataItem_LocationsItem[]; - -} -export class NwindDataItem_LocationsItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public Shop: string; - public LastInventory: string; - -} -export class NwindData extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new NwindDataItem( - { - ProductID: 1, - ProductName: `Chai`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `10 boxes x 20 bags`, - UnitPrice: 18, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2012-02-12`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 2, - ProductName: `Chang`, - SupplierID: 1, - CategoryID: 1, - QuantityPerUnit: `24 - 12 oz bottles`, - UnitPrice: 19, - UnitsInStock: 17, - UnitsOnOrder: 40, - ReorderLevel: 25, - Discontinued: true, - OrderDate: `2003-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 3, - ProductName: `Aniseed Syrup`, - SupplierID: 1, - CategoryID: 2, - QuantityPerUnit: `12 - 550 ml bottles`, - UnitPrice: 10, - UnitsInStock: 13, - UnitsOnOrder: 70, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2006-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 4, - ProductName: `Chef Antons Cajun Seasoning`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `48 - 6 oz jars`, - UnitPrice: 22, - UnitsInStock: 53, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2016-03-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 5, - ProductName: `Chef Antons Gumbo Mix`, - SupplierID: 2, - CategoryID: 2, - QuantityPerUnit: `36 boxes`, - UnitPrice: 21.35, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2011-11-11`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 6, - ProductName: `Grandmas Boysenberry Spread`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 8 oz jars`, - UnitPrice: 25, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 25, - Discontinued: false, - OrderDate: `2017-12-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 7, - ProductName: `Uncle Bobs Organic Dried Pears`, - SupplierID: 3, - CategoryID: 7, - QuantityPerUnit: `12 - 1 lb pkgs.`, - UnitPrice: 30, - UnitsInStock: 150, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2016-07-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 8, - ProductName: `Northwoods Cranberry Sauce`, - SupplierID: 3, - CategoryID: 2, - QuantityPerUnit: `12 - 12 oz jars`, - UnitPrice: 40, - UnitsInStock: 6, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2018-01-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 9, - ProductName: `Mishi Kobe Niku`, - SupplierID: 4, - CategoryID: 6, - QuantityPerUnit: `18 - 500 g pkgs.`, - UnitPrice: 97, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2010-02-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 10, - ProductName: `Ikura`, - SupplierID: 4, - CategoryID: 8, - QuantityPerUnit: `12 - 200 ml jars`, - UnitPrice: 31, - UnitsInStock: 31, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2008-05-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 11, - ProductName: `Queso Cabrales`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `1 kg pkg.`, - UnitPrice: 21, - UnitsInStock: 22, - UnitsOnOrder: 30, - ReorderLevel: 30, - Discontinued: false, - OrderDate: `2009-01-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Fun-Tasty Co.`, - LastInventory: `2018-06-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 12, - ProductName: `Queso Manchego La Pastora`, - SupplierID: 5, - CategoryID: 4, - QuantityPerUnit: `10 - 500 g pkgs.`, - UnitPrice: 38, - UnitsInStock: 86, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2015-11-17`, - Rating: 3, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 13, - ProductName: `Konbu`, - SupplierID: 6, - CategoryID: 8, - QuantityPerUnit: `2 kg box`, - UnitPrice: 6, - UnitsInStock: 24, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2015-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 14, - ProductName: `Tofu`, - SupplierID: 6, - CategoryID: 7, - QuantityPerUnit: `40 - 100 g pkgs.`, - UnitPrice: 23.25, - UnitsInStock: 35, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2017-06-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - })] - - }), - new NwindDataItem( - { - ProductID: 15, - ProductName: `Genen Shouyu`, - SupplierID: 6, - CategoryID: 2, - QuantityPerUnit: `24 - 250 ml bottles`, - UnitPrice: 15.5, - UnitsInStock: 39, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2014-03-17`, - Rating: 4, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Wall Market`, - LastInventory: `2018-12-06` - })] - - }), - new NwindDataItem( - { - ProductID: 16, - ProductName: `Pavlova`, - SupplierID: 7, - CategoryID: 3, - QuantityPerUnit: `32 - 500 g boxes`, - UnitPrice: 17.45, - UnitsInStock: 29, - UnitsOnOrder: 30, - ReorderLevel: 10, - Discontinued: false, - OrderDate: `2018-03-28`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Street Market`, - LastInventory: `2018-12-12` - }), - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - })] - - }), - new NwindDataItem( - { - ProductID: 17, - ProductName: `Alice Mutton`, - SupplierID: 7, - CategoryID: 6, - QuantityPerUnit: `20 - 1 kg tins`, - UnitPrice: 39, - UnitsInStock: 0, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: true, - OrderDate: `2015-08-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Farmer Market`, - LastInventory: `2018-04-04` - })] - - }), - new NwindDataItem( - { - ProductID: 18, - ProductName: `Carnarvon Tigers`, - SupplierID: 7, - CategoryID: 8, - QuantityPerUnit: `16 kg pkg.`, - UnitPrice: 62.5, - UnitsInStock: 42, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-09-27`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `24/7 Market`, - LastInventory: `2018-11-11` - }), - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - new NwindDataItem( - { - ProductID: 19, - ProductName: `Teatime Chocolate Biscuits`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: ``, - UnitPrice: 9.2, - UnitsInStock: 25, - UnitsOnOrder: 30, - ReorderLevel: 5, - Discontinued: false, - OrderDate: `2001-03-17`, - Rating: 2, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Local Market`, - LastInventory: `2018-07-03` - })] - - }), - new NwindDataItem( - { - ProductID: 20, - ProductName: `Sir Rodneys Marmalade`, - SupplierID: 8, - CategoryID: 3, - QuantityPerUnit: `4 - 100 ml jars`, - UnitPrice: 4.5, - UnitsInStock: 40, - UnitsOnOrder: 30, - ReorderLevel: 0, - Discontinued: false, - OrderDate: `2005-03-17`, - Rating: 5, - Locations: [ - new NwindDataItem_LocationsItem( - { - Shop: `Super Market`, - LastInventory: `2018-09-09` - })] - - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/grids/hierarchical-grid/layout-display-density/package.json b/samples/grids/hierarchical-grid/layout-display-density/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/package.json +++ b/samples/grids/hierarchical-grid/layout-display-density/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-options/package.json b/samples/grids/hierarchical-grid/row-pinning-options/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/hierarchical-grid/row-selection-mode/package.json b/samples/grids/hierarchical-grid/row-selection-mode/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/cell-editing-sample/package.json +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", 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 e5e2a82c05..241e650bc3 100644 --- a/samples/grids/tree-grid/cell-editing-sample/src/index.ts +++ b/samples/grids/tree-grid/cell-editing-sample/src/index.ts @@ -59,7 +59,8 @@ export class Sample { public webTreeGridCellEditCellTemplate = (ctx: IgcCellTemplateContext) => { let cellValues: any = []; let uniqueValues: any = []; - for(const i of (this.roleplayTreeGridData as any)){ + let roleplayData = this.roleplayTreeGridData + for (const i of (roleplayData as any)){ const field: string = ctx.cell.column.field; if(uniqueValues.indexOf(i[field]) === -1 ) { diff --git a/samples/grids/tree-grid/cell-selection-mode/package.json b/samples/grids/tree-grid/cell-selection-mode/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/cell-selection-mode/package.json +++ b/samples/grids/tree-grid/cell-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/tree-grid/column-selection-mode/package.json b/samples/grids/tree-grid/column-selection-mode/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/column-selection-mode/package.json +++ b/samples/grids/tree-grid/column-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/tree-grid/column-sorting-options/package.json b/samples/grids/tree-grid/column-sorting-options/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/column-sorting-options/package.json +++ b/samples/grids/tree-grid/column-sorting-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/tree-grid/data-summary-children/package.json b/samples/grids/tree-grid/data-summary-children/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/data-summary-children/package.json +++ b/samples/grids/tree-grid/data-summary-children/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/tree-grid/data-summary-template/package.json b/samples/grids/tree-grid/data-summary-template/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/data-summary-template/package.json +++ b/samples/grids/tree-grid/data-summary-template/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/tree-grid/layout-display-density/package.json b/samples/grids/tree-grid/layout-display-density/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/layout-display-density/package.json +++ b/samples/grids/tree-grid/layout-display-density/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/tree-grid/multi-column-headers-overview/package.json b/samples/grids/tree-grid/multi-column-headers-overview/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/package.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", 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 a9393efcbb..cc7b8709b5 100644 --- a/samples/grids/tree-grid/row-editing-style/src/index.css +++ b/samples/grids/tree-grid/row-editing-style/src/index.css @@ -2,7 +2,10 @@ /* https://static.infragistics.com/xplatform/css/samples */ #grid { - --ig-banner-banner-background: #e3e3e3; - --ig-banner-banner-message-color: #423589; + --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-paging-options/package.json b/samples/grids/tree-grid/row-paging-options/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/row-paging-options/package.json +++ b/samples/grids/tree-grid/row-paging-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/tree-grid/row-pinning-options/package.json b/samples/grids/tree-grid/row-pinning-options/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/row-pinning-options/package.json +++ b/samples/grids/tree-grid/row-pinning-options/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/tree-grid/row-selection-mode/package.json b/samples/grids/tree-grid/row-selection-mode/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/row-selection-mode/package.json +++ b/samples/grids/tree-grid/row-selection-mode/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/tree-grid/toolbar-sample-1/package.json b/samples/grids/tree-grid/toolbar-sample-1/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/package.json +++ b/samples/grids/tree-grid/toolbar-sample-1/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/tree-grid/toolbar-sample-3/package.json b/samples/grids/tree-grid/toolbar-sample-3/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/package.json +++ b/samples/grids/tree-grid/toolbar-sample-3/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", diff --git a/samples/grids/tree-grid/toolbar-style/package.json b/samples/grids/tree-grid/toolbar-style/package.json index 8ab82339e8..5ea7de964d 100644 --- a/samples/grids/tree-grid/toolbar-style/package.json +++ b/samples/grids/tree-grid/toolbar-style/package.json @@ -23,7 +23,7 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "igniteui-webcomponents-core": "5.0.3-beta.0", "igniteui-webcomponents-grids": "5.0.3-beta.0", "igniteui-webcomponents-inputs": "5.0.3-beta.0", From 18f0d17adb87e1f590da914eb94dfb6d07ed6103 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 07:57:27 +0000 Subject: [PATCH 22/63] chore(deps-dev): bump express from 4.18.2 to 4.21.1 Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 4.21.1. - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/4.21.1/History.md) - [Commits](https://github.com/expressjs/express/compare/4.18.2...4.21.1) --- updated-dependencies: - dependency-name: express dependency-type: indirect ... Signed-off-by: dependabot[bot] --- package-lock.json | 252 +++++++++++++++++++++++++--------------------- 1 file changed, 138 insertions(+), 114 deletions(-) diff --git a/package-lock.json b/package-lock.json index bde070b6a5..836d849d9b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4202,9 +4202,9 @@ "integrity": "sha512-/SLWbEzMoVIMZACCyhD/4Ya2M1PWP1qMKuiymowPcI+PdWDARqeARBjhj73kbUBCxEmTZCUu5TAqxtwUO9C1Ig==" }, "node_modules/body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", "dev": true, "dependencies": { "bytes": "3.1.2", @@ -4215,7 +4215,7 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", - "qs": "6.11.0", + "qs": "6.13.0", "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" @@ -4367,14 +4367,19 @@ } }, "node_modules/call-bind": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", - "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dev": true, "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.1", - "set-function-length": "^1.1.1" + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -5476,17 +5481,20 @@ } }, "node_modules/define-data-property": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", - "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/define-lazy-prop": { @@ -6014,6 +6022,27 @@ "is-arrayish": "^0.2.1" } }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/es-module-lexer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", @@ -6521,37 +6550,37 @@ } }, "node_modules/express": { - "version": "4.18.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", - "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "version": "4.21.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.21.1.tgz", + "integrity": "sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ==", "dev": true, "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.1", + "body-parser": "1.20.3", "content-disposition": "0.5.4", "content-type": "~1.0.4", - "cookie": "0.5.0", + "cookie": "0.7.1", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "1.2.0", + "finalhandler": "1.3.1", "fresh": "0.5.2", "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", + "merge-descriptors": "1.0.3", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", + "path-to-regexp": "0.1.10", "proxy-addr": "~2.0.7", - "qs": "6.11.0", + "qs": "6.13.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", + "send": "0.19.0", + "serve-static": "1.16.2", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", @@ -6562,34 +6591,10 @@ "node": ">= 0.10.0" } }, - "node_modules/express/node_modules/body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "dev": true, - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, "node_modules/express/node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", "dev": true, "engines": { "node": ">= 0.6" @@ -6604,14 +6609,23 @@ "ms": "2.0.0" } }, + "node_modules/express/node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/express/node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", "dev": true, "dependencies": { "debug": "2.6.9", - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", @@ -6628,21 +6642,6 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, - "node_modules/express/node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dev": true, - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, "node_modules/express/node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -7703,16 +7702,20 @@ "dev": true }, "node_modules/get-intrinsic": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", - "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "dev": true, "dependencies": { + "es-errors": "^1.3.0", "function-bind": "^1.1.2", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", "hasown": "^2.0.0" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -8362,12 +8365,12 @@ } }, "node_modules/has-property-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", - "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.2" + "es-define-property": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -10521,10 +10524,13 @@ } }, "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/merge-stream": { "version": "2.0.0", @@ -10993,10 +10999,13 @@ } }, "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", + "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", "dev": true, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -11471,9 +11480,9 @@ } }, "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.10.tgz", + "integrity": "sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w==", "dev": true }, "node_modules/path-type": { @@ -11789,12 +11798,12 @@ } }, "node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", "dev": true, "dependencies": { - "side-channel": "^1.0.4" + "side-channel": "^1.0.6" }, "engines": { "node": ">=0.6" @@ -12499,9 +12508,9 @@ } }, "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", + "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "dev": true, "dependencies": { "debug": "2.6.9", @@ -12643,20 +12652,29 @@ "dev": true }, "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "version": "1.16.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", + "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "dev": true, "dependencies": { - "encodeurl": "~1.0.2", + "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", - "send": "0.18.0" + "send": "0.19.0" }, "engines": { "node": ">= 0.8.0" } }, + "node_modules/serve-static/node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", @@ -12664,15 +12682,17 @@ "dev": true }, "node_modules/set-function-length": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", - "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", "dev": true, "dependencies": { - "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -12789,14 +12809,18 @@ } }, "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", "dev": true, "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" From 62ef4271cf7257d763f8a1a82cc18e45a9fa0f2a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 08:58:07 +0000 Subject: [PATCH 23/63] chore(deps-dev): bump webpack from 5.89.0 to 5.96.1 Bumps [webpack](https://github.com/webpack/webpack) from 5.89.0 to 5.96.1. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](https://github.com/webpack/webpack/compare/v5.89.0...v5.96.1) --- updated-dependencies: - dependency-name: webpack dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- package-lock.json | 276 ++++++++++++++++++++++------------------------ package.json | 2 +- 2 files changed, 134 insertions(+), 144 deletions(-) diff --git a/package-lock.json b/package-lock.json index 836d849d9b..ea52705b9d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -76,7 +76,7 @@ "tslint": "^5.5.0", "tslint-loader": "^3.5.3", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", @@ -2931,9 +2931,9 @@ } }, "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", "dev": true }, "node_modules/@types/express": { @@ -3116,148 +3116,148 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "dev": true, "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", "dev": true }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", "dev": true }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", "dev": true }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "dev": true, "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", "dev": true }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "dev": true, "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "dev": true, "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", "dev": true }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, @@ -3333,9 +3333,9 @@ } }, "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -3344,15 +3344,6 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "dev": true, - "peerDependencies": { - "acorn": "^8" - } - }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", @@ -4279,9 +4270,9 @@ } }, "node_modules/browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "dev": true, "funding": [ { @@ -4298,10 +4289,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" }, "bin": { "browserslist": "cli.js" @@ -4420,9 +4411,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001576", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz", - "integrity": "sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==", + "version": "1.0.30001680", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz", + "integrity": "sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==", "dev": true, "funding": [ { @@ -5902,9 +5893,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.626", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.626.tgz", - "integrity": "sha512-f7/be56VjRRQk+Ric6PmIrEtPcIqsn3tElyAu9Sh6egha2VLJ82qwkcOdcnT06W+Pb6RUulV1ckzrGbKzVcTHg==", + "version": "1.5.60", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.60.tgz", + "integrity": "sha512-HcraRUkTKJ+8yA3b10i9qvhUlPBRDlKjn1XGek1zDGVfAKcvi8TsUnImGqLiEm9j6ZulxXIWWIo9BmbkbCTGgA==", "dev": true }, "node_modules/emoji-regex": { @@ -5971,9 +5962,9 @@ } }, "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", "dev": true, "dependencies": { "graceful-fs": "^4.2.4", @@ -6098,9 +6089,9 @@ } }, "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, "engines": { "node": ">=6" @@ -10849,9 +10840,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", "dev": true }, "node_modules/normalize-package-data": { @@ -11504,9 +11495,9 @@ } }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true }, "node_modules/picomatch": { @@ -14335,9 +14326,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", "dev": true, "funding": [ { @@ -14354,8 +14345,8 @@ } ], "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.0" }, "bin": { "update-browserslist-db": "cli.js" @@ -14568,9 +14559,9 @@ } }, "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", + "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", "dev": true, "dependencies": { "glob-to-regexp": "^0.4.1", @@ -14590,34 +14581,33 @@ } }, "node_modules/webpack": { - "version": "5.89.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.89.0.tgz", - "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", - "dev": true, - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "version": "5.96.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.96.1.tgz", + "integrity": "sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^3.2.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { diff --git a/package.json b/package.json index 355420064f..634764f98a 100644 --- a/package.json +++ b/package.json @@ -96,7 +96,7 @@ "tslint": "^5.5.0", "tslint-loader": "^3.5.3", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", From 1e55a85f87fbb2830c22400728495ec42d7a0b88 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 14:17:58 +0000 Subject: [PATCH 24/63] Bump webpack-dev-middleware from 5.3.3 to 5.3.4 Bumps [webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware) from 5.3.3 to 5.3.4. - [Release notes](https://github.com/webpack/webpack-dev-middleware/releases) - [Changelog](https://github.com/webpack/webpack-dev-middleware/blob/v5.3.4/CHANGELOG.md) - [Commits](https://github.com/webpack/webpack-dev-middleware/compare/v5.3.3...v5.3.4) --- updated-dependencies: - dependency-name: webpack-dev-middleware dependency-type: indirect ... Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index ea52705b9d..ed5c23014e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14763,9 +14763,9 @@ } }, "node_modules/webpack-dev-middleware": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", - "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", + "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", "dev": true, "dependencies": { "colorette": "^2.0.10", From a9120e0dc9ebf04c4cd964d555f64a1b9c779e99 Mon Sep 17 00:00:00 2001 From: Deyan Kamburov Date: Mon, 18 Nov 2024 17:47:59 +0200 Subject: [PATCH 25/63] chore(*): update ig packages to 5.1.0 (#878) --- browser/tasks/gulp-samples.js | 28 ++-- package-lock.json | 141 +++++++++--------- package.json | 26 ++-- .../annotations-all/package.json | 10 +- .../annotations-callouts/package.json | 10 +- .../annotations-crosshairs/package.json | 10 +- .../annotations-custom/package.json | 10 +- .../annotations-final-value/package.json | 10 +- .../annotations-highlighting/package.json | 10 +- .../category-chart/annotations/package.json | 6 +- .../area-chart-multiple-sources/package.json | 6 +- .../area-chart-single-source/package.json | 6 +- .../area-chart-styling/package.json | 6 +- .../category-chart/axis-gap/package.json | 10 +- .../axis-gridlines/package.json | 10 +- .../category-chart/axis-inverted/package.json | 10 +- .../category-chart/axis-labels/package.json | 10 +- .../axis-locations/package.json | 10 +- .../category-chart/axis-options/package.json | 6 +- .../category-chart/axis-overlap/package.json | 10 +- .../category-chart/axis-range/package.json | 10 +- .../axis-tickmarks/package.json | 10 +- .../category-chart/axis-titles/package.json | 6 +- .../chart-highlight-filter/package.json | 10 +- .../package.json | 6 +- .../column-chart-single-source/package.json | 6 +- .../column-chart-styling/package.json | 6 +- .../package.json | 6 +- .../column-chart-with-tooltips/package.json | 10 +- .../custom-selection/package.json | 6 +- .../data-aggregations/package.json | 10 +- .../category-chart/data-filter/package.json | 10 +- .../package.json | 6 +- .../category-chart/data-legend/package.json | 6 +- .../package.json | 6 +- .../data-tooltip-positioning/package.json | 10 +- .../category-chart/data-tooltip/package.json | 6 +- .../format-specifiers/package.json | 10 +- .../high-frequency/package.json | 6 +- .../category-chart/high-volume/package.json | 6 +- .../highlighting-behavior/package.json | 10 +- .../highlighting-mode/package.json | 10 +- .../category-chart/highlighting/package.json | 6 +- .../legend-highlighting/package.json | 6 +- .../line-chart-multiple-sources/package.json | 6 +- .../line-chart-single-source/package.json | 6 +- .../line-chart-styling/package.json | 6 +- .../line-chart-with-animations/package.json | 6 +- .../line-chart-with-annotations/package.json | 6 +- .../marker-options/package.json | 10 +- .../marker-templates/package.json | 6 +- .../category-chart/overview/package.json | 6 +- .../point-chart-multiple-sources/package.json | 6 +- .../point-chart-single-source/package.json | 6 +- .../point-chart-styling/package.json | 6 +- .../selection-modes/package.json | 6 +- .../selection-multiple-modes/package.json | 10 +- .../spline-area-multiple-sources/package.json | 6 +- .../spline-area-single-source/package.json | 6 +- .../spline-area-styling/package.json | 6 +- .../spline-multiple-sources/package.json | 6 +- .../spline-single-source/package.json | 6 +- .../spline-styling/package.json | 6 +- .../category-chart/stack-columns/package.json | 6 +- .../step-area-multiple-sources/package.json | 6 +- .../step-area-single-source/package.json | 6 +- .../step-area-styling/package.json | 6 +- .../step-line-multiple-sources/package.json | 6 +- .../step-line-single-source/package.json | 6 +- .../step-line-styling/package.json | 6 +- .../tooltip-template/package.json | 6 +- .../category-chart/tooltip-types/package.json | 6 +- .../category-chart/trendline/package.json | 6 +- .../category-chart/value-lines/package.json | 10 +- .../annotations-custom/package.json | 6 +- .../package.json | 6 +- .../data-chart/axis-annotations/package.json | 6 +- .../data-chart/axis-crossing/package.json | 6 +- .../axis-label-rotation/package.json | 10 +- .../data-chart/axis-locations/package.json | 6 +- .../data-chart/axis-min-max-gap/package.json | 6 +- .../data-chart/axis-settings/package.json | 6 +- .../data-chart/axis-sharing/package.json | 6 +- .../charts/data-chart/axis-types/package.json | 6 +- .../bar-chart-multiple-sources/package.json | 6 +- .../bar-chart-overlapping/package.json | 6 +- .../bar-chart-single-source/package.json | 6 +- .../data-chart/bar-chart-styling/package.json | 6 +- .../callout-layer-styling/package.json | 6 +- .../package.json | 10 +- .../package.json | 10 +- .../chart-highlight-filter/package.json | 10 +- .../data-chart/chart-navigation/package.json | 6 +- .../data-chart/chart-overview/package.json | 6 +- .../data-chart/chart-performance/package.json | 6 +- .../chart-synchronization/package.json | 6 +- .../data-chart/chart-titles/package.json | 6 +- .../data-chart/composite-chart/package.json | 6 +- .../crosshair-layer-styling/package.json | 6 +- .../custom-drawing-annotations/package.json | 10 +- .../custom-editing-data/package.json | 6 +- .../data-chart/dash-array-axes/package.json | 6 +- .../data-chart/dash-array-series/package.json | 6 +- .../dash-array-tickmarks/package.json | 6 +- .../dash-array-trendline/package.json | 6 +- .../package.json | 6 +- .../data-legend-grouping/package.json | 6 +- .../data-legend-styling/package.json | 6 +- .../data-chart/data-legend/package.json | 6 +- .../package.json | 10 +- .../data-tooltip-grouping/package.json | 10 +- .../data-tooltip-styling/package.json | 10 +- .../data-chart/data-tooltip/package.json | 6 +- .../final-value-layer-styling/package.json | 6 +- .../financial-price-series/package.json | 6 +- .../data-chart/format-specifiers/package.json | 6 +- .../charts/data-chart/legends/package.json | 6 +- .../polar-area-chart-styling/package.json | 6 +- .../data-chart/polar-area-chart/package.json | 6 +- .../data-chart/polar-chart-types/package.json | 6 +- .../data-chart/polar-line-chart/package.json | 6 +- .../polar-scatter-chart/package.json | 6 +- .../polar-spline-area-chart/package.json | 6 +- .../polar-spline-chart/package.json | 6 +- .../radial-area-chart-styling/package.json | 6 +- .../data-chart/radial-area-chart/package.json | 6 +- .../radial-chart-types/package.json | 6 +- .../package.json | 6 +- .../radial-column-chart/package.json | 6 +- .../data-chart/radial-label-mode/package.json | 10 +- .../data-chart/radial-line-chart/package.json | 6 +- .../data-chart/radial-pie-chart/package.json | 6 +- .../package.json | 6 +- .../package.json | 6 +- .../data-chart/range-area-chart/package.json | 6 +- .../range-column-chart/package.json | 6 +- .../package.json | 6 +- .../package.json | 6 +- .../package.json | 6 +- .../scatter-bubble-chart-styling/package.json | 6 +- .../scatter-line-chart/package.json | 6 +- .../scatter-point-chart/package.json | 6 +- .../scatter-spline-chart/package.json | 6 +- .../data-chart/series-animations/package.json | 6 +- .../series-annotations/package.json | 6 +- .../data-chart/series-error-bars/package.json | 6 +- .../series-highlighting/package.json | 6 +- .../series-marker-template/package.json | 6 +- .../data-chart/series-markers/package.json | 6 +- .../data-chart/series-tooltips/package.json | 6 +- .../data-chart/series-trendlines/package.json | 6 +- .../series-value-overlay/package.json | 6 +- .../stacked-100-area-chart/package.json | 6 +- .../stacked-100-bar-chart/package.json | 6 +- .../stacked-100-column-chart/package.json | 6 +- .../stacked-100-line-chart/package.json | 6 +- .../package.json | 6 +- .../stacked-100-spline-chart/package.json | 6 +- .../stacked-area-chart/package.json | 6 +- .../data-chart/stacked-bar-chart/package.json | 6 +- .../stacked-chart-types/package.json | 6 +- .../stacked-column-chart/package.json | 6 +- .../stacked-line-chart/package.json | 6 +- .../stacked-spline-area-chart/package.json | 6 +- .../stacked-spline-chart/package.json | 6 +- .../data-chart/tooltip-template/package.json | 6 +- .../data-chart/transition-event/package.json | 10 +- .../package.json | 6 +- .../package.json | 6 +- .../package.json | 6 +- .../type-financial-ohlc-series/package.json | 6 +- .../type-financial-overlays/package.json | 6 +- .../type-financial-series/package.json | 6 +- .../type-range-area-series/package.json | 6 +- .../type-range-column-series/package.json | 6 +- .../data-chart/type-range-series/package.json | 6 +- .../type-scatter-area-series/package.json | 6 +- .../type-scatter-bubble-series/package.json | 6 +- .../type-scatter-contour-series/package.json | 6 +- .../type-scatter-hd-series/package.json | 6 +- .../type-scatter-polygon-series/package.json | 6 +- .../type-scatter-polyline-series/package.json | 6 +- .../type-scatter-series/package.json | 6 +- .../data-chart/type-shape-series/package.json | 6 +- .../data-chart/waterfall-chart/package.json | 6 +- .../data-pie-chart/animation/package.json | 10 +- .../highlight-filter/package.json | 6 +- .../data-pie-chart/highlighting/package.json | 10 +- .../charts/data-pie-chart/legend/package.json | 10 +- .../charts/data-pie-chart/others/package.json | 10 +- .../data-pie-chart/overview/package.json | 6 +- .../data-pie-chart/selection/package.json | 10 +- .../doughnut-chart/animation/package.json | 6 +- .../doughnut-chart/explosion/package.json | 6 +- .../charts/doughnut-chart/legend/package.json | 6 +- .../doughnut-chart/overview/package.json | 6 +- .../charts/doughnut-chart/rings/package.json | 6 +- .../doughnut-chart/selection/package.json | 6 +- .../financial-chart/annotations/package.json | 6 +- .../financial-chart/axis-types/package.json | 6 +- .../package.json | 6 +- .../data-legend-styling-props/package.json | 6 +- .../financial-chart/data-legend/package.json | 6 +- .../package.json | 6 +- .../data-tooltip-styling-props/package.json | 6 +- .../financial-chart/data-tooltip/package.json | 6 +- .../format-specifiers/package.json | 6 +- .../high-frequency/package.json | 6 +- .../financial-chart/high-volume/package.json | 6 +- .../indicator-customization/package.json | 6 +- .../indicator-types/package.json | 6 +- .../multiple-data/package.json | 6 +- .../financial-chart/overview/package.json | 6 +- .../charts/financial-chart/panes/package.json | 6 +- .../financial-chart/performance/package.json | 6 +- .../financial-chart/scrollbars/package.json | 6 +- .../stock-index-chart/package.json | 6 +- .../financial-chart/styling/package.json | 6 +- .../financial-chart/titles/package.json | 6 +- .../tooltip-types/package.json | 6 +- .../financial-chart/trendlines/package.json | 6 +- .../financial-chart/volume-types/package.json | 6 +- .../charts/pie-chart/animation/package.json | 6 +- .../charts/pie-chart/explosion/package.json | 6 +- samples/charts/pie-chart/legend/package.json | 6 +- samples/charts/pie-chart/others/package.json | 6 +- .../charts/pie-chart/overview/package.json | 6 +- .../charts/pie-chart/selection/package.json | 6 +- samples/charts/pie-chart/styling/package.json | 6 +- .../sparkline/display-area/package.json | 6 +- .../sparkline/display-column/package.json | 6 +- .../sparkline/display-lines/package.json | 10 +- .../sparkline/display-types/package.json | 6 +- .../sparkline/display-winloss/package.json | 6 +- samples/charts/sparkline/grid/package.json | 12 +- samples/charts/sparkline/markers/package.json | 10 +- .../sparkline/normal-range/package.json | 10 +- .../charts/sparkline/trendlines/package.json | 10 +- .../sparkline/unknown-values/package.json | 10 +- .../package.json | 10 +- .../actions-built-in-data-chart/package.json | 10 +- .../charts/toolbar/custom-tool/package.json | 10 +- .../package.json | 10 +- .../package.json | 10 +- samples/charts/toolbar/theming/package.json | 10 +- samples/charts/tree-map/events/package.json | 6 +- .../highlighting-percent-based/package.json | 6 +- .../charts/tree-map/highlighting/package.json | 10 +- samples/charts/tree-map/layout/package.json | 10 +- samples/charts/tree-map/overview/package.json | 6 +- samples/charts/tree-map/styling/package.json | 6 +- .../charts/zoomslider/overview/package.json | 6 +- .../overview/package.json | 10 +- .../x-date-picker/date-limits/package.json | 8 +- .../x-date-picker/editing/package.json | 8 +- .../editors/x-date-picker/format/package.json | 8 +- .../x-date-picker/overview/package.json | 8 +- .../editors/x-date-picker/range/package.json | 8 +- .../operations-on-workbooks/package.json | 12 +- .../operations-on-worksheets/package.json | 6 +- .../excel/excel-library/overview/package.json | 6 +- .../working-with-cells/package.json | 6 +- .../working-with-charts/package.json | 14 +- .../working-with-sparklines/package.json | 14 +- .../excel/spreadsheet/activation/package.json | 8 +- .../spreadsheet/adapter-chart/package.json | 12 +- .../spreadsheet/adapter-combo/package.json | 12 +- .../excel/spreadsheet/clipboard/package.json | 8 +- .../excel/spreadsheet/commands/package.json | 8 +- .../conditional-formatting/package.json | 8 +- .../spreadsheet/config-options/package.json | 8 +- .../spreadsheet/data-validation/package.json | 8 +- .../spreadsheet/filter-dialog/package.json | 8 +- .../spreadsheet/format-dialog/package.json | 8 +- .../excel/spreadsheet/hyperlinks/package.json | 8 +- .../excel/spreadsheet/overview/package.json | 8 +- .../spreadsheet/sort-dialog/package.json | 8 +- .../bullet-graph/animation/package.json | 6 +- .../bullet-graph/background/package.json | 6 +- .../highlight-needle/package.json | 6 +- .../gauges/bullet-graph/labels/package.json | 6 +- .../gauges/bullet-graph/measures/package.json | 6 +- .../gauges/bullet-graph/ranges/package.json | 6 +- .../gauges/bullet-graph/scale/package.json | 6 +- .../bullet-graph/tickmarks/package.json | 6 +- .../bullet-graph/type-filled/package.json | 6 +- .../bullet-graph/type-horizontal/package.json | 6 +- .../bullet-graph/type-reversed/package.json | 6 +- .../bullet-graph/type-segmented/package.json | 6 +- .../bullet-graph/type-vertical/package.json | 6 +- .../linear-gauge/animation/package.json | 6 +- .../gauges/linear-gauge/backing/package.json | 6 +- .../highlight-needle/package.json | 6 +- .../gauges/linear-gauge/labels/package.json | 6 +- .../gauges/linear-gauge/needle/package.json | 6 +- .../gauges/linear-gauge/ranges/package.json | 6 +- .../gauges/linear-gauge/scale/package.json | 6 +- .../linear-gauge/tickmarks/package.json | 6 +- .../linear-gauge/type-curved/package.json | 6 +- .../linear-gauge/type-filled/package.json | 6 +- .../linear-gauge/type-horizontal/package.json | 6 +- .../type-multi-range/package.json | 6 +- .../type-multi-scale/package.json | 6 +- .../linear-gauge/type-segmented/package.json | 6 +- .../linear-gauge/type-vertical/package.json | 6 +- .../radial-gauge/animation/package.json | 6 +- .../gauges/radial-gauge/backing/package.json | 6 +- .../highlight-needle/package.json | 6 +- .../gauges/radial-gauge/labels/package.json | 6 +- .../gauges/radial-gauge/needle/package.json | 6 +- .../radial-gauge/optical-scaling/package.json | 6 +- .../gauges/radial-gauge/ranges/package.json | 6 +- .../gauges/radial-gauge/scale/package.json | 6 +- .../radial-gauge/tickmarks/package.json | 6 +- .../radial-gauge/type-column/package.json | 6 +- .../radial-gauge/type-curved/package.json | 6 +- .../radial-gauge/type-direction/package.json | 6 +- .../radial-gauge/type-full/package.json | 6 +- .../radial-gauge/type-half/package.json | 6 +- .../radial-gauge/type-quatre/package.json | 6 +- .../radial-gauge/type-ring/package.json | 6 +- .../radial-gauge/type-segmented/package.json | 6 +- .../radial-gauge/type-semi/package.json | 6 +- .../data-grid/accessibility/package.json | 10 +- .../binding-data-service/package.json | 10 +- .../data-grid/binding-live-data/package.json | 12 +- .../data-grid/binding-local-data/package.json | 10 +- .../binding-remote-data/package.json | 12 +- .../data-grid/cell-activation/package.json | 10 +- .../grids/data-grid/cell-editing/package.json | 10 +- .../grids/data-grid/cell-merging/package.json | 12 +- .../data-grid/cell-selection/package.json | 10 +- .../data-grid/column-animation/package.json | 10 +- .../column-chooser-picker/package.json | 10 +- .../column-chooser-toolbar/package.json | 10 +- .../column-filter-expressions/package.json | 10 +- .../column-filter-operands/package.json | 10 +- .../data-grid/column-filtering/package.json | 10 +- .../data-grid/column-moving/package.json | 10 +- .../data-grid/column-options/package.json | 10 +- .../column-pinning-picker/package.json | 10 +- .../column-pinning-toolbar/package.json | 10 +- .../data-grid/column-resizing/package.json | 10 +- .../data-grid/column-scrolling/package.json | 10 +- .../data-grid/column-sorting/package.json | 10 +- .../data-grid/column-summaries/package.json | 10 +- .../grids/data-grid/column-types/package.json | 12 +- .../data-grid/load-save-layout/package.json | 12 +- .../grids/data-grid/localization/package.json | 12 +- samples/grids/data-grid/overview/package.json | 12 +- samples/grids/data-grid/pager/package.json | 10 +- .../grids/data-grid/performance/package.json | 10 +- .../row-group-descriptions/package.json | 10 +- .../grids/data-grid/row-grouping/package.json | 10 +- .../data-grid/row-highlighting/package.json | 10 +- .../grids/data-grid/row-paging/package.json | 10 +- .../grids/data-grid/row-pinning/package.json | 10 +- .../data-grid/row-selection/package.json | 10 +- .../type-comparison-table/package.json | 12 +- .../data-grid/type-heatmap-table/package.json | 10 +- .../type-marketing-table/package.json | 12 +- .../data-grid/type-matrix-table/package.json | 10 +- .../type-periodic-table/package.json | 10 +- .../grids/data-grid/type-table/package.json | 10 +- samples/grids/grid/action-strip/package.json | 10 +- .../advanced-filtering-options/package.json | 10 +- .../advanced-filtering-style/package.json | 10 +- .../grid/binding-composite-data/package.json | 10 +- .../grids/grid/binding-crud-data/package.json | 10 +- .../grid/binding-nested-data-1/package.json | 10 +- .../grids/grid/cascading-combo/package.json | 10 +- .../grid/cell-editing-sample/package.json | 10 +- .../grid/cell-editing-styling/package.json | 10 +- .../grid/cell-selection-mode/package.json | 10 +- .../grid/cell-selection-style/package.json | 10 +- .../grid/change-icons-custom/package.json | 12 +- .../grid/clipboard-operations/package.json | 12 +- .../grid/column-auto-sizing/package.json | 10 +- .../column-collapsible-groups/package.json | 10 +- .../grids/grid/column-data-types/package.json | 10 +- .../grid/column-hiding-options/package.json | 10 +- .../column-hiding-toolbar-style/package.json | 10 +- .../grid/column-hiding-toolbar/package.json | 10 +- .../grid/column-moving-options/package.json | 10 +- .../grid/column-moving-styles/package.json | 10 +- .../grid/column-pinning-options/package.json | 10 +- .../column-pinning-right-side/package.json | 10 +- .../grid/column-pinning-styles/package.json | 10 +- .../grids/grid/column-pinning/package.json | 10 +- .../grid/column-resize-styling/package.json | 10 +- .../grids/grid/column-resizing/package.json | 10 +- .../grid/column-selection-group/package.json | 10 +- .../grid/column-selection-mode/package.json | 10 +- .../grid/column-selection-styles/package.json | 10 +- .../column-sorting-indicators/package.json | 10 +- .../grid/column-sorting-options/package.json | 10 +- .../grid/column-sorting-style/package.json | 10 +- .../conditional-cell-style-1/package.json | 10 +- .../conditional-cell-style-2/package.json | 10 +- .../conditional-row-selectors/package.json | 10 +- .../grid/custom-context-menu/package.json | 12 +- .../grids/grid/custom-filtering/package.json | 10 +- .../data-batch-editing-actions/package.json | 10 +- .../data-exporting-indicator/package.json | 10 +- .../grid/data-paste-options/package.json | 12 +- .../package.json | 10 +- .../grids/grid/data-searching/package.json | 12 +- .../grid/data-summaries-custom/package.json | 10 +- .../grid/data-summary-formatter/package.json | 10 +- .../grid/data-summary-options/package.json | 10 +- .../grid/data-summary-template/package.json | 10 +- .../grid/data-validation-style/package.json | 10 +- .../package.json | 10 +- .../package.json | 10 +- .../grid/data-validator-service/package.json | 10 +- .../grids/grid/editing-columns/package.json | 10 +- .../grids/grid/editing-events/package.json | 10 +- .../editing-excel-style-custom/package.json | 10 +- .../grid/editing-excel-style/package.json | 10 +- .../grids/grid/editing-lifecycle/package.json | 10 +- .../grids/grid/excel-exporting/package.json | 10 +- .../package.json | 10 +- .../package.json | 10 +- .../package.json | 10 +- .../excel-style-filtering-style/package.json | 10 +- .../external-advanced-filtering/package.json | 10 +- .../grids/grid/filtering-options/package.json | 10 +- .../grid/filtering-strategy/package.json | 10 +- .../grids/grid/filtering-style/package.json | 10 +- samples/grids/grid/finjs/package.json | 12 +- .../grids/grid/groupby-custom/package.json | 10 +- .../grid/groupby-expressions/package.json | 10 +- .../grids/grid/groupby-paging/package.json | 10 +- .../grids/grid/groupby-styling/package.json | 10 +- .../grid/groupby-summary-options/package.json | 10 +- .../grid/groupby-summary-styling/package.json | 10 +- .../grids/grid/infinite-scroll/package.json | 10 +- .../keyboard-custom-navigation/package.json | 10 +- .../grid/keyboard-mrl-navigation/package.json | 10 +- .../keyboard-navigation-guide/package.json | 10 +- .../grid/layout-display-density/package.json | 10 +- samples/grids/grid/master-detail/package.json | 10 +- .../multi-cell-selection-mode/package.json | 10 +- .../multi-column-headers-export/package.json | 10 +- .../package.json | 10 +- .../multi-column-headers-styling/package.json | 10 +- .../package.json | 10 +- .../multi-row-layout-options/package.json | 10 +- .../grid/multi-row-layout-style/package.json | 10 +- samples/grids/grid/overview/package.json | 10 +- samples/grids/grid/paste/package.json | 10 +- .../grid/remote-paging-data/package.json | 10 +- .../grid/remote-paging-grid/package.json | 10 +- samples/grids/grid/row-adding/package.json | 10 +- samples/grids/grid/row-classes/package.json | 10 +- samples/grids/grid/row-drag-base/package.json | 10 +- .../grid/row-editing-options/package.json | 10 +- .../grids/grid/row-editing-style/package.json | 10 +- .../grids/grid/row-paging-basic/package.json | 10 +- .../grid/row-paging-options/package.json | 10 +- .../grids/grid/row-pinning-drag/package.json | 10 +- .../row-pinning-extra-column/package.json | 10 +- .../grid/row-pinning-options/package.json | 10 +- .../grids/grid/row-pinning-style/package.json | 10 +- samples/grids/grid/row-reorder/package.json | 10 +- .../grid/row-selection-mode/package.json | 10 +- .../row-selection-template-excel/package.json | 10 +- .../package.json | 10 +- samples/grids/grid/row-styles/package.json | 10 +- .../grid/state-persistence-about/package.json | 12 +- .../grid/state-persistence-main/package.json | 12 +- .../grid/styling-custom-CSS/package.json | 10 +- .../grids/grid/toolbar-sample-1/package.json | 10 +- .../grids/grid/toolbar-sample-2/package.json | 10 +- .../grids/grid/toolbar-sample-3/package.json | 10 +- .../grids/grid/toolbar-sample-4/package.json | 10 +- samples/grids/grid/toolbar-style/package.json | 10 +- .../action-strip/package.json | 10 +- .../advanced-filtering-options/package.json | 10 +- .../advanced-filtering-style/package.json | 10 +- .../cell-editing-sample/package.json | 10 +- .../cell-editing-styling/package.json | 10 +- .../cell-selection-mode/package.json | 10 +- .../cell-selection-overview/package.json | 10 +- .../cell-selection-style/package.json | 10 +- .../cell-selection-styling/package.json | 12 +- .../column-auto-sizing/package.json | 10 +- .../column-collapsible-groups/package.json | 10 +- .../column-hiding-toolbar-style/package.json | 10 +- .../column-hiding-toolbar/package.json | 10 +- .../column-moving-options/package.json | 10 +- .../column-moving-styles/package.json | 10 +- .../column-pinning-options/package.json | 10 +- .../column-pinning-right-side/package.json | 10 +- .../column-pinning-styles/package.json | 10 +- .../column-pinning/package.json | 10 +- .../column-resize-styling/package.json | 10 +- .../column-resizing/package.json | 10 +- .../column-selection-group/package.json | 10 +- .../column-selection-mode/package.json | 10 +- .../column-selection-styles/package.json | 10 +- .../column-sorting-indicators/package.json | 10 +- .../column-sorting-options/package.json | 10 +- .../column-sorting-style/package.json | 10 +- .../conditional-cell-style-1/package.json | 10 +- .../conditional-cell-style-2/package.json | 10 +- .../conditional-row-selectors/package.json | 10 +- .../custom-filtering/package.json | 10 +- .../data-exporting-indicator/package.json | 10 +- .../package.json | 10 +- .../data-summary-formatter/package.json | 10 +- .../data-summary-options-styling/package.json | 10 +- .../data-summary-options/package.json | 10 +- .../data-summary-template/package.json | 10 +- .../editing-columns/package.json | 10 +- .../editing-events/package.json | 10 +- .../editing-lifecycle/package.json | 10 +- .../excel-exporting/package.json | 10 +- .../package.json | 10 +- .../package.json | 10 +- .../package.json | 10 +- .../excel-style-filtering-style/package.json | 10 +- .../filtering-options/package.json | 10 +- .../filtering-style/package.json | 10 +- .../hierarchical-grid-options/package.json | 10 +- .../package.json | 10 +- .../hierarchical-grid-styling/package.json | 10 +- .../layout-display-density/package.json | 10 +- .../multi-column-headers-export/package.json | 10 +- .../package.json | 10 +- .../multi-column-headers-styling/package.json | 10 +- .../package.json | 10 +- .../hierarchical-grid/overview/package.json | 10 +- .../remote-paging-sample/package.json | 10 +- .../hierarchical-grid/row-adding/package.json | 10 +- .../row-classes/package.json | 10 +- .../row-drag-base/package.json | 10 +- .../row-editing-options/package.json | 10 +- .../row-editing-style/package.json | 10 +- .../row-pinning-extra-column/package.json | 10 +- .../row-pinning-options/package.json | 10 +- .../row-pinning-style/package.json | 10 +- .../row-reorder/package.json | 10 +- .../row-selection-mode/package.json | 10 +- .../package.json | 10 +- .../hierarchical-grid/row-styles/package.json | 10 +- .../state-persistence-about/package.json | 12 +- .../state-persistence-main/package.json | 12 +- .../toolbar-sample-1/package.json | 10 +- .../toolbar-sample-2/package.json | 10 +- .../toolbar-sample-3/package.json | 10 +- .../toolbar-sample-4/package.json | 10 +- .../toolbar-style/package.json | 10 +- .../grids/list/add-list-items/package.json | 6 +- .../grids/list/list-item-content/package.json | 4 +- samples/grids/list/overview/package.json | 4 +- samples/grids/list/styling/package.json | 4 +- .../aggregate-max-sales/package.json | 10 +- .../aggregate-units-sold/package.json | 10 +- samples/grids/pivot-grid/basic/package.json | 10 +- .../data-persistence-noop/package.json | 12 +- .../pivot-grid/data-selector/package.json | 10 +- .../grids/pivot-grid/features/package.json | 10 +- samples/grids/pivot-grid/remote/package.json | 10 +- .../state-persistence-about/package.json | 12 +- .../state-persistence-main/package.json | 12 +- .../grids/tree-grid/action-strip/package.json | 10 +- .../advanced-filtering-options/package.json | 10 +- .../advanced-filtering-style/package.json | 10 +- .../cell-editing-sample/package.json | 10 +- .../cell-editing-styling/package.json | 10 +- .../cell-selection-mode/package.json | 10 +- .../cell-selection-style/package.json | 10 +- .../clipboard-operations/package.json | 12 +- .../tree-grid/column-auto-sizing/package.json | 10 +- .../column-collapsible-groups/package.json | 10 +- .../tree-grid/column-data-types/package.json | 10 +- .../column-hiding-toolbar-style/package.json | 10 +- .../column-hiding-toolbar/package.json | 10 +- .../column-moving-options/package.json | 10 +- .../column-moving-styles/package.json | 10 +- .../column-pinning-options/package.json | 10 +- .../column-pinning-right-side/package.json | 10 +- .../column-pinning-styles/package.json | 10 +- .../column-pinning-toolbar/package.json | 10 +- .../tree-grid/column-pinning/package.json | 10 +- .../column-resize-styling/package.json | 10 +- .../tree-grid/column-resizing/package.json | 10 +- .../column-selection-group/package.json | 10 +- .../column-selection-mode/package.json | 10 +- .../column-selection-style/package.json | 10 +- .../column-selection-styles/package.json | 10 +- .../column-sorting-indicators/package.json | 10 +- .../column-sorting-options/package.json | 10 +- .../column-sorting-style/package.json | 10 +- .../conditional-cell-style-1/package.json | 10 +- .../conditional-cell-style-2/package.json | 10 +- .../conditional-row-selectors/package.json | 10 +- .../tree-grid/custom-filtering/package.json | 10 +- .../data-exporting-indicator/package.json | 10 +- .../tree-grid/data-searching/package.json | 12 +- .../data-summaries-custom/package.json | 10 +- .../data-summary-children/package.json | 10 +- .../data-summary-formatter/package.json | 10 +- .../data-summary-options-styling/package.json | 10 +- .../data-summary-options/package.json | 10 +- .../data-summary-template/package.json | 10 +- .../tree-grid/editing-columns/package.json | 10 +- .../tree-grid/editing-events/package.json | 10 +- .../tree-grid/editing-lifecycle/package.json | 10 +- .../tree-grid/excel-exporting/package.json | 10 +- .../package.json | 10 +- .../package.json | 10 +- .../package.json | 10 +- .../excel-style-filtering-style/package.json | 10 +- .../tree-grid/filtering-options/package.json | 10 +- .../tree-grid/filtering-style/package.json | 10 +- samples/grids/tree-grid/finjs/package.json | 12 +- .../keyboard-custom-navigation/package.json | 10 +- .../keyboard-navigation-guide/package.json | 10 +- .../layout-display-density/package.json | 10 +- .../tree-grid/load-on-demand/package.json | 10 +- .../multi-cell-selection-mode/package.json | 10 +- .../multi-column-headers-export/package.json | 10 +- .../package.json | 10 +- .../multi-column-headers-styling/package.json | 10 +- .../package.json | 10 +- .../tree-grid/overview-styling/package.json | 10 +- samples/grids/tree-grid/overview/package.json | 10 +- .../grids/tree-grid/row-adding/package.json | 10 +- .../grids/tree-grid/row-classes/package.json | 10 +- .../tree-grid/row-drag-base/package.json | 10 +- .../row-editing-options/package.json | 10 +- .../tree-grid/row-editing-style/package.json | 10 +- .../tree-grid/row-paging-basic/package.json | 10 +- .../tree-grid/row-paging-options/package.json | 10 +- .../tree-grid/row-paging-style/package.json | 10 +- .../row-pinning-extra-column/package.json | 10 +- .../row-pinning-options/package.json | 10 +- .../tree-grid/row-pinning-style/package.json | 10 +- .../grids/tree-grid/row-reorder/package.json | 10 +- .../tree-grid/row-selection-mode/package.json | 10 +- .../row-selection-template-excel/package.json | 10 +- .../package.json | 10 +- .../grids/tree-grid/row-styles/package.json | 10 +- .../state-persistence-about/package.json | 12 +- .../state-persistence-main/package.json | 12 +- .../tree-grid/toolbar-sample-1/package.json | 10 +- .../tree-grid/toolbar-sample-2/package.json | 10 +- .../tree-grid/toolbar-sample-3/package.json | 10 +- .../tree-grid/toolbar-sample-4/package.json | 10 +- .../tree-grid/toolbar-style/package.json | 10 +- .../using-primary-foreign-keys/package.json | 10 +- samples/grids/tree/basic-example/package.json | 4 +- .../load-on-demand-virtualized/package.json | 4 +- .../grids/tree/load-on-demand/package.json | 4 +- samples/inputs/badge/outlined/package.json | 4 +- samples/inputs/badge/shape/package.json | 4 +- samples/inputs/badge/variants/package.json | 4 +- .../button-group/alignment/package.json | 4 +- .../inputs/button-group/overview/package.json | 4 +- .../button-group/selection/package.json | 4 +- samples/inputs/button-group/size/package.json | 4 +- .../inputs/button-group/styling/package.json | 4 +- samples/inputs/button/contained/package.json | 4 +- samples/inputs/button/download/package.json | 4 +- samples/inputs/button/fab/package.json | 4 +- samples/inputs/button/flat/package.json | 4 +- samples/inputs/button/outlined/package.json | 4 +- samples/inputs/button/overview/package.json | 4 +- samples/inputs/button/size/package.json | 4 +- samples/inputs/button/styling/package.json | 4 +- samples/inputs/checkbox/checking/package.json | 4 +- samples/inputs/checkbox/disabled/package.json | 4 +- .../checkbox/indeterminate/package.json | 4 +- samples/inputs/checkbox/label/package.json | 4 +- samples/inputs/checkbox/overview/package.json | 4 +- samples/inputs/chip/multiple/package.json | 4 +- samples/inputs/chip/overview/package.json | 4 +- samples/inputs/chip/size/package.json | 4 +- samples/inputs/chip/styling/package.json | 4 +- samples/inputs/chip/variants/package.json | 4 +- .../dynamic/package.json | 4 +- .../indeterminate/package.json | 4 +- .../simple/package.json | 4 +- .../styling/package.json | 4 +- samples/inputs/combo/features/package.json | 4 +- samples/inputs/combo/overview/package.json | 4 +- samples/inputs/combo/selection/package.json | 4 +- samples/inputs/combo/simplified/package.json | 4 +- samples/inputs/combo/styling/package.json | 4 +- samples/inputs/combo/templates/package.json | 4 +- .../input-format-display-format/package.json | 4 +- .../min-max-value/package.json | 4 +- .../date-time-input/overview/package.json | 4 +- .../date-time-input/step-up-down/package.json | 4 +- samples/inputs/dropdown/group/package.json | 4 +- samples/inputs/dropdown/header/package.json | 4 +- samples/inputs/dropdown/item/package.json | 4 +- samples/inputs/dropdown/overview/package.json | 4 +- samples/inputs/dropdown/position/package.json | 4 +- samples/inputs/dropdown/styling/package.json | 4 +- samples/inputs/dropdown/target/package.json | 4 +- samples/inputs/icon-button/size/package.json | 4 +- .../inputs/icon-button/styling/package.json | 4 +- .../inputs/icon-button/variant/package.json | 4 +- samples/inputs/input/helper-text/package.json | 4 +- samples/inputs/input/overview/package.json | 4 +- .../inputs/input/prefix-suffix/package.json | 4 +- samples/inputs/input/size/package.json | 4 +- samples/inputs/input/styling/package.json | 4 +- .../dynamic/package.json | 4 +- .../simple/package.json | 4 +- .../striped/package.json | 4 +- .../styling/package.json | 4 +- .../types/package.json | 4 +- .../mask-input/applying-mask/package.json | 4 +- .../inputs/mask-input/overview/package.json | 4 +- .../mask-input/value-modes/package.json | 4 +- samples/inputs/radio/alignment/package.json | 4 +- samples/inputs/radio/disabled/package.json | 4 +- samples/inputs/radio/group/package.json | 4 +- samples/inputs/radio/invalid/package.json | 4 +- samples/inputs/radio/label/package.json | 4 +- samples/inputs/radio/styling/package.json | 4 +- samples/inputs/rating/basic/package.json | 4 +- samples/inputs/rating/custom/package.json | 4 +- samples/inputs/rating/empty/package.json | 4 +- .../rating/single-selection/package.json | 4 +- samples/inputs/rating/styling/package.json | 4 +- samples/inputs/ripple/button/package.json | 4 +- samples/inputs/ripple/color/package.json | 4 +- samples/inputs/select/group/package.json | 4 +- samples/inputs/select/header/package.json | 4 +- samples/inputs/select/item/package.json | 4 +- samples/inputs/select/overview/package.json | 4 +- samples/inputs/select/styling/package.json | 4 +- .../inputs/slider/constraints/package.json | 4 +- samples/inputs/slider/disabled/package.json | 4 +- samples/inputs/slider/discrete/package.json | 4 +- samples/inputs/slider/labels/package.json | 4 +- samples/inputs/slider/overview/package.json | 4 +- samples/inputs/slider/styling/package.json | 4 +- .../inputs/slider/tick-labels/package.json | 4 +- samples/inputs/slider/ticks/package.json | 4 +- .../inputs/slider/value-format/package.json | 4 +- samples/inputs/slider/value/package.json | 4 +- samples/inputs/switches/checking/package.json | 4 +- samples/inputs/switches/disabled/package.json | 4 +- samples/inputs/switches/label/package.json | 4 +- samples/inputs/switches/overview/package.json | 4 +- .../textarea/form-integration/package.json | 4 +- samples/inputs/textarea/overview/package.json | 4 +- samples/inputs/textarea/resize/package.json | 4 +- samples/inputs/textarea/slots/package.json | 4 +- samples/inputs/textarea/styling/package.json | 4 +- .../accordion/customization/package.json | 4 +- .../accordion/nested-scenario/package.json | 4 +- .../layouts/accordion/overview/package.json | 4 +- samples/layouts/avatar/icon/package.json | 4 +- samples/layouts/avatar/image/package.json | 4 +- samples/layouts/avatar/initials/package.json | 4 +- samples/layouts/avatar/shape/package.json | 4 +- samples/layouts/avatar/size/package.json | 4 +- samples/layouts/card/horizontal/package.json | 4 +- samples/layouts/card/integration/package.json | 4 +- samples/layouts/card/overview/package.json | 4 +- .../layouts/card/semi-horizontal/package.json | 4 +- samples/layouts/card/styling/package.json | 4 +- .../layouts/carousel/animations/package.json | 4 +- .../layouts/carousel/components/package.json | 4 +- .../layouts/carousel/overview/package.json | 4 +- .../layouts/carousel/thumbnail/package.json | 4 +- samples/layouts/divider/dashed/package.json | 4 +- samples/layouts/divider/middle/package.json | 4 +- samples/layouts/divider/overview/package.json | 4 +- samples/layouts/divider/select/package.json | 4 +- samples/layouts/divider/vertical/package.json | 4 +- .../add-content-runtime/package.json | 4 +- .../contained-in-boundaries/package.json | 4 +- .../customize-buttons/package.json | 4 +- .../embedding-frames/package.json | 6 +- .../dock-manager/focus-panes/package.json | 4 +- .../hide-pane-headers/package.json | 4 +- .../dock-manager/hiding-panes/package.json | 6 +- .../dock-manager/overview/package.json | 6 +- .../dock-manager/proximity-dock/package.json | 4 +- .../layouts/dock-manager/styling/package.json | 8 +- .../toggle-inner-dock/package.json | 4 +- .../dock-manager/updating-panes/package.json | 12 +- .../component-customization/package.json | 4 +- .../properties-and-events/package.json | 4 +- .../expansion-panel/styling/package.json | 4 +- .../expansion-panel/usage/package.json | 4 +- samples/layouts/icon/sizing/package.json | 4 +- samples/layouts/icon/styling/package.json | 4 +- .../layouts/stepper/animations/package.json | 4 +- samples/layouts/stepper/linear/package.json | 4 +- .../layouts/stepper/orientation/package.json | 4 +- samples/layouts/stepper/overview/package.json | 4 +- .../layouts/stepper/steptypes/package.json | 4 +- samples/layouts/tabs/alignment/package.json | 4 +- samples/layouts/tabs/overview/package.json | 4 +- .../layouts/tabs/prefix-suffix/package.json | 4 +- samples/layouts/tabs/scrolling/package.json | 4 +- .../geo-map/binding-data-csv/package.json | 8 +- .../binding-data-json-points/package.json | 8 +- .../geo-map/binding-data-model/package.json | 8 +- .../binding-multiple-shapes/package.json | 8 +- .../binding-multiple-sources/package.json | 8 +- .../geo-map/binding-shp-points/package.json | 8 +- .../geo-map/binding-shp-polygons/package.json | 8 +- .../binding-shp-polylines/package.json | 8 +- .../maps/geo-map/custom-tooltips/package.json | 8 +- .../geo-map/display-all-imagery/package.json | 8 +- .../geo-map/display-bing-imagery/package.json | 8 +- .../geo-map/display-esri-imagery/package.json | 8 +- .../geo-map/display-heat-imagery/package.json | 8 +- .../geo-map/display-osm-imagery/package.json | 8 +- .../maps/geo-map/marker-template/package.json | 8 +- samples/maps/geo-map/marker-type/package.json | 8 +- samples/maps/geo-map/navigation/package.json | 8 +- samples/maps/geo-map/overview/package.json | 8 +- .../maps/geo-map/shape-styling/package.json | 8 +- .../maps/geo-map/synchronization/package.json | 8 +- .../geo-map/triangulating-data/package.json | 8 +- .../type-scatter-area-series/package.json | 8 +- .../type-scatter-bubble-series/package.json | 8 +- .../type-scatter-contour-series/package.json | 8 +- .../type-scatter-density-series/package.json | 8 +- .../type-scatter-symbol-series/package.json | 8 +- .../type-shape-polygon-series/package.json | 8 +- .../type-shape-polyline-series/package.json | 8 +- samples/menus/nav-bar/overview/package.json | 4 +- samples/menus/nav-bar/styling/package.json | 4 +- .../nav-drawer/add-drawer-items/package.json | 4 +- .../menus/nav-drawer/add-mini/package.json | 4 +- .../add-positions-navbar/package.json | 4 +- samples/menus/nav-drawer/styling/package.json | 4 +- .../banner-advanced-sample/package.json | 4 +- .../banner/banner-sample-1/package.json | 4 +- .../banner/banner-sample-2/package.json | 4 +- .../banner/banner-styling/package.json | 4 +- .../dialog/closing-variations/package.json | 4 +- .../notifications/dialog/form/package.json | 4 +- .../dialog/overview/package.json | 4 +- .../notifications/dialog/styling/package.json | 4 +- .../snackbar/action-text/package.json | 4 +- .../snackbar/display-time/package.json | 4 +- .../snackbar/overview/package.json | 4 +- .../snackbar/styling/package.json | 4 +- .../notifications/toast/overview/package.json | 4 +- .../toast/properties/package.json | 4 +- .../notifications/toast/styling/package.json | 4 +- .../calendar/disabled-dates/package.json | 4 +- .../calendar/formatting/package.json | 4 +- .../scheduling/calendar/header/package.json | 4 +- .../calendar/multiple-months/package.json | 4 +- .../calendar/multiple-selection/package.json | 4 +- .../scheduling/calendar/overview/package.json | 4 +- .../calendar/range-selection/package.json | 4 +- samples/scheduling/calendar/size/package.json | 4 +- .../calendar/special-dates/package.json | 4 +- .../scheduling/calendar/styling/package.json | 4 +- .../calendar/week-numbers/package.json | 4 +- .../date-picker/dialog-mode/package.json | 4 +- .../scheduling/date-picker/form/package.json | 4 +- .../date-picker/format/package.json | 4 +- .../date-picker/overview/package.json | 4 +- .../date-picker/styling/package.json | 4 +- 870 files changed, 3367 insertions(+), 3368 deletions(-) diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js index 1e6b1ecb28..a26d31f514 100644 --- a/browser/tasks/gulp-samples.js +++ b/browser/tasks/gulp-samples.js @@ -976,22 +976,22 @@ function updateIG(cb) { // { name: "igniteui-webcomponents-core", version: "3.2.2" }, // PUBLIC NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-webcomponents-core" , version: "5.0.3-beta.0" }, - { name: "igniteui-webcomponents-charts" , version: "5.0.3-beta.0" }, - { name: "igniteui-webcomponents-excel" , version: "5.0.3-beta.0" }, - { name: "igniteui-webcomponents-gauges" , version: "5.0.3-beta.0" }, - { name: "igniteui-webcomponents-grids" , version: "5.0.3-beta.0" }, - { name: "igniteui-webcomponents-inputs" , version: "5.0.3-beta.0" }, - { name: "igniteui-webcomponents-layouts" , version: "5.0.3-beta.0" }, - { name: "igniteui-webcomponents-maps" , version: "5.0.3-beta.0" }, - { name: "igniteui-webcomponents-spreadsheet-chart-adapter", version: "5.0.3-beta.0" }, - { name: "igniteui-webcomponents-spreadsheet" , version: "5.0.3-beta.0" }, - { name: "igniteui-webcomponents-datasources" , version: "5.0.3-beta.0" }, + { name: "igniteui-webcomponents-core" , version: "5.1.0" }, + { name: "igniteui-webcomponents-charts" , version: "5.1.0" }, + { name: "igniteui-webcomponents-excel" , version: "5.1.0" }, + { name: "igniteui-webcomponents-gauges" , version: "5.1.0" }, + { name: "igniteui-webcomponents-grids" , version: "5.1.0" }, + { name: "igniteui-webcomponents-inputs" , version: "5.1.0" }, + { name: "igniteui-webcomponents-layouts" , version: "5.1.0" }, + { name: "igniteui-webcomponents-maps" , version: "5.1.0" }, + { name: "igniteui-webcomponents-spreadsheet-chart-adapter", version: "5.1.0" }, + { name: "igniteui-webcomponents-spreadsheet" , version: "5.1.0" }, + { name: "igniteui-webcomponents-datasources" , version: "5.1.0" }, // these IG packages are sometimes updated: - { name: "igniteui-webcomponents", version: "5.1.1" }, - { name: "igniteui-dockmanager", version: "1.14.3" }, + { name: "igniteui-webcomponents", version: "5.1.2" }, + { name: "igniteui-dockmanager", version: "1.15.2" }, // other packages: - { name: "webpack", version: "^5.74.0" }, + { name: "webpack", version: "^5.96.1" }, { name: "webpack-cli", version: "^4.10.0" }, { name: "webpack-dev-server", version: "^4.11.1" }, { name: "lit", version: "^3.2.0" }, diff --git a/package-lock.json b/package-lock.json index ed5c23014e..bb4c5768f7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -20,19 +20,19 @@ "@webcomponents/webcomponentsjs": "2.3.0", "core-js": "^3.6.5", "file-saver": "^2.0.2", - "igniteui-dockmanager": "1.14.3", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-datasources": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.0.3-beta.0", + "igniteui-dockmanager": "1.15.2", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-datasources": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.0", "lit": "^3.2.0", "lit-html": "^3.2.0" }, @@ -8770,9 +8770,9 @@ } }, "node_modules/igniteui-dockmanager": { - "version": "1.14.3", - "resolved": "https://registry.npmjs.org/igniteui-dockmanager/-/igniteui-dockmanager-1.14.3.tgz", - "integrity": "sha512-nxfPXeOWs8PYOotaA5B7Ylj1pen2tpXaWa0dykJxrgkIIj1VKgybK6HahZ5FAh2dui4hqyAgE20FLDHTU5zkSA==", + "version": "1.15.2", + "resolved": "https://registry.npmjs.org/igniteui-dockmanager/-/igniteui-dockmanager-1.15.2.tgz", + "integrity": "sha512-FtcWCbHhWfTuVZ1ltaiZstu88/O6NYny6BzkgVNELoLa/oqHCktjL6JoMTOC4a/QwDpoP3AMi+UmbvkQrE0fRQ==", "dependencies": { "igniteui-trial-watermark": "^1.0.3" } @@ -8783,10 +8783,9 @@ "integrity": "sha512-q6thtu+7R6MOB+i9GorFPCcWeOImW43BzCAtKnDAYWwaoueb8Lg1EhBkIhAyfEIH+yZ/9c5lnZdU61/GRPoP+g==" }, "node_modules/igniteui-webcomponents": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-5.1.1.tgz", - "integrity": "sha512-//owN7Cr9q+CBjxcZYNqECnaD4d7NHIzXJlaIr1Hi39yECP/24XnX+84UjVHgHldnAK0WlzSRR71hQud+W6S4Q==", - "license": "SEE LICENSE IN LICENSE", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-5.1.2.tgz", + "integrity": "sha512-OnNLMm4VMpBLyGF8P6zDaHEqaw3M+Rfy+/FHAkpzZAs5TD31uwFZrd4mvKV5Isqp1VuSma8Gzr0RnSti29QbCw==", "dependencies": { "@floating-ui/dom": "^1.6.0", "@lit-labs/virtualizer": "^2.0.10", @@ -8798,14 +8797,14 @@ } }, "node_modules/igniteui-webcomponents-charts": { - "version": "5.0.3-beta.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-charts/-/igniteui-webcomponents-charts-5.0.3-beta.0.tgz", - "integrity": "sha512-rS1/WtNSUdZMXOQk26yW6oMkf5bVOc3wYSqK0VsiQJu4vUJj5WiaZWWsHPgsxsJfeYEG5mfROOxryNazCA1NTQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-charts/-/igniteui-webcomponents-charts-5.1.0.tgz", + "integrity": "sha512-f0qfHyt7AVKaXwUInkX7mbqmY3xN7M0mdGQXSH19BmImtXTRFnLQmz88qDRY7klZu30hBAOMF+cCwqeplh0/CQ==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.3-beta.0" + "igniteui-webcomponents-core": "5.1.0" } }, "node_modules/igniteui-webcomponents-charts/node_modules/tslib": { @@ -8814,9 +8813,9 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-core": { - "version": "5.0.3-beta.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-core/-/igniteui-webcomponents-core-5.0.3-beta.0.tgz", - "integrity": "sha512-8WHGu1FzaoDgqLoyWo8DtKKAc6Yq+RLxBu8KKr5NAyheQYH1V4Zviw/sQz/AmIhpMkq+EBIBBvTgAoheZOWjpA==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-core/-/igniteui-webcomponents-core-5.1.0.tgz", + "integrity": "sha512-cT+fHs2fCRpvGQJ2IUR9n5kUxyHYuqtBLTHQqLWJdsjBDsiZWaeNwQOEFRhEfgQtkK8TL0sD2JoFSJke1CZjwA==", "dependencies": { "tslib": "^2.3.1" }, @@ -8830,14 +8829,14 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-datasources": { - "version": "5.0.3-beta.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-datasources/-/igniteui-webcomponents-datasources-5.0.3-beta.0.tgz", - "integrity": "sha512-Sq3zDGpbM7wx49GMqf9Yt6QmpuPoqD61W0JoRUhJcHi50UNA2KCbCkAZAfJ2LxXEEBAdr0LuiCLsNBGw8n1RmQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-datasources/-/igniteui-webcomponents-datasources-5.1.0.tgz", + "integrity": "sha512-Wv+Wh4bwWcj3ZPo6Q+B5Cldlxxqa+VxItslUIj7hxLxRLzbOEzqe5IaMO/qp0gaX4DJLtVZGaALN7RXTUhSpCw==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.3-beta.0" + "igniteui-webcomponents-core": "5.1.0" } }, "node_modules/igniteui-webcomponents-datasources/node_modules/tslib": { @@ -8846,16 +8845,16 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-excel": { - "version": "5.0.3-beta.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-excel/-/igniteui-webcomponents-excel-5.0.3-beta.0.tgz", - "integrity": "sha512-CP5QnBGuTWrhmwaVgEzYow9xU5cKeEsa0M5jbGOsJVvuzMg9wVomVLn1hZQa5bvOJZCyK2RrXhhMRDkluH/38g==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-excel/-/igniteui-webcomponents-excel-5.1.0.tgz", + "integrity": "sha512-fCwkHy/sezTvmUxafVKL56lss6FWT3OkFgPS12/xxk71fNezXSNADthrdfCUD81MN+ENhMjm70t0nSRwGmjNeQ==", "dependencies": { "jszip": "^3.1.5", "pako": "^1.0.6", "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.3-beta.0" + "igniteui-webcomponents-core": "5.1.0" } }, "node_modules/igniteui-webcomponents-excel/node_modules/tslib": { @@ -8864,14 +8863,14 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-gauges": { - "version": "5.0.3-beta.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-gauges/-/igniteui-webcomponents-gauges-5.0.3-beta.0.tgz", - "integrity": "sha512-Nx02pjdzkTVByjoY37kzQ7DSt2TNimTE+DDnRx6pmc9dOaly8PTgF+yfjXzVDmgUCermtgk6TdPWJtdbMSoEdQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-gauges/-/igniteui-webcomponents-gauges-5.1.0.tgz", + "integrity": "sha512-l79Pog49UmFJhZTvwmz542F2vCoE/IgrRsQW6Rrqv67h31e/cWdL0vpv92SmuB/jFdaowbKz5fONT08Js+qHVQ==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.3-beta.0" + "igniteui-webcomponents-core": "5.1.0" } }, "node_modules/igniteui-webcomponents-gauges/node_modules/tslib": { @@ -8880,16 +8879,16 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-grids": { - "version": "5.0.3-beta.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-5.0.3-beta.0.tgz", - "integrity": "sha512-D19p3pLkdGvzMSfRbQgJQrS4Ui3DF4Pe1VbRnD10O0v6nBqGYml+sxbnR3mkQTLKhpOqPPiXc9WkPZsNqoiccw==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-5.1.0.tgz", + "integrity": "sha512-ap0lXTH7SumgmBDHOSCCx7DNJUU1dNMrTYmv/ywIljNox2KngWDkNCWfRvJUlUxscUbZlr7oxcB6MTBGkZhrLQ==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0" + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0" } }, "node_modules/igniteui-webcomponents-grids/node_modules/tslib": { @@ -8898,14 +8897,14 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-inputs": { - "version": "5.0.3-beta.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-inputs/-/igniteui-webcomponents-inputs-5.0.3-beta.0.tgz", - "integrity": "sha512-aciUOV3GYExvU/8z581tlbKK37pIyUhrvp/O4Qp4DIvsAI1bfi6Vg/pTMe9ayFjfLpc74/3tdAhGXjVjxy9ejQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-inputs/-/igniteui-webcomponents-inputs-5.1.0.tgz", + "integrity": "sha512-ugwnqy9mhgfHlpnXADIEEkIn8/nq1Xj7x4FEVd3wdZkT7RTs/DfrUARYEUdIJsYpSfcv+lE/0V+zuOGntibCwQ==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.3-beta.0" + "igniteui-webcomponents-core": "5.1.0" } }, "node_modules/igniteui-webcomponents-inputs/node_modules/tslib": { @@ -8914,15 +8913,15 @@ "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" }, "node_modules/igniteui-webcomponents-layouts": { - "version": "5.0.3-beta.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-layouts/-/igniteui-webcomponents-layouts-5.0.3-beta.0.tgz", - "integrity": "sha512-md5mRE7vlj1i4+Hkl2fcykJBBPfAmKnpizDiBNDz23BhS1Hj04pcL5B8emnaxk2d6tYe5arkeBvGOi16IZLADg==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-layouts/-/igniteui-webcomponents-layouts-5.1.0.tgz", + "integrity": "sha512-otY/p+eoDT6+TP2DTWRyiA9aANh4D92FMclAngbkSPfKPY/LldbasnL+gxrCQDRdHNqxLfEr11XzR5xDWdBa4Q==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0" + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0" } }, "node_modules/igniteui-webcomponents-layouts/node_modules/tslib": { @@ -8931,15 +8930,15 @@ "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" }, "node_modules/igniteui-webcomponents-maps": { - "version": "5.0.3-beta.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-maps/-/igniteui-webcomponents-maps-5.0.3-beta.0.tgz", - "integrity": "sha512-6yXPg1b4Vy6G3ExJ1+vaN4jTHEsa0vWxph7wnjZDWTD6CL8rohSquSv4joGwS2ZknnhriCGvAyHQ/Bl8ZJJ/jg==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-maps/-/igniteui-webcomponents-maps-5.1.0.tgz", + "integrity": "sha512-m3trF8Zl4/YRwdDRIU4CR32ceKtzAwIsKBJO+QCu2naE22EGEyE7B24Zr1oVBUGLzK6+BFsv/HtDyHoWFrhq1Q==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0" + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0" } }, "node_modules/igniteui-webcomponents-maps/node_modules/tslib": { @@ -8948,29 +8947,29 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-spreadsheet": { - "version": "5.0.3-beta.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet/-/igniteui-webcomponents-spreadsheet-5.0.3-beta.0.tgz", - "integrity": "sha512-ufU/OtAPvi6uZ1tl4X8X4ZEcIztt3L9rZ3bgTzY+J1fh6WrV4D4Nh2IBD14Oa8CSaxcfo/j+SU7FdNFAjNeXbg==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet/-/igniteui-webcomponents-spreadsheet-5.1.0.tgz", + "integrity": "sha512-8d52MKH7jTJXRDTA4wQrfmcyrTOBjdTC8HXPeW8sWtuwVOiF9VcBm9Q+gTpq24I5R4sfLZBydpUmOpIFUSWAaw==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0" + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0" } }, "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter": { - "version": "5.0.3-beta.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet-chart-adapter/-/igniteui-webcomponents-spreadsheet-chart-adapter-5.0.3-beta.0.tgz", - "integrity": "sha512-VDNogVI7BDx5QMWbKRS1Jq92k4PjgtW+AXEMMZ/YQjfSEzOqYE89/h3QFlUvyOCMX98Fioch9dKpWIahQt7JQg==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet-chart-adapter/-/igniteui-webcomponents-spreadsheet-chart-adapter-5.1.0.tgz", + "integrity": "sha512-g52WApAADmwfOlak6oNfIqiUNPIzdJl2hr4Yg8A/03wl+f4W+cH859zHAvqBpwTTLGo2DC+nUHhI2ZFjImTywg==", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0" + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0" } }, "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter/node_modules/tslib": { diff --git a/package.json b/package.json index 634764f98a..1f6bcba373 100644 --- a/package.json +++ b/package.json @@ -40,19 +40,19 @@ "@webcomponents/webcomponentsjs": "2.3.0", "core-js": "^3.6.5", "file-saver": "^2.0.2", - "igniteui-dockmanager": "1.14.3", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-datasources": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.0.3-beta.0", + "igniteui-dockmanager": "1.15.2", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-datasources": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.0", "lit": "^3.2.0", "lit-html": "^3.2.0" }, diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index d1899e40bf..6e8852c772 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 4ff3f1a8a6..a2061879ac 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 130ebeed84..53d7b12959 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index 1fb33dee25..9f5f886fdc 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index e25ddfc3af..b396cff716 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 4ff3f1a8a6..a2061879ac 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index e228d60596..80a11dbde7 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index d1899e40bf..6e8852c772 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index e9bb2bd534..b566357064 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 3dab0218b3..5fda8b5427 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index db2abb4cc0..526ac329dc 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index db2abb4cc0..526ac329dc 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index d3a3a0f5af..7364741400 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 44aab0b16d..4313c76dd2 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index d1e63bc9ae..9186f79ca8 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index d1e63bc9ae..9186f79ca8 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index d410d6df14..ebf041a5c2 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 3aaf7cb18d..ba0a679ef3 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index d0df75c680..a8d28a917c 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index 747f83790f..1b8365059c 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 589d23e3bf..cb25ff8645 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 7631447cd8..3ce8dfde46 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index e56e21584d..e994fc5aff 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 749ca3bfe1..68094b19f5 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 589d23e3bf..cb25ff8645 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 462cda9f5c..a931b5dccc 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index bbfefd3db6..a273195873 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 393292b0c0..04eba8b615 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 393292b0c0..04eba8b615 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 393292b0c0..04eba8b615 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 393292b0c0..04eba8b615 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 393292b0c0..04eba8b615 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index 130ebeed84..53d7b12959 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index 130ebeed84..53d7b12959 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index 130ebeed84..53d7b12959 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 73c10c727c..7e4ac8a4b5 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 393292b0c0..04eba8b615 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 66c1c01084..0740c88fe2 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 0c158582ab..4856057f53 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index a6fd19170f..21bea624d8 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 9b3d2e48f7..20fe9acd3e 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 245c3e8e45..d75cfb9590 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/series-error-bars/package.json b/samples/charts/data-chart/series-error-bars/package.json index 42ab399e63..b93c50cbae 100644 --- a/samples/charts/data-chart/series-error-bars/package.json +++ b/samples/charts/data-chart/series-error-bars/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 3b13cbfe82..5e55c6ceca 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 0965c6d7a3..5563c17835 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 77f143cc9b..b7d3033d2b 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 0446916fc2..4be2d8ec68 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 6ed68b1d6a..43ceb6862e 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 8b89849cbe..61a403d111 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index eb7e0a0ef4..3fe1d05925 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 4313f8d6f6..61134315cc 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index ed3131c30e..3953da9ead 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-financial-indicator-column/package.json b/samples/charts/data-chart/type-financial-indicator-column/package.json index c4239aaecf..3f311683b1 100644 --- a/samples/charts/data-chart/type-financial-indicator-column/package.json +++ b/samples/charts/data-chart/type-financial-indicator-column/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-financial-indicator-line/package.json b/samples/charts/data-chart/type-financial-indicator-line/package.json index 666b04639b..034f31b57a 100644 --- a/samples/charts/data-chart/type-financial-indicator-line/package.json +++ b/samples/charts/data-chart/type-financial-indicator-line/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 87bf90c883..0f45508e9b 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index b779b8bf4e..95678a5906 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 5874a0d771..43564b6228 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index af5a8243b8..be5706caea 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index cba8aacdc0..ded806da83 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 6bdd2a1817..8e885549ba 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 251b930548..dbb118a53f 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 8a7c157b7e..a8e534923d 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index f0e8b03c74..c8e4b51222 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 84c9e5f8e9..071000e0a1 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 97f66466ef..3f3cb1a822 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 835e145027..f4982ad971 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 633d9111c1..023348173f 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index fc26a70af5..7f0034d8db 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index 130ebeed84..53d7b12959 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 38076bf1d4..15be6f2453 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 5156d00128..de630dd826 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index f0a8f2caf7..52b8a35939 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 3a95bcea12..ff4ff27c20 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index b98093c4ed..db97378c75 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 53237dffca..0eaf7fa536 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 6f7a7df36d..b65d79a6c7 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 93ac23d70e..252110bd49 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index a102f45195..7a492096a4 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 3f0b745612..95c10777f6 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 2f5e9f6726..f09ce308c5 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index d847182fad..363d3e8994 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index de8911111c..c63ad2b06e 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 86857e6f1e..41e4d10623 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index ff8d3de808..c81f29d85b 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 7483bbe292..91113c48da 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 472f661b70..aed3033f14 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 7ea1745476..5e1d68587e 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 9b904cb357..2094244bbb 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index c62bd76eaf..659ae76a1e 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 888494e69c..4438e1c932 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 355df3bc2a..fe770cdbce 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 130ebeed84..53d7b12959 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index c4e00bddcb..dba387c55d 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 5dc9de264c..2f71c58d09 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index 130ebeed84..53d7b12959 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 130ebeed84..53d7b12959 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 130ebeed84..53d7b12959 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 130ebeed84..53d7b12959 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 130ebeed84..53d7b12959 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 6f36edde9c..e5487fe274 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 3265726c77..cfe663c26f 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index a1dd5e86ea..18acf18b3f 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 4e1d83ec03..8b8cddee8a 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/editors/multi-column-combobox/overview/package.json b/samples/editors/multi-column-combobox/overview/package.json index a781416884..7011138e6d 100644 --- a/samples/editors/multi-column-combobox/overview/package.json +++ b/samples/editors/multi-column-combobox/overview/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/editors/x-date-picker/date-limits/package.json b/samples/editors/x-date-picker/date-limits/package.json index 61fa4f3f96..20254fff6f 100644 --- a/samples/editors/x-date-picker/date-limits/package.json +++ b/samples/editors/x-date-picker/date-limits/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/editors/x-date-picker/editing/package.json b/samples/editors/x-date-picker/editing/package.json index ec509f96bb..e5e4bb504c 100644 --- a/samples/editors/x-date-picker/editing/package.json +++ b/samples/editors/x-date-picker/editing/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/editors/x-date-picker/format/package.json b/samples/editors/x-date-picker/format/package.json index 0e37a9d8cb..29e325bbb9 100644 --- a/samples/editors/x-date-picker/format/package.json +++ b/samples/editors/x-date-picker/format/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/editors/x-date-picker/overview/package.json b/samples/editors/x-date-picker/overview/package.json index 2dcf73057e..f8e5117f7e 100644 --- a/samples/editors/x-date-picker/overview/package.json +++ b/samples/editors/x-date-picker/overview/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/editors/x-date-picker/range/package.json b/samples/editors/x-date-picker/range/package.json index c4b6631ae7..bd9f342e06 100644 --- a/samples/editors/x-date-picker/range/package.json +++ b/samples/editors/x-date-picker/range/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index a38d881bb8..84ee93e2b8 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -25,11 +25,11 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 813e3cc00d..a4dada8d17 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -25,8 +25,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 4876d9b3cd..74e8a6f8ab 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -25,8 +25,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 846067893c..65aaed724c 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -25,8 +25,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index d6faff3c8a..ffa9f2f094 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -25,12 +25,12 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 735ad9ee3c..3a1774b0b7 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -25,12 +25,12 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 729939d8ee..8d7f5e041b 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index aa1d8bbecd..6b90a4e037 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -25,11 +25,11 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index f1117a1739..345bb7bb66 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index c197b470d2..4159d03db2 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 1790f3cf9f..157dc9d11f 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 217030ca9d..92661bdfec 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 15fba4ba68..1f77b4c0c3 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 76e6e5fb6a..b2f214dd3d 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/spreadsheet/filter-dialog/package.json b/samples/excel/spreadsheet/filter-dialog/package.json index 8de869918c..18ffcb6902 100644 --- a/samples/excel/spreadsheet/filter-dialog/package.json +++ b/samples/excel/spreadsheet/filter-dialog/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/spreadsheet/format-dialog/package.json b/samples/excel/spreadsheet/format-dialog/package.json index 555f008ff4..73b6816096 100644 --- a/samples/excel/spreadsheet/format-dialog/package.json +++ b/samples/excel/spreadsheet/format-dialog/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index c512bfc5f2..538f926b6d 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index e29390af5d..da5d219803 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/excel/spreadsheet/sort-dialog/package.json b/samples/excel/spreadsheet/sort-dialog/package.json index 4c34dd076a..76f9bc922b 100644 --- a/samples/excel/spreadsheet/sort-dialog/package.json +++ b/samples/excel/spreadsheet/sort-dialog/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-excel": "5.0.3-beta.0", - "igniteui-webcomponents-spreadsheet": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-excel": "5.1.0", + "igniteui-webcomponents-spreadsheet": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 53f625df16..858df87b20 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index 521dd4017c..6c584a3aae 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 2b109d0ff6..d1f99699b8 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index eb5bb63e65..820ae1973c 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 4df35de231..6ca291dd64 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index a00baac99c..82394c7178 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 9565b3f4e6..2405357906 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index 80ec193831..ac7a5818a4 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/bullet-graph/type-filled/package.json b/samples/gauges/bullet-graph/type-filled/package.json index 6cf29dc128..b286d26d6b 100644 --- a/samples/gauges/bullet-graph/type-filled/package.json +++ b/samples/gauges/bullet-graph/type-filled/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/bullet-graph/type-horizontal/package.json b/samples/gauges/bullet-graph/type-horizontal/package.json index c973d6a103..a2bb3e8dbd 100644 --- a/samples/gauges/bullet-graph/type-horizontal/package.json +++ b/samples/gauges/bullet-graph/type-horizontal/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/bullet-graph/type-reversed/package.json b/samples/gauges/bullet-graph/type-reversed/package.json index 8ff1f8096b..cb11858dcd 100644 --- a/samples/gauges/bullet-graph/type-reversed/package.json +++ b/samples/gauges/bullet-graph/type-reversed/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/bullet-graph/type-segmented/package.json b/samples/gauges/bullet-graph/type-segmented/package.json index 887fe799c5..7078b10714 100644 --- a/samples/gauges/bullet-graph/type-segmented/package.json +++ b/samples/gauges/bullet-graph/type-segmented/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/bullet-graph/type-vertical/package.json b/samples/gauges/bullet-graph/type-vertical/package.json index d7756195b2..7fd4c66f20 100644 --- a/samples/gauges/bullet-graph/type-vertical/package.json +++ b/samples/gauges/bullet-graph/type-vertical/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 538fcede93..36dac014bd 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 6630764544..6d1c2040ac 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index fb58740cc3..e36768fa9d 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 6e7877b7e4..e31af6df17 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 70355bd7ba..0dd41ae3b5 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index d1fee6f3de..098d6cf9ea 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index a2422bf11d..e8969ce86c 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index d1a8963b22..4e75f1196f 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/type-curved/package.json b/samples/gauges/linear-gauge/type-curved/package.json index 6d7c68115d..89e70aed6c 100644 --- a/samples/gauges/linear-gauge/type-curved/package.json +++ b/samples/gauges/linear-gauge/type-curved/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/type-filled/package.json b/samples/gauges/linear-gauge/type-filled/package.json index 722b2a6876..4a8716fb75 100644 --- a/samples/gauges/linear-gauge/type-filled/package.json +++ b/samples/gauges/linear-gauge/type-filled/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/type-horizontal/package.json b/samples/gauges/linear-gauge/type-horizontal/package.json index c66ad8310e..13c1aea9c9 100644 --- a/samples/gauges/linear-gauge/type-horizontal/package.json +++ b/samples/gauges/linear-gauge/type-horizontal/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/type-multi-range/package.json b/samples/gauges/linear-gauge/type-multi-range/package.json index 80fc780397..a1330e0f97 100644 --- a/samples/gauges/linear-gauge/type-multi-range/package.json +++ b/samples/gauges/linear-gauge/type-multi-range/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/type-multi-scale/package.json b/samples/gauges/linear-gauge/type-multi-scale/package.json index 9c2e530802..af58f3474d 100644 --- a/samples/gauges/linear-gauge/type-multi-scale/package.json +++ b/samples/gauges/linear-gauge/type-multi-scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/type-segmented/package.json b/samples/gauges/linear-gauge/type-segmented/package.json index cfceae5aef..dc1e8af5be 100644 --- a/samples/gauges/linear-gauge/type-segmented/package.json +++ b/samples/gauges/linear-gauge/type-segmented/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/linear-gauge/type-vertical/package.json b/samples/gauges/linear-gauge/type-vertical/package.json index 19eb71ece4..86bd12761c 100644 --- a/samples/gauges/linear-gauge/type-vertical/package.json +++ b/samples/gauges/linear-gauge/type-vertical/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index ce3960a5e5..4120850959 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 58f90b8481..5759cf877f 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 844c92bf68..27a96ec568 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 273c67b002..f20b661da7 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 53de2376e5..97a12a6770 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 273c67b002..f20b661da7 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index bc20620b32..95c4e32de4 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index ce055d1d40..dc006bc153 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index ba19b97076..d21b696bd5 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/type-column/package.json b/samples/gauges/radial-gauge/type-column/package.json index 1471fe94cd..729fb7a2b2 100644 --- a/samples/gauges/radial-gauge/type-column/package.json +++ b/samples/gauges/radial-gauge/type-column/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/type-curved/package.json b/samples/gauges/radial-gauge/type-curved/package.json index 96cbfda8fb..792bbb59ce 100644 --- a/samples/gauges/radial-gauge/type-curved/package.json +++ b/samples/gauges/radial-gauge/type-curved/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/type-direction/package.json b/samples/gauges/radial-gauge/type-direction/package.json index 6dc4ccd5a2..56c4a07166 100644 --- a/samples/gauges/radial-gauge/type-direction/package.json +++ b/samples/gauges/radial-gauge/type-direction/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/type-full/package.json b/samples/gauges/radial-gauge/type-full/package.json index bed9833adc..34eca3a4a0 100644 --- a/samples/gauges/radial-gauge/type-full/package.json +++ b/samples/gauges/radial-gauge/type-full/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/type-half/package.json b/samples/gauges/radial-gauge/type-half/package.json index c989d36341..ed3b6a8ad3 100644 --- a/samples/gauges/radial-gauge/type-half/package.json +++ b/samples/gauges/radial-gauge/type-half/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/type-quatre/package.json b/samples/gauges/radial-gauge/type-quatre/package.json index 227a9afa73..852c17543c 100644 --- a/samples/gauges/radial-gauge/type-quatre/package.json +++ b/samples/gauges/radial-gauge/type-quatre/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/type-ring/package.json b/samples/gauges/radial-gauge/type-ring/package.json index 0ce06ddbbe..d79a853957 100644 --- a/samples/gauges/radial-gauge/type-ring/package.json +++ b/samples/gauges/radial-gauge/type-ring/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/type-segmented/package.json b/samples/gauges/radial-gauge/type-segmented/package.json index 7bea1911cd..3effef16a7 100644 --- a/samples/gauges/radial-gauge/type-segmented/package.json +++ b/samples/gauges/radial-gauge/type-segmented/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/gauges/radial-gauge/type-semi/package.json b/samples/gauges/radial-gauge/type-semi/package.json index e1fb299b35..80c55091f1 100644 --- a/samples/gauges/radial-gauge/type-semi/package.json +++ b/samples/gauges/radial-gauge/type-semi/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/accessibility/package.json b/samples/grids/data-grid/accessibility/package.json index c6c763fa5e..c8124f4f21 100644 --- a/samples/grids/data-grid/accessibility/package.json +++ b/samples/grids/data-grid/accessibility/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/binding-data-service/package.json b/samples/grids/data-grid/binding-data-service/package.json index e4dcd082c1..ddd1bb7941 100644 --- a/samples/grids/data-grid/binding-data-service/package.json +++ b/samples/grids/data-grid/binding-data-service/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/binding-live-data/package.json b/samples/grids/data-grid/binding-live-data/package.json index ac62141270..3cf6485a80 100644 --- a/samples/grids/data-grid/binding-live-data/package.json +++ b/samples/grids/data-grid/binding-live-data/package.json @@ -29,11 +29,11 @@ "@webcomponents/webcomponentsjs": "2.3.0", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -57,7 +57,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/binding-local-data/package.json b/samples/grids/data-grid/binding-local-data/package.json index 674ebb6977..fae066fd9f 100644 --- a/samples/grids/data-grid/binding-local-data/package.json +++ b/samples/grids/data-grid/binding-local-data/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/binding-remote-data/package.json b/samples/grids/data-grid/binding-remote-data/package.json index cc8aed4ec5..7600dd7000 100644 --- a/samples/grids/data-grid/binding-remote-data/package.json +++ b/samples/grids/data-grid/binding-remote-data/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-datasources": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-datasources": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/cell-activation/package.json b/samples/grids/data-grid/cell-activation/package.json index 1fd0ea11f5..e5937d6f88 100644 --- a/samples/grids/data-grid/cell-activation/package.json +++ b/samples/grids/data-grid/cell-activation/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/cell-editing/package.json b/samples/grids/data-grid/cell-editing/package.json index a319b775a4..2c421476be 100644 --- a/samples/grids/data-grid/cell-editing/package.json +++ b/samples/grids/data-grid/cell-editing/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/cell-merging/package.json b/samples/grids/data-grid/cell-merging/package.json index 1e234994ec..47179056e3 100644 --- a/samples/grids/data-grid/cell-merging/package.json +++ b/samples/grids/data-grid/cell-merging/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-datasources": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-datasources": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/cell-selection/package.json b/samples/grids/data-grid/cell-selection/package.json index f556ce2b5b..e02f40ac29 100644 --- a/samples/grids/data-grid/cell-selection/package.json +++ b/samples/grids/data-grid/cell-selection/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-animation/package.json b/samples/grids/data-grid/column-animation/package.json index 6fbd6b6068..eeb8db728b 100644 --- a/samples/grids/data-grid/column-animation/package.json +++ b/samples/grids/data-grid/column-animation/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-chooser-picker/package.json b/samples/grids/data-grid/column-chooser-picker/package.json index 62ab25966c..9e61ca7273 100644 --- a/samples/grids/data-grid/column-chooser-picker/package.json +++ b/samples/grids/data-grid/column-chooser-picker/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-chooser-toolbar/package.json b/samples/grids/data-grid/column-chooser-toolbar/package.json index 3e52ece00a..29c7bcd9d7 100644 --- a/samples/grids/data-grid/column-chooser-toolbar/package.json +++ b/samples/grids/data-grid/column-chooser-toolbar/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-filter-expressions/package.json b/samples/grids/data-grid/column-filter-expressions/package.json index 335f7228e9..4fad5d388d 100644 --- a/samples/grids/data-grid/column-filter-expressions/package.json +++ b/samples/grids/data-grid/column-filter-expressions/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-filter-operands/package.json b/samples/grids/data-grid/column-filter-operands/package.json index d660e7704f..c06ea38777 100644 --- a/samples/grids/data-grid/column-filter-operands/package.json +++ b/samples/grids/data-grid/column-filter-operands/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-filtering/package.json b/samples/grids/data-grid/column-filtering/package.json index 3943d22cbb..5a8716df2a 100644 --- a/samples/grids/data-grid/column-filtering/package.json +++ b/samples/grids/data-grid/column-filtering/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-moving/package.json b/samples/grids/data-grid/column-moving/package.json index 492c52f35f..9e79e8dffc 100644 --- a/samples/grids/data-grid/column-moving/package.json +++ b/samples/grids/data-grid/column-moving/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-options/package.json b/samples/grids/data-grid/column-options/package.json index 5fb048e065..5362101555 100644 --- a/samples/grids/data-grid/column-options/package.json +++ b/samples/grids/data-grid/column-options/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-pinning-picker/package.json b/samples/grids/data-grid/column-pinning-picker/package.json index f32f8a0613..3a3f901959 100644 --- a/samples/grids/data-grid/column-pinning-picker/package.json +++ b/samples/grids/data-grid/column-pinning-picker/package.json @@ -25,10 +25,10 @@ "@webcomponents/webcomponentsjs": "2.3.0", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -52,7 +52,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-pinning-toolbar/package.json b/samples/grids/data-grid/column-pinning-toolbar/package.json index 58d1a8bb6c..8d04d8555c 100644 --- a/samples/grids/data-grid/column-pinning-toolbar/package.json +++ b/samples/grids/data-grid/column-pinning-toolbar/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-resizing/package.json b/samples/grids/data-grid/column-resizing/package.json index 5badcc5f49..7421209cbe 100644 --- a/samples/grids/data-grid/column-resizing/package.json +++ b/samples/grids/data-grid/column-resizing/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-scrolling/package.json b/samples/grids/data-grid/column-scrolling/package.json index f9cfa00640..b66ad8a4ce 100644 --- a/samples/grids/data-grid/column-scrolling/package.json +++ b/samples/grids/data-grid/column-scrolling/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-sorting/package.json b/samples/grids/data-grid/column-sorting/package.json index dee95b7be0..358eed1b45 100644 --- a/samples/grids/data-grid/column-sorting/package.json +++ b/samples/grids/data-grid/column-sorting/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-summaries/package.json b/samples/grids/data-grid/column-summaries/package.json index d13898ef17..13767a52d2 100644 --- a/samples/grids/data-grid/column-summaries/package.json +++ b/samples/grids/data-grid/column-summaries/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/column-types/package.json b/samples/grids/data-grid/column-types/package.json index b4af7d2112..c7e6116a1d 100644 --- a/samples/grids/data-grid/column-types/package.json +++ b/samples/grids/data-grid/column-types/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/load-save-layout/package.json b/samples/grids/data-grid/load-save-layout/package.json index 477dc89ace..33f9d3093b 100644 --- a/samples/grids/data-grid/load-save-layout/package.json +++ b/samples/grids/data-grid/load-save-layout/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/localization/package.json b/samples/grids/data-grid/localization/package.json index ccba669207..6fdef739c0 100644 --- a/samples/grids/data-grid/localization/package.json +++ b/samples/grids/data-grid/localization/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/overview/package.json b/samples/grids/data-grid/overview/package.json index f7ba46940d..4d750e838b 100644 --- a/samples/grids/data-grid/overview/package.json +++ b/samples/grids/data-grid/overview/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/pager/package.json b/samples/grids/data-grid/pager/package.json index 6edddf5668..44a8d6e052 100644 --- a/samples/grids/data-grid/pager/package.json +++ b/samples/grids/data-grid/pager/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/performance/package.json b/samples/grids/data-grid/performance/package.json index c52330f9c0..11c573c5ef 100644 --- a/samples/grids/data-grid/performance/package.json +++ b/samples/grids/data-grid/performance/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/row-group-descriptions/package.json b/samples/grids/data-grid/row-group-descriptions/package.json index e579497af4..345a9d64dc 100644 --- a/samples/grids/data-grid/row-group-descriptions/package.json +++ b/samples/grids/data-grid/row-group-descriptions/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/row-grouping/package.json b/samples/grids/data-grid/row-grouping/package.json index e579497af4..345a9d64dc 100644 --- a/samples/grids/data-grid/row-grouping/package.json +++ b/samples/grids/data-grid/row-grouping/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/row-highlighting/package.json b/samples/grids/data-grid/row-highlighting/package.json index a1e3be2b10..56a6abd31d 100644 --- a/samples/grids/data-grid/row-highlighting/package.json +++ b/samples/grids/data-grid/row-highlighting/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/row-paging/package.json b/samples/grids/data-grid/row-paging/package.json index 4ad4217089..9bb24b277c 100644 --- a/samples/grids/data-grid/row-paging/package.json +++ b/samples/grids/data-grid/row-paging/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/row-pinning/package.json b/samples/grids/data-grid/row-pinning/package.json index 4c767271b4..82792bf945 100644 --- a/samples/grids/data-grid/row-pinning/package.json +++ b/samples/grids/data-grid/row-pinning/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/row-selection/package.json b/samples/grids/data-grid/row-selection/package.json index f556ce2b5b..e02f40ac29 100644 --- a/samples/grids/data-grid/row-selection/package.json +++ b/samples/grids/data-grid/row-selection/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/type-comparison-table/package.json b/samples/grids/data-grid/type-comparison-table/package.json index c8eab7b395..98b18f3c88 100644 --- a/samples/grids/data-grid/type-comparison-table/package.json +++ b/samples/grids/data-grid/type-comparison-table/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-datasources": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-datasources": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/type-heatmap-table/package.json b/samples/grids/data-grid/type-heatmap-table/package.json index 27f4a0e8af..b6f7774f7a 100644 --- a/samples/grids/data-grid/type-heatmap-table/package.json +++ b/samples/grids/data-grid/type-heatmap-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/type-marketing-table/package.json b/samples/grids/data-grid/type-marketing-table/package.json index a3392054bc..b6913ebcda 100644 --- a/samples/grids/data-grid/type-marketing-table/package.json +++ b/samples/grids/data-grid/type-marketing-table/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/type-matrix-table/package.json b/samples/grids/data-grid/type-matrix-table/package.json index 6be67ae155..695db7f222 100644 --- a/samples/grids/data-grid/type-matrix-table/package.json +++ b/samples/grids/data-grid/type-matrix-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/type-periodic-table/package.json b/samples/grids/data-grid/type-periodic-table/package.json index 9a2c12b060..f4fb8ecf79 100644 --- a/samples/grids/data-grid/type-periodic-table/package.json +++ b/samples/grids/data-grid/type-periodic-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/data-grid/type-table/package.json b/samples/grids/data-grid/type-table/package.json index be748f6038..54c25cb9c2 100644 --- a/samples/grids/data-grid/type-table/package.json +++ b/samples/grids/data-grid/type-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/action-strip/package.json b/samples/grids/grid/action-strip/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/action-strip/package.json +++ b/samples/grids/grid/action-strip/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/advanced-filtering-options/package.json b/samples/grids/grid/advanced-filtering-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/advanced-filtering-options/package.json +++ b/samples/grids/grid/advanced-filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/advanced-filtering-style/package.json b/samples/grids/grid/advanced-filtering-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/advanced-filtering-style/package.json +++ b/samples/grids/grid/advanced-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/binding-composite-data/package.json +++ b/samples/grids/grid/binding-composite-data/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/binding-crud-data/package.json b/samples/grids/grid/binding-crud-data/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/binding-crud-data/package.json +++ b/samples/grids/grid/binding-crud-data/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/binding-nested-data-1/package.json +++ b/samples/grids/grid/binding-nested-data-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/cascading-combo/package.json b/samples/grids/grid/cascading-combo/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/cascading-combo/package.json +++ b/samples/grids/grid/cascading-combo/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/cell-editing-sample/package.json b/samples/grids/grid/cell-editing-sample/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/cell-editing-sample/package.json +++ b/samples/grids/grid/cell-editing-sample/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/cell-editing-styling/package.json b/samples/grids/grid/cell-editing-styling/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/cell-editing-styling/package.json +++ b/samples/grids/grid/cell-editing-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/cell-selection-mode/package.json +++ b/samples/grids/grid/cell-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/cell-selection-style/package.json b/samples/grids/grid/cell-selection-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/cell-selection-style/package.json +++ b/samples/grids/grid/cell-selection-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/change-icons-custom/package.json b/samples/grids/grid/change-icons-custom/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/grid/change-icons-custom/package.json +++ b/samples/grids/grid/change-icons-custom/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/clipboard-operations/package.json b/samples/grids/grid/clipboard-operations/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/grid/clipboard-operations/package.json +++ b/samples/grids/grid/clipboard-operations/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-auto-sizing/package.json b/samples/grids/grid/column-auto-sizing/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-auto-sizing/package.json +++ b/samples/grids/grid/column-auto-sizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-collapsible-groups/package.json b/samples/grids/grid/column-collapsible-groups/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-collapsible-groups/package.json +++ b/samples/grids/grid/column-collapsible-groups/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-data-types/package.json b/samples/grids/grid/column-data-types/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-data-types/package.json +++ b/samples/grids/grid/column-data-types/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-hiding-options/package.json b/samples/grids/grid/column-hiding-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-hiding-options/package.json +++ b/samples/grids/grid/column-hiding-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-hiding-toolbar-style/package.json b/samples/grids/grid/column-hiding-toolbar-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/grid/column-hiding-toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-hiding-toolbar/package.json b/samples/grids/grid/column-hiding-toolbar/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-hiding-toolbar/package.json +++ b/samples/grids/grid/column-hiding-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-moving-options/package.json b/samples/grids/grid/column-moving-options/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/column-moving-options/package.json +++ b/samples/grids/grid/column-moving-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-moving-styles/package.json b/samples/grids/grid/column-moving-styles/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/column-moving-styles/package.json +++ b/samples/grids/grid/column-moving-styles/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-pinning-options/package.json b/samples/grids/grid/column-pinning-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-pinning-options/package.json +++ b/samples/grids/grid/column-pinning-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-pinning-right-side/package.json b/samples/grids/grid/column-pinning-right-side/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/column-pinning-right-side/package.json +++ b/samples/grids/grid/column-pinning-right-side/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-pinning-styles/package.json b/samples/grids/grid/column-pinning-styles/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-pinning-styles/package.json +++ b/samples/grids/grid/column-pinning-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-pinning/package.json b/samples/grids/grid/column-pinning/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-pinning/package.json +++ b/samples/grids/grid/column-pinning/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-resize-styling/package.json b/samples/grids/grid/column-resize-styling/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-resize-styling/package.json +++ b/samples/grids/grid/column-resize-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-resizing/package.json b/samples/grids/grid/column-resizing/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-resizing/package.json +++ b/samples/grids/grid/column-resizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-selection-group/package.json b/samples/grids/grid/column-selection-group/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-selection-group/package.json +++ b/samples/grids/grid/column-selection-group/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-selection-mode/package.json b/samples/grids/grid/column-selection-mode/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/column-selection-mode/package.json +++ b/samples/grids/grid/column-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-selection-styles/package.json b/samples/grids/grid/column-selection-styles/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-selection-styles/package.json +++ b/samples/grids/grid/column-selection-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-sorting-indicators/package.json b/samples/grids/grid/column-sorting-indicators/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-sorting-indicators/package.json +++ b/samples/grids/grid/column-sorting-indicators/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-sorting-options/package.json b/samples/grids/grid/column-sorting-options/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/column-sorting-options/package.json +++ b/samples/grids/grid/column-sorting-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/column-sorting-style/package.json b/samples/grids/grid/column-sorting-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/column-sorting-style/package.json +++ b/samples/grids/grid/column-sorting-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/conditional-cell-style-1/package.json b/samples/grids/grid/conditional-cell-style-1/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/conditional-cell-style-1/package.json +++ b/samples/grids/grid/conditional-cell-style-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/conditional-cell-style-2/package.json b/samples/grids/grid/conditional-cell-style-2/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/conditional-cell-style-2/package.json +++ b/samples/grids/grid/conditional-cell-style-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/conditional-row-selectors/package.json b/samples/grids/grid/conditional-row-selectors/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/conditional-row-selectors/package.json +++ b/samples/grids/grid/conditional-row-selectors/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/custom-context-menu/package.json b/samples/grids/grid/custom-context-menu/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/grid/custom-context-menu/package.json +++ b/samples/grids/grid/custom-context-menu/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/custom-filtering/package.json b/samples/grids/grid/custom-filtering/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/grid/custom-filtering/package.json +++ b/samples/grids/grid/custom-filtering/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/data-batch-editing-actions/package.json b/samples/grids/grid/data-batch-editing-actions/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/data-batch-editing-actions/package.json +++ b/samples/grids/grid/data-batch-editing-actions/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/data-exporting-indicator/package.json b/samples/grids/grid/data-exporting-indicator/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/grid/data-exporting-indicator/package.json +++ b/samples/grids/grid/data-exporting-indicator/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/data-paste-options/package.json b/samples/grids/grid/data-paste-options/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/grid/data-paste-options/package.json +++ b/samples/grids/grid/data-paste-options/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/data-performance-virtualization/package.json b/samples/grids/grid/data-performance-virtualization/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/data-performance-virtualization/package.json +++ b/samples/grids/grid/data-performance-virtualization/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/data-searching/package.json b/samples/grids/grid/data-searching/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/grid/data-searching/package.json +++ b/samples/grids/grid/data-searching/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/data-summaries-custom/package.json b/samples/grids/grid/data-summaries-custom/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/grid/data-summaries-custom/package.json +++ b/samples/grids/grid/data-summaries-custom/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/data-summary-formatter/package.json b/samples/grids/grid/data-summary-formatter/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/data-summary-formatter/package.json +++ b/samples/grids/grid/data-summary-formatter/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/data-summary-options/package.json b/samples/grids/grid/data-summary-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/data-summary-options/package.json +++ b/samples/grids/grid/data-summary-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/data-summary-template/package.json +++ b/samples/grids/grid/data-summary-template/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/data-validation-style/package.json b/samples/grids/grid/data-validation-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/data-validation-style/package.json +++ b/samples/grids/grid/data-validation-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/data-validator-service-cross-field/package.json b/samples/grids/grid/data-validator-service-cross-field/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/data-validator-service-cross-field/package.json +++ b/samples/grids/grid/data-validator-service-cross-field/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/data-validator-service-extended/package.json +++ b/samples/grids/grid/data-validator-service-extended/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/data-validator-service/package.json +++ b/samples/grids/grid/data-validator-service/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/editing-columns/package.json b/samples/grids/grid/editing-columns/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/editing-columns/package.json +++ b/samples/grids/grid/editing-columns/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/editing-events/package.json b/samples/grids/grid/editing-events/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/editing-events/package.json +++ b/samples/grids/grid/editing-events/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/editing-excel-style-custom/package.json b/samples/grids/grid/editing-excel-style-custom/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/grid/editing-excel-style-custom/package.json +++ b/samples/grids/grid/editing-excel-style-custom/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/editing-excel-style/package.json b/samples/grids/grid/editing-excel-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/editing-excel-style/package.json +++ b/samples/grids/grid/editing-excel-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/editing-lifecycle/package.json b/samples/grids/grid/editing-lifecycle/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/editing-lifecycle/package.json +++ b/samples/grids/grid/editing-lifecycle/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/excel-exporting/package.json b/samples/grids/grid/excel-exporting/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/excel-exporting/package.json +++ b/samples/grids/grid/excel-exporting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/excel-style-filtering-sample-1/package.json b/samples/grids/grid/excel-style-filtering-sample-1/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/excel-style-filtering-sample-2/package.json b/samples/grids/grid/excel-style-filtering-sample-2/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/excel-style-filtering-sample-3/package.json b/samples/grids/grid/excel-style-filtering-sample-3/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/excel-style-filtering-style/package.json b/samples/grids/grid/excel-style-filtering-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/excel-style-filtering-style/package.json +++ b/samples/grids/grid/excel-style-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/external-advanced-filtering/package.json b/samples/grids/grid/external-advanced-filtering/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/external-advanced-filtering/package.json +++ b/samples/grids/grid/external-advanced-filtering/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/filtering-options/package.json b/samples/grids/grid/filtering-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/filtering-options/package.json +++ b/samples/grids/grid/filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/filtering-strategy/package.json b/samples/grids/grid/filtering-strategy/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/filtering-strategy/package.json +++ b/samples/grids/grid/filtering-strategy/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/filtering-style/package.json +++ b/samples/grids/grid/filtering-style/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/finjs/package.json b/samples/grids/grid/finjs/package.json index 125c04c72b..93b946e25b 100644 --- a/samples/grids/grid/finjs/package.json +++ b/samples/grids/grid/finjs/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/groupby-custom/package.json b/samples/grids/grid/groupby-custom/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/grid/groupby-custom/package.json +++ b/samples/grids/grid/groupby-custom/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/groupby-expressions/package.json b/samples/grids/grid/groupby-expressions/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/groupby-expressions/package.json +++ b/samples/grids/grid/groupby-expressions/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/groupby-paging/package.json b/samples/grids/grid/groupby-paging/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/groupby-paging/package.json +++ b/samples/grids/grid/groupby-paging/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/groupby-styling/package.json b/samples/grids/grid/groupby-styling/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/groupby-styling/package.json +++ b/samples/grids/grid/groupby-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/groupby-summary-options/package.json b/samples/grids/grid/groupby-summary-options/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/groupby-summary-options/package.json +++ b/samples/grids/grid/groupby-summary-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/groupby-summary-styling/package.json b/samples/grids/grid/groupby-summary-styling/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/groupby-summary-styling/package.json +++ b/samples/grids/grid/groupby-summary-styling/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/infinite-scroll/package.json b/samples/grids/grid/infinite-scroll/package.json index 05c158bf91..adb19e0cf0 100644 --- a/samples/grids/grid/infinite-scroll/package.json +++ b/samples/grids/grid/infinite-scroll/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "rxjs": "7.8.1", "tslib": "^2.0.0" @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/keyboard-custom-navigation/package.json b/samples/grids/grid/keyboard-custom-navigation/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/keyboard-custom-navigation/package.json +++ b/samples/grids/grid/keyboard-custom-navigation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/keyboard-mrl-navigation/package.json b/samples/grids/grid/keyboard-mrl-navigation/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/package.json +++ b/samples/grids/grid/keyboard-mrl-navigation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/keyboard-navigation-guide/package.json b/samples/grids/grid/keyboard-navigation-guide/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/grid/keyboard-navigation-guide/package.json +++ b/samples/grids/grid/keyboard-navigation-guide/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/layout-display-density/package.json b/samples/grids/grid/layout-display-density/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/layout-display-density/package.json +++ b/samples/grids/grid/layout-display-density/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/master-detail/package.json b/samples/grids/grid/master-detail/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/master-detail/package.json +++ b/samples/grids/grid/master-detail/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/multi-cell-selection-mode/package.json b/samples/grids/grid/multi-cell-selection-mode/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/grid/multi-cell-selection-mode/package.json +++ b/samples/grids/grid/multi-cell-selection-mode/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/multi-column-headers-export/package.json b/samples/grids/grid/multi-column-headers-export/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/multi-column-headers-export/package.json +++ b/samples/grids/grid/multi-column-headers-export/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/multi-column-headers-overview/package.json b/samples/grids/grid/multi-column-headers-overview/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/multi-column-headers-overview/package.json +++ b/samples/grids/grid/multi-column-headers-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/multi-column-headers-styling/package.json b/samples/grids/grid/multi-column-headers-styling/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/multi-column-headers-styling/package.json +++ b/samples/grids/grid/multi-column-headers-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/multi-column-headers-template/package.json b/samples/grids/grid/multi-column-headers-template/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/multi-column-headers-template/package.json +++ b/samples/grids/grid/multi-column-headers-template/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/multi-row-layout-options/package.json b/samples/grids/grid/multi-row-layout-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/multi-row-layout-options/package.json +++ b/samples/grids/grid/multi-row-layout-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/multi-row-layout-style/package.json b/samples/grids/grid/multi-row-layout-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/multi-row-layout-style/package.json +++ b/samples/grids/grid/multi-row-layout-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/overview/package.json b/samples/grids/grid/overview/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/overview/package.json +++ b/samples/grids/grid/overview/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/paste/package.json b/samples/grids/grid/paste/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/paste/package.json +++ b/samples/grids/grid/paste/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/remote-paging-data/package.json b/samples/grids/grid/remote-paging-data/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/remote-paging-data/package.json +++ b/samples/grids/grid/remote-paging-data/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/remote-paging-grid/package.json b/samples/grids/grid/remote-paging-grid/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/grid/remote-paging-grid/package.json +++ b/samples/grids/grid/remote-paging-grid/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-adding/package.json b/samples/grids/grid/row-adding/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/row-adding/package.json +++ b/samples/grids/grid/row-adding/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-classes/package.json b/samples/grids/grid/row-classes/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/row-classes/package.json +++ b/samples/grids/grid/row-classes/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-drag-base/package.json b/samples/grids/grid/row-drag-base/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/grid/row-drag-base/package.json +++ b/samples/grids/grid/row-drag-base/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-editing-options/package.json b/samples/grids/grid/row-editing-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/row-editing-options/package.json +++ b/samples/grids/grid/row-editing-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-editing-style/package.json b/samples/grids/grid/row-editing-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/row-editing-style/package.json +++ b/samples/grids/grid/row-editing-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/row-paging-basic/package.json +++ b/samples/grids/grid/row-paging-basic/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-paging-options/package.json b/samples/grids/grid/row-paging-options/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/row-paging-options/package.json +++ b/samples/grids/grid/row-paging-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-pinning-drag/package.json b/samples/grids/grid/row-pinning-drag/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/row-pinning-drag/package.json +++ b/samples/grids/grid/row-pinning-drag/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-pinning-extra-column/package.json b/samples/grids/grid/row-pinning-extra-column/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/row-pinning-extra-column/package.json +++ b/samples/grids/grid/row-pinning-extra-column/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-pinning-options/package.json b/samples/grids/grid/row-pinning-options/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/row-pinning-options/package.json +++ b/samples/grids/grid/row-pinning-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-pinning-style/package.json b/samples/grids/grid/row-pinning-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/row-pinning-style/package.json +++ b/samples/grids/grid/row-pinning-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-reorder/package.json b/samples/grids/grid/row-reorder/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/row-reorder/package.json +++ b/samples/grids/grid/row-reorder/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-selection-mode/package.json b/samples/grids/grid/row-selection-mode/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/row-selection-mode/package.json +++ b/samples/grids/grid/row-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-selection-template-excel/package.json b/samples/grids/grid/row-selection-template-excel/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/row-selection-template-excel/package.json +++ b/samples/grids/grid/row-selection-template-excel/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-selection-template-numbers/package.json b/samples/grids/grid/row-selection-template-numbers/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/row-selection-template-numbers/package.json +++ b/samples/grids/grid/row-selection-template-numbers/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/row-styles/package.json b/samples/grids/grid/row-styles/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/grid/row-styles/package.json +++ b/samples/grids/grid/row-styles/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/state-persistence-about/package.json b/samples/grids/grid/state-persistence-about/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/grid/state-persistence-about/package.json +++ b/samples/grids/grid/state-persistence-about/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/state-persistence-main/package.json b/samples/grids/grid/state-persistence-main/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/grid/state-persistence-main/package.json +++ b/samples/grids/grid/state-persistence-main/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/styling-custom-CSS/package.json b/samples/grids/grid/styling-custom-CSS/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/styling-custom-CSS/package.json +++ b/samples/grids/grid/styling-custom-CSS/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/toolbar-sample-1/package.json b/samples/grids/grid/toolbar-sample-1/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/toolbar-sample-1/package.json +++ b/samples/grids/grid/toolbar-sample-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/toolbar-sample-2/package.json b/samples/grids/grid/toolbar-sample-2/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/toolbar-sample-2/package.json +++ b/samples/grids/grid/toolbar-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/toolbar-sample-3/package.json b/samples/grids/grid/toolbar-sample-3/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/toolbar-sample-3/package.json +++ b/samples/grids/grid/toolbar-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/toolbar-sample-4/package.json b/samples/grids/grid/toolbar-sample-4/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/grid/toolbar-sample-4/package.json +++ b/samples/grids/grid/toolbar-sample-4/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/grid/toolbar-style/package.json b/samples/grids/grid/toolbar-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/grid/toolbar-style/package.json +++ b/samples/grids/grid/toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/action-strip/package.json b/samples/grids/hierarchical-grid/action-strip/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/action-strip/package.json +++ b/samples/grids/hierarchical-grid/action-strip/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/package.json b/samples/grids/hierarchical-grid/cell-editing-sample/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/package.json b/samples/grids/hierarchical-grid/cell-editing-styling/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/package.json b/samples/grids/hierarchical-grid/cell-selection-mode/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/package.json b/samples/grids/hierarchical-grid/cell-selection-overview/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/cell-selection-style/package.json b/samples/grids/hierarchical-grid/cell-selection-style/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/cell-selection-styling/package.json b/samples/grids/hierarchical-grid/cell-selection-styling/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/hierarchical-grid/cell-selection-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-styling/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/package.json b/samples/grids/hierarchical-grid/column-auto-sizing/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/package.json +++ b/samples/grids/hierarchical-grid/column-auto-sizing/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-moving-options/package.json b/samples/grids/hierarchical-grid/column-moving-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/package.json +++ b/samples/grids/hierarchical-grid/column-moving-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-moving-styles/package.json b/samples/grids/hierarchical-grid/column-moving-styles/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/package.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-pinning-options/package.json b/samples/grids/hierarchical-grid/column-pinning-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/package.json b/samples/grids/hierarchical-grid/column-pinning-styles/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-pinning/package.json b/samples/grids/hierarchical-grid/column-pinning/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-pinning/package.json +++ b/samples/grids/hierarchical-grid/column-pinning/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-resize-styling/package.json b/samples/grids/hierarchical-grid/column-resize-styling/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/package.json +++ b/samples/grids/hierarchical-grid/column-resize-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-resizing/package.json b/samples/grids/hierarchical-grid/column-resizing/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-resizing/package.json +++ b/samples/grids/hierarchical-grid/column-resizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-selection-group/package.json b/samples/grids/hierarchical-grid/column-selection-group/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/package.json +++ b/samples/grids/hierarchical-grid/column-selection-group/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-selection-mode/package.json b/samples/grids/hierarchical-grid/column-selection-mode/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-selection-styles/package.json b/samples/grids/hierarchical-grid/column-selection-styles/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/package.json +++ b/samples/grids/hierarchical-grid/column-selection-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-sorting-options/package.json b/samples/grids/hierarchical-grid/column-sorting-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/column-sorting-style/package.json b/samples/grids/hierarchical-grid/column-sorting-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/custom-filtering/package.json b/samples/grids/hierarchical-grid/custom-filtering/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/package.json +++ b/samples/grids/hierarchical-grid/custom-filtering/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/package.json b/samples/grids/hierarchical-grid/data-summary-formatter/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/package.json +++ b/samples/grids/hierarchical-grid/data-summary-formatter/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/data-summary-options/package.json b/samples/grids/hierarchical-grid/data-summary-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/data-summary-template/package.json b/samples/grids/hierarchical-grid/data-summary-template/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/package.json +++ b/samples/grids/hierarchical-grid/data-summary-template/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/editing-columns/package.json b/samples/grids/hierarchical-grid/editing-columns/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/editing-columns/package.json +++ b/samples/grids/hierarchical-grid/editing-columns/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/editing-events/package.json b/samples/grids/hierarchical-grid/editing-events/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/editing-events/package.json +++ b/samples/grids/hierarchical-grid/editing-events/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/package.json b/samples/grids/hierarchical-grid/editing-lifecycle/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/package.json +++ b/samples/grids/hierarchical-grid/editing-lifecycle/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/excel-exporting/package.json b/samples/grids/hierarchical-grid/excel-exporting/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/package.json +++ b/samples/grids/hierarchical-grid/excel-exporting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/filtering-options/package.json b/samples/grids/hierarchical-grid/filtering-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/filtering-options/package.json +++ b/samples/grids/hierarchical-grid/filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/filtering-style/package.json b/samples/grids/hierarchical-grid/filtering-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/filtering-style/package.json +++ b/samples/grids/hierarchical-grid/filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/layout-display-density/package.json b/samples/grids/hierarchical-grid/layout-display-density/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/package.json +++ b/samples/grids/hierarchical-grid/layout-display-density/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/overview/package.json b/samples/grids/hierarchical-grid/overview/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/overview/package.json +++ b/samples/grids/hierarchical-grid/overview/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/package.json b/samples/grids/hierarchical-grid/remote-paging-sample/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/hierarchical-grid/remote-paging-sample/package.json +++ b/samples/grids/hierarchical-grid/remote-paging-sample/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/row-adding/package.json b/samples/grids/hierarchical-grid/row-adding/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/row-adding/package.json +++ b/samples/grids/hierarchical-grid/row-adding/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/row-classes/package.json b/samples/grids/hierarchical-grid/row-classes/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/row-classes/package.json +++ b/samples/grids/hierarchical-grid/row-classes/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/row-drag-base/package.json b/samples/grids/hierarchical-grid/row-drag-base/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/package.json +++ b/samples/grids/hierarchical-grid/row-drag-base/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/row-editing-options/package.json b/samples/grids/hierarchical-grid/row-editing-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/package.json +++ b/samples/grids/hierarchical-grid/row-editing-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/row-editing-style/package.json b/samples/grids/hierarchical-grid/row-editing-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/package.json +++ b/samples/grids/hierarchical-grid/row-editing-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/row-pinning-options/package.json b/samples/grids/hierarchical-grid/row-pinning-options/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/row-pinning-style/package.json b/samples/grids/hierarchical-grid/row-pinning-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/row-reorder/package.json b/samples/grids/hierarchical-grid/row-reorder/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/row-reorder/package.json +++ b/samples/grids/hierarchical-grid/row-reorder/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/row-selection-mode/package.json b/samples/grids/hierarchical-grid/row-selection-mode/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/row-styles/package.json b/samples/grids/hierarchical-grid/row-styles/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/row-styles/package.json +++ b/samples/grids/hierarchical-grid/row-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/state-persistence-about/package.json b/samples/grids/hierarchical-grid/state-persistence-about/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-about/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/state-persistence-main/package.json b/samples/grids/hierarchical-grid/state-persistence-main/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-main/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-1/package.json b/samples/grids/hierarchical-grid/toolbar-sample-1/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-1/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-2/package.json b/samples/grids/hierarchical-grid/toolbar-sample-2/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-2/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/hierarchical-grid/toolbar-style/package.json b/samples/grids/hierarchical-grid/toolbar-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/list/add-list-items/package.json b/samples/grids/list/add-list-items/package.json index 194c816724..c5e1ee3049 100644 --- a/samples/grids/list/add-list-items/package.json +++ b/samples/grids/list/add-list-items/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/list/list-item-content/package.json b/samples/grids/list/list-item-content/package.json index 30cd1c8a6e..09c841ad8c 100644 --- a/samples/grids/list/list-item-content/package.json +++ b/samples/grids/list/list-item-content/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/list/overview/package.json b/samples/grids/list/overview/package.json index 29af7f8694..147e57114f 100644 --- a/samples/grids/list/overview/package.json +++ b/samples/grids/list/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/list/styling/package.json b/samples/grids/list/styling/package.json index 7d91a92b34..6ec6d594a3 100644 --- a/samples/grids/list/styling/package.json +++ b/samples/grids/list/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/pivot-grid/aggregate-max-sales/package.json b/samples/grids/pivot-grid/aggregate-max-sales/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/package.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/pivot-grid/aggregate-units-sold/package.json b/samples/grids/pivot-grid/aggregate-units-sold/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/package.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/pivot-grid/basic/package.json b/samples/grids/pivot-grid/basic/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/pivot-grid/basic/package.json +++ b/samples/grids/pivot-grid/basic/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/pivot-grid/data-persistence-noop/package.json b/samples/grids/pivot-grid/data-persistence-noop/package.json index cea0501702..3df29ea9b1 100644 --- a/samples/grids/pivot-grid/data-persistence-noop/package.json +++ b/samples/grids/pivot-grid/data-persistence-noop/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "source-map": "^0.7.3", "style-loader": "^0.22.1", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/pivot-grid/data-selector/package.json b/samples/grids/pivot-grid/data-selector/package.json index b2f62a89fa..74cf0f3874 100644 --- a/samples/grids/pivot-grid/data-selector/package.json +++ b/samples/grids/pivot-grid/data-selector/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -52,7 +52,7 @@ "source-map": "^0.7.3", "style-loader": "^0.22.1", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/pivot-grid/features/package.json b/samples/grids/pivot-grid/features/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/pivot-grid/features/package.json +++ b/samples/grids/pivot-grid/features/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/pivot-grid/remote/package.json b/samples/grids/pivot-grid/remote/package.json index b2f62a89fa..74cf0f3874 100644 --- a/samples/grids/pivot-grid/remote/package.json +++ b/samples/grids/pivot-grid/remote/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -52,7 +52,7 @@ "source-map": "^0.7.3", "style-loader": "^0.22.1", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/pivot-grid/state-persistence-about/package.json b/samples/grids/pivot-grid/state-persistence-about/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/pivot-grid/state-persistence-about/package.json +++ b/samples/grids/pivot-grid/state-persistence-about/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/pivot-grid/state-persistence-main/package.json b/samples/grids/pivot-grid/state-persistence-main/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/pivot-grid/state-persistence-main/package.json +++ b/samples/grids/pivot-grid/state-persistence-main/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/action-strip/package.json b/samples/grids/tree-grid/action-strip/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/action-strip/package.json +++ b/samples/grids/tree-grid/action-strip/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/advanced-filtering-options/package.json b/samples/grids/tree-grid/advanced-filtering-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/package.json +++ b/samples/grids/tree-grid/advanced-filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/advanced-filtering-style/package.json b/samples/grids/tree-grid/advanced-filtering-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/package.json +++ b/samples/grids/tree-grid/advanced-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/cell-editing-sample/package.json +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/cell-editing-styling/package.json b/samples/grids/tree-grid/cell-editing-styling/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/cell-editing-styling/package.json +++ b/samples/grids/tree-grid/cell-editing-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/cell-selection-mode/package.json b/samples/grids/tree-grid/cell-selection-mode/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/cell-selection-mode/package.json +++ b/samples/grids/tree-grid/cell-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/cell-selection-style/package.json b/samples/grids/tree-grid/cell-selection-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/cell-selection-style/package.json +++ b/samples/grids/tree-grid/cell-selection-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/clipboard-operations/package.json b/samples/grids/tree-grid/clipboard-operations/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/tree-grid/clipboard-operations/package.json +++ b/samples/grids/tree-grid/clipboard-operations/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-auto-sizing/package.json b/samples/grids/tree-grid/column-auto-sizing/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-auto-sizing/package.json +++ b/samples/grids/tree-grid/column-auto-sizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-collapsible-groups/package.json b/samples/grids/tree-grid/column-collapsible-groups/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/package.json +++ b/samples/grids/tree-grid/column-collapsible-groups/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-data-types/package.json b/samples/grids/tree-grid/column-data-types/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/tree-grid/column-data-types/package.json +++ b/samples/grids/tree-grid/column-data-types/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-hiding-toolbar/package.json b/samples/grids/tree-grid/column-hiding-toolbar/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-moving-options/package.json b/samples/grids/tree-grid/column-moving-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-moving-options/package.json +++ b/samples/grids/tree-grid/column-moving-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-moving-styles/package.json b/samples/grids/tree-grid/column-moving-styles/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-moving-styles/package.json +++ b/samples/grids/tree-grid/column-moving-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-pinning-options/package.json b/samples/grids/tree-grid/column-pinning-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-pinning-options/package.json +++ b/samples/grids/tree-grid/column-pinning-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-pinning-right-side/package.json b/samples/grids/tree-grid/column-pinning-right-side/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/package.json +++ b/samples/grids/tree-grid/column-pinning-right-side/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-pinning-styles/package.json b/samples/grids/tree-grid/column-pinning-styles/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-pinning-styles/package.json +++ b/samples/grids/tree-grid/column-pinning-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-pinning-toolbar/package.json b/samples/grids/tree-grid/column-pinning-toolbar/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/package.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-pinning/package.json b/samples/grids/tree-grid/column-pinning/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-pinning/package.json +++ b/samples/grids/tree-grid/column-pinning/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-resize-styling/package.json b/samples/grids/tree-grid/column-resize-styling/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-resize-styling/package.json +++ b/samples/grids/tree-grid/column-resize-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-resizing/package.json b/samples/grids/tree-grid/column-resizing/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-resizing/package.json +++ b/samples/grids/tree-grid/column-resizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-selection-group/package.json b/samples/grids/tree-grid/column-selection-group/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-selection-group/package.json +++ b/samples/grids/tree-grid/column-selection-group/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-selection-mode/package.json b/samples/grids/tree-grid/column-selection-mode/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/column-selection-mode/package.json +++ b/samples/grids/tree-grid/column-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-selection-style/package.json b/samples/grids/tree-grid/column-selection-style/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/tree-grid/column-selection-style/package.json +++ b/samples/grids/tree-grid/column-selection-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-selection-styles/package.json b/samples/grids/tree-grid/column-selection-styles/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-selection-styles/package.json +++ b/samples/grids/tree-grid/column-selection-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-sorting-indicators/package.json b/samples/grids/tree-grid/column-sorting-indicators/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/package.json +++ b/samples/grids/tree-grid/column-sorting-indicators/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-sorting-options/package.json b/samples/grids/tree-grid/column-sorting-options/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/column-sorting-options/package.json +++ b/samples/grids/tree-grid/column-sorting-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/column-sorting-style/package.json b/samples/grids/tree-grid/column-sorting-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/column-sorting-style/package.json +++ b/samples/grids/tree-grid/column-sorting-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/conditional-cell-style-1/package.json b/samples/grids/tree-grid/conditional-cell-style-1/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/conditional-cell-style-2/package.json b/samples/grids/tree-grid/conditional-cell-style-2/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/conditional-row-selectors/package.json b/samples/grids/tree-grid/conditional-row-selectors/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/package.json +++ b/samples/grids/tree-grid/conditional-row-selectors/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/custom-filtering/package.json b/samples/grids/tree-grid/custom-filtering/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/tree-grid/custom-filtering/package.json +++ b/samples/grids/tree-grid/custom-filtering/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/data-exporting-indicator/package.json b/samples/grids/tree-grid/data-exporting-indicator/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/package.json +++ b/samples/grids/tree-grid/data-exporting-indicator/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/data-searching/package.json b/samples/grids/tree-grid/data-searching/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/tree-grid/data-searching/package.json +++ b/samples/grids/tree-grid/data-searching/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/data-summaries-custom/package.json b/samples/grids/tree-grid/data-summaries-custom/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/tree-grid/data-summaries-custom/package.json +++ b/samples/grids/tree-grid/data-summaries-custom/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/data-summary-children/package.json b/samples/grids/tree-grid/data-summary-children/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/data-summary-children/package.json +++ b/samples/grids/tree-grid/data-summary-children/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/data-summary-formatter/package.json b/samples/grids/tree-grid/data-summary-formatter/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/data-summary-formatter/package.json +++ b/samples/grids/tree-grid/data-summary-formatter/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/data-summary-options-styling/package.json b/samples/grids/tree-grid/data-summary-options-styling/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/package.json +++ b/samples/grids/tree-grid/data-summary-options-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/data-summary-options/package.json b/samples/grids/tree-grid/data-summary-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/data-summary-options/package.json +++ b/samples/grids/tree-grid/data-summary-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/data-summary-template/package.json b/samples/grids/tree-grid/data-summary-template/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/data-summary-template/package.json +++ b/samples/grids/tree-grid/data-summary-template/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/editing-columns/package.json b/samples/grids/tree-grid/editing-columns/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/editing-columns/package.json +++ b/samples/grids/tree-grid/editing-columns/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/editing-events/package.json b/samples/grids/tree-grid/editing-events/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/editing-events/package.json +++ b/samples/grids/tree-grid/editing-events/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/editing-lifecycle/package.json b/samples/grids/tree-grid/editing-lifecycle/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/editing-lifecycle/package.json +++ b/samples/grids/tree-grid/editing-lifecycle/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/excel-exporting/package.json b/samples/grids/tree-grid/excel-exporting/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/excel-exporting/package.json +++ b/samples/grids/tree-grid/excel-exporting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/excel-style-filtering-style/package.json b/samples/grids/tree-grid/excel-style-filtering-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/filtering-options/package.json b/samples/grids/tree-grid/filtering-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/filtering-options/package.json +++ b/samples/grids/tree-grid/filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/filtering-style/package.json b/samples/grids/tree-grid/filtering-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/filtering-style/package.json +++ b/samples/grids/tree-grid/filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/finjs/package.json b/samples/grids/tree-grid/finjs/package.json index 125c04c72b..93b946e25b 100644 --- a/samples/grids/tree-grid/finjs/package.json +++ b/samples/grids/tree-grid/finjs/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/package.json b/samples/grids/tree-grid/keyboard-custom-navigation/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/package.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/package.json b/samples/grids/tree-grid/keyboard-navigation-guide/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/tree-grid/keyboard-navigation-guide/package.json +++ b/samples/grids/tree-grid/keyboard-navigation-guide/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/layout-display-density/package.json b/samples/grids/tree-grid/layout-display-density/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/layout-display-density/package.json +++ b/samples/grids/tree-grid/layout-display-density/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/load-on-demand/package.json b/samples/grids/tree-grid/load-on-demand/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/tree-grid/load-on-demand/package.json +++ b/samples/grids/tree-grid/load-on-demand/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/package.json b/samples/grids/tree-grid/multi-cell-selection-mode/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/package.json +++ b/samples/grids/tree-grid/multi-cell-selection-mode/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/multi-column-headers-export/package.json b/samples/grids/tree-grid/multi-column-headers-export/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/package.json +++ b/samples/grids/tree-grid/multi-column-headers-export/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/multi-column-headers-overview/package.json b/samples/grids/tree-grid/multi-column-headers-overview/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/package.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/multi-column-headers-styling/package.json b/samples/grids/tree-grid/multi-column-headers-styling/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/package.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/multi-column-headers-template/package.json b/samples/grids/tree-grid/multi-column-headers-template/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/package.json +++ b/samples/grids/tree-grid/multi-column-headers-template/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/overview-styling/package.json b/samples/grids/tree-grid/overview-styling/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/overview-styling/package.json +++ b/samples/grids/tree-grid/overview-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/overview/package.json b/samples/grids/tree-grid/overview/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/overview/package.json +++ b/samples/grids/tree-grid/overview/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-adding/package.json b/samples/grids/tree-grid/row-adding/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/row-adding/package.json +++ b/samples/grids/tree-grid/row-adding/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-classes/package.json b/samples/grids/tree-grid/row-classes/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/row-classes/package.json +++ b/samples/grids/tree-grid/row-classes/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-drag-base/package.json b/samples/grids/tree-grid/row-drag-base/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/tree-grid/row-drag-base/package.json +++ b/samples/grids/tree-grid/row-drag-base/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-editing-options/package.json b/samples/grids/tree-grid/row-editing-options/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/row-editing-options/package.json +++ b/samples/grids/tree-grid/row-editing-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-editing-style/package.json b/samples/grids/tree-grid/row-editing-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/row-editing-style/package.json +++ b/samples/grids/tree-grid/row-editing-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-paging-basic/package.json b/samples/grids/tree-grid/row-paging-basic/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/row-paging-basic/package.json +++ b/samples/grids/tree-grid/row-paging-basic/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-paging-options/package.json b/samples/grids/tree-grid/row-paging-options/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/row-paging-options/package.json +++ b/samples/grids/tree-grid/row-paging-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-paging-style/package.json b/samples/grids/tree-grid/row-paging-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/row-paging-style/package.json +++ b/samples/grids/tree-grid/row-paging-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-pinning-extra-column/package.json b/samples/grids/tree-grid/row-pinning-extra-column/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/package.json +++ b/samples/grids/tree-grid/row-pinning-extra-column/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-pinning-options/package.json b/samples/grids/tree-grid/row-pinning-options/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/row-pinning-options/package.json +++ b/samples/grids/tree-grid/row-pinning-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-pinning-style/package.json b/samples/grids/tree-grid/row-pinning-style/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/row-pinning-style/package.json +++ b/samples/grids/tree-grid/row-pinning-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-reorder/package.json b/samples/grids/tree-grid/row-reorder/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/row-reorder/package.json +++ b/samples/grids/tree-grid/row-reorder/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-selection-mode/package.json b/samples/grids/tree-grid/row-selection-mode/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/row-selection-mode/package.json +++ b/samples/grids/tree-grid/row-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-selection-template-excel/package.json b/samples/grids/tree-grid/row-selection-template-excel/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/package.json +++ b/samples/grids/tree-grid/row-selection-template-excel/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-selection-template-numbers/package.json b/samples/grids/tree-grid/row-selection-template-numbers/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/package.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/row-styles/package.json b/samples/grids/tree-grid/row-styles/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/row-styles/package.json +++ b/samples/grids/tree-grid/row-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/state-persistence-about/package.json b/samples/grids/tree-grid/state-persistence-about/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/tree-grid/state-persistence-about/package.json +++ b/samples/grids/tree-grid/state-persistence-about/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/state-persistence-main/package.json b/samples/grids/tree-grid/state-persistence-main/package.json index 59c439beab..d3b1f66218 100644 --- a/samples/grids/tree-grid/state-persistence-main/package.json +++ b/samples/grids/tree-grid/state-persistence-main/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -54,7 +54,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/toolbar-sample-1/package.json b/samples/grids/tree-grid/toolbar-sample-1/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/package.json +++ b/samples/grids/tree-grid/toolbar-sample-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/toolbar-sample-2/package.json b/samples/grids/tree-grid/toolbar-sample-2/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/package.json +++ b/samples/grids/tree-grid/toolbar-sample-2/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/toolbar-sample-3/package.json b/samples/grids/tree-grid/toolbar-sample-3/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/package.json +++ b/samples/grids/tree-grid/toolbar-sample-3/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/toolbar-sample-4/package.json b/samples/grids/tree-grid/toolbar-sample-4/package.json index df2b6d36d4..b68931a64a 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/package.json +++ b/samples/grids/tree-grid/toolbar-sample-4/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -53,7 +53,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/toolbar-style/package.json b/samples/grids/tree-grid/toolbar-style/package.json index 5ea7de964d..dc50bbc8f5 100644 --- a/samples/grids/tree-grid/toolbar-style/package.json +++ b/samples/grids/tree-grid/toolbar-style/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/package.json b/samples/grids/tree-grid/using-primary-foreign-keys/package.json index 746ecab235..bffd17003a 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/package.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-grids": "5.0.3-beta.0", - "igniteui-webcomponents-inputs": "5.0.3-beta.0", - "igniteui-webcomponents-layouts": "5.0.3-beta.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-grids": "5.1.0", + "igniteui-webcomponents-inputs": "5.1.0", + "igniteui-webcomponents-layouts": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree/basic-example/package.json b/samples/grids/tree/basic-example/package.json index 822d6bb54d..75c37d0e37 100644 --- a/samples/grids/tree/basic-example/package.json +++ b/samples/grids/tree/basic-example/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree/load-on-demand-virtualized/package.json b/samples/grids/tree/load-on-demand-virtualized/package.json index 6bc395bf7c..55b96293be 100644 --- a/samples/grids/tree/load-on-demand-virtualized/package.json +++ b/samples/grids/tree/load-on-demand-virtualized/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/grids/tree/load-on-demand/package.json b/samples/grids/tree/load-on-demand/package.json index 25733c972f..2bcc430c58 100644 --- a/samples/grids/tree/load-on-demand/package.json +++ b/samples/grids/tree/load-on-demand/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/badge/outlined/package.json b/samples/inputs/badge/outlined/package.json index 9e8fbabd7b..61b192bbc7 100644 --- a/samples/inputs/badge/outlined/package.json +++ b/samples/inputs/badge/outlined/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/badge/shape/package.json b/samples/inputs/badge/shape/package.json index 33d5dbe119..09bedd1d04 100644 --- a/samples/inputs/badge/shape/package.json +++ b/samples/inputs/badge/shape/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/badge/variants/package.json b/samples/inputs/badge/variants/package.json index fd5e5dcca2..7ad8c078bd 100644 --- a/samples/inputs/badge/variants/package.json +++ b/samples/inputs/badge/variants/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/button-group/alignment/package.json b/samples/inputs/button-group/alignment/package.json index 2029c44173..861a4736b6 100644 --- a/samples/inputs/button-group/alignment/package.json +++ b/samples/inputs/button-group/alignment/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/button-group/overview/package.json b/samples/inputs/button-group/overview/package.json index 45a09a7063..fbbc614f88 100644 --- a/samples/inputs/button-group/overview/package.json +++ b/samples/inputs/button-group/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/button-group/selection/package.json b/samples/inputs/button-group/selection/package.json index da207071e4..5c351b3909 100644 --- a/samples/inputs/button-group/selection/package.json +++ b/samples/inputs/button-group/selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/button-group/size/package.json b/samples/inputs/button-group/size/package.json index d6cef59651..dac750d250 100644 --- a/samples/inputs/button-group/size/package.json +++ b/samples/inputs/button-group/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/button-group/styling/package.json b/samples/inputs/button-group/styling/package.json index 5cc2cdae62..7e1378a1e7 100644 --- a/samples/inputs/button-group/styling/package.json +++ b/samples/inputs/button-group/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/button/contained/package.json b/samples/inputs/button/contained/package.json index b6ffa97c99..228bc39cee 100644 --- a/samples/inputs/button/contained/package.json +++ b/samples/inputs/button/contained/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/button/download/package.json b/samples/inputs/button/download/package.json index b870e95354..31c2045172 100644 --- a/samples/inputs/button/download/package.json +++ b/samples/inputs/button/download/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/button/fab/package.json b/samples/inputs/button/fab/package.json index 8d5bc4a4e7..ed74e7398b 100644 --- a/samples/inputs/button/fab/package.json +++ b/samples/inputs/button/fab/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/button/flat/package.json b/samples/inputs/button/flat/package.json index b6213e8a0b..262fcf5b17 100644 --- a/samples/inputs/button/flat/package.json +++ b/samples/inputs/button/flat/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/button/outlined/package.json b/samples/inputs/button/outlined/package.json index 8f7d1d72bb..324900a0fb 100644 --- a/samples/inputs/button/outlined/package.json +++ b/samples/inputs/button/outlined/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/button/overview/package.json b/samples/inputs/button/overview/package.json index 493732347f..57e323ff97 100644 --- a/samples/inputs/button/overview/package.json +++ b/samples/inputs/button/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/button/size/package.json b/samples/inputs/button/size/package.json index 97cbf46ffb..3f06be0d28 100644 --- a/samples/inputs/button/size/package.json +++ b/samples/inputs/button/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/button/styling/package.json b/samples/inputs/button/styling/package.json index 9fc300faf6..b63492da0d 100644 --- a/samples/inputs/button/styling/package.json +++ b/samples/inputs/button/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/checkbox/checking/package.json b/samples/inputs/checkbox/checking/package.json index 89b174fc25..4d8b86e82b 100644 --- a/samples/inputs/checkbox/checking/package.json +++ b/samples/inputs/checkbox/checking/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/checkbox/disabled/package.json b/samples/inputs/checkbox/disabled/package.json index fc1a300399..2ec3ba4705 100644 --- a/samples/inputs/checkbox/disabled/package.json +++ b/samples/inputs/checkbox/disabled/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/checkbox/indeterminate/package.json b/samples/inputs/checkbox/indeterminate/package.json index c224dc752d..52e9f7bcab 100644 --- a/samples/inputs/checkbox/indeterminate/package.json +++ b/samples/inputs/checkbox/indeterminate/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/checkbox/label/package.json b/samples/inputs/checkbox/label/package.json index bfd9478a99..9fe7f33129 100644 --- a/samples/inputs/checkbox/label/package.json +++ b/samples/inputs/checkbox/label/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/checkbox/overview/package.json b/samples/inputs/checkbox/overview/package.json index 0238037f77..992d5bbed6 100644 --- a/samples/inputs/checkbox/overview/package.json +++ b/samples/inputs/checkbox/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/chip/multiple/package.json b/samples/inputs/chip/multiple/package.json index 89b174fc25..4d8b86e82b 100644 --- a/samples/inputs/chip/multiple/package.json +++ b/samples/inputs/chip/multiple/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/chip/overview/package.json b/samples/inputs/chip/overview/package.json index 89b174fc25..4d8b86e82b 100644 --- a/samples/inputs/chip/overview/package.json +++ b/samples/inputs/chip/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/chip/size/package.json b/samples/inputs/chip/size/package.json index 89b174fc25..4d8b86e82b 100644 --- a/samples/inputs/chip/size/package.json +++ b/samples/inputs/chip/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/chip/styling/package.json b/samples/inputs/chip/styling/package.json index 89b174fc25..4d8b86e82b 100644 --- a/samples/inputs/chip/styling/package.json +++ b/samples/inputs/chip/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/chip/variants/package.json b/samples/inputs/chip/variants/package.json index 89b174fc25..4d8b86e82b 100644 --- a/samples/inputs/chip/variants/package.json +++ b/samples/inputs/chip/variants/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/circular-progress-indicator/dynamic/package.json b/samples/inputs/circular-progress-indicator/dynamic/package.json index b720795906..d2eece6f6d 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/package.json +++ b/samples/inputs/circular-progress-indicator/dynamic/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/circular-progress-indicator/indeterminate/package.json b/samples/inputs/circular-progress-indicator/indeterminate/package.json index fadcdd75a5..c73c476601 100644 --- a/samples/inputs/circular-progress-indicator/indeterminate/package.json +++ b/samples/inputs/circular-progress-indicator/indeterminate/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/circular-progress-indicator/simple/package.json b/samples/inputs/circular-progress-indicator/simple/package.json index 042bf209a8..74d6d629c2 100644 --- a/samples/inputs/circular-progress-indicator/simple/package.json +++ b/samples/inputs/circular-progress-indicator/simple/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/circular-progress-indicator/styling/package.json b/samples/inputs/circular-progress-indicator/styling/package.json index ebe77a9c6b..251ef44551 100644 --- a/samples/inputs/circular-progress-indicator/styling/package.json +++ b/samples/inputs/circular-progress-indicator/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/combo/features/package.json b/samples/inputs/combo/features/package.json index 8ef38e6d50..e085caeef2 100644 --- a/samples/inputs/combo/features/package.json +++ b/samples/inputs/combo/features/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -47,7 +47,7 @@ "source-map": "^0.7.3", "style-loader": "^0.22.1", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/combo/overview/package.json b/samples/inputs/combo/overview/package.json index ebe6ce5792..b30918da95 100644 --- a/samples/inputs/combo/overview/package.json +++ b/samples/inputs/combo/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -47,7 +47,7 @@ "source-map": "^0.7.3", "style-loader": "^0.22.1", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/combo/selection/package.json b/samples/inputs/combo/selection/package.json index 0d7b2dd224..663a0bcad9 100644 --- a/samples/inputs/combo/selection/package.json +++ b/samples/inputs/combo/selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -47,7 +47,7 @@ "source-map": "^0.7.3", "style-loader": "^0.22.1", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/combo/simplified/package.json b/samples/inputs/combo/simplified/package.json index cdabef07b9..e1b02d2da2 100644 --- a/samples/inputs/combo/simplified/package.json +++ b/samples/inputs/combo/simplified/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -47,7 +47,7 @@ "source-map": "^0.7.3", "style-loader": "^0.22.1", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/combo/styling/package.json b/samples/inputs/combo/styling/package.json index 95fca131b8..649ffe2fc3 100644 --- a/samples/inputs/combo/styling/package.json +++ b/samples/inputs/combo/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -47,7 +47,7 @@ "source-map": "^0.7.3", "style-loader": "^0.22.1", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/combo/templates/package.json b/samples/inputs/combo/templates/package.json index ec26045e3d..55e993c433 100644 --- a/samples/inputs/combo/templates/package.json +++ b/samples/inputs/combo/templates/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -47,7 +47,7 @@ "source-map": "^0.7.3", "style-loader": "^0.22.1", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/date-time-input/input-format-display-format/package.json b/samples/inputs/date-time-input/input-format-display-format/package.json index a6f6e90c64..4e2b22f501 100644 --- a/samples/inputs/date-time-input/input-format-display-format/package.json +++ b/samples/inputs/date-time-input/input-format-display-format/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/date-time-input/min-max-value/package.json b/samples/inputs/date-time-input/min-max-value/package.json index 924a742fc0..d9e1138bb9 100644 --- a/samples/inputs/date-time-input/min-max-value/package.json +++ b/samples/inputs/date-time-input/min-max-value/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/date-time-input/overview/package.json b/samples/inputs/date-time-input/overview/package.json index b912af4cf3..6087509540 100644 --- a/samples/inputs/date-time-input/overview/package.json +++ b/samples/inputs/date-time-input/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/date-time-input/step-up-down/package.json b/samples/inputs/date-time-input/step-up-down/package.json index 015444f710..7dcb93ced1 100644 --- a/samples/inputs/date-time-input/step-up-down/package.json +++ b/samples/inputs/date-time-input/step-up-down/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/dropdown/group/package.json b/samples/inputs/dropdown/group/package.json index f7e9bba181..1adf7d224e 100644 --- a/samples/inputs/dropdown/group/package.json +++ b/samples/inputs/dropdown/group/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/dropdown/header/package.json b/samples/inputs/dropdown/header/package.json index 72b4e7fa2c..9994b449c7 100644 --- a/samples/inputs/dropdown/header/package.json +++ b/samples/inputs/dropdown/header/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/dropdown/item/package.json b/samples/inputs/dropdown/item/package.json index e9e9ba516c..070c34156d 100644 --- a/samples/inputs/dropdown/item/package.json +++ b/samples/inputs/dropdown/item/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/dropdown/overview/package.json b/samples/inputs/dropdown/overview/package.json index 1bcf3a489a..9ea43e718d 100644 --- a/samples/inputs/dropdown/overview/package.json +++ b/samples/inputs/dropdown/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/dropdown/position/package.json b/samples/inputs/dropdown/position/package.json index 76be6a48c3..66c007eb3c 100644 --- a/samples/inputs/dropdown/position/package.json +++ b/samples/inputs/dropdown/position/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/dropdown/styling/package.json b/samples/inputs/dropdown/styling/package.json index 0876a1953d..2a896e8ecb 100644 --- a/samples/inputs/dropdown/styling/package.json +++ b/samples/inputs/dropdown/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/dropdown/target/package.json b/samples/inputs/dropdown/target/package.json index d07a87e5f1..2af0bf126e 100644 --- a/samples/inputs/dropdown/target/package.json +++ b/samples/inputs/dropdown/target/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/icon-button/size/package.json b/samples/inputs/icon-button/size/package.json index b6ffa97c99..228bc39cee 100644 --- a/samples/inputs/icon-button/size/package.json +++ b/samples/inputs/icon-button/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/icon-button/styling/package.json b/samples/inputs/icon-button/styling/package.json index b6ffa97c99..228bc39cee 100644 --- a/samples/inputs/icon-button/styling/package.json +++ b/samples/inputs/icon-button/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/icon-button/variant/package.json b/samples/inputs/icon-button/variant/package.json index b6ffa97c99..228bc39cee 100644 --- a/samples/inputs/icon-button/variant/package.json +++ b/samples/inputs/icon-button/variant/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/input/helper-text/package.json b/samples/inputs/input/helper-text/package.json index e262ffc14f..3a194b815c 100644 --- a/samples/inputs/input/helper-text/package.json +++ b/samples/inputs/input/helper-text/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/input/overview/package.json b/samples/inputs/input/overview/package.json index 4e1d47877f..c05ffc57c4 100644 --- a/samples/inputs/input/overview/package.json +++ b/samples/inputs/input/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/input/prefix-suffix/package.json b/samples/inputs/input/prefix-suffix/package.json index 8b2827634e..0fc53bb214 100644 --- a/samples/inputs/input/prefix-suffix/package.json +++ b/samples/inputs/input/prefix-suffix/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/input/size/package.json b/samples/inputs/input/size/package.json index 4707d30020..078f120b9b 100644 --- a/samples/inputs/input/size/package.json +++ b/samples/inputs/input/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/input/styling/package.json b/samples/inputs/input/styling/package.json index 753d91ede3..a9fb120453 100644 --- a/samples/inputs/input/styling/package.json +++ b/samples/inputs/input/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/linear-progress-indicator/dynamic/package.json b/samples/inputs/linear-progress-indicator/dynamic/package.json index b720795906..d2eece6f6d 100644 --- a/samples/inputs/linear-progress-indicator/dynamic/package.json +++ b/samples/inputs/linear-progress-indicator/dynamic/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/linear-progress-indicator/simple/package.json b/samples/inputs/linear-progress-indicator/simple/package.json index f83482fdee..efeaccf465 100644 --- a/samples/inputs/linear-progress-indicator/simple/package.json +++ b/samples/inputs/linear-progress-indicator/simple/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/linear-progress-indicator/striped/package.json b/samples/inputs/linear-progress-indicator/striped/package.json index a4faf8a7c8..e46b18e0c3 100644 --- a/samples/inputs/linear-progress-indicator/striped/package.json +++ b/samples/inputs/linear-progress-indicator/striped/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/linear-progress-indicator/styling/package.json b/samples/inputs/linear-progress-indicator/styling/package.json index a1fb1fc0e0..a1b0f30aee 100644 --- a/samples/inputs/linear-progress-indicator/styling/package.json +++ b/samples/inputs/linear-progress-indicator/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/linear-progress-indicator/types/package.json b/samples/inputs/linear-progress-indicator/types/package.json index 7388ec29d1..3575a74520 100644 --- a/samples/inputs/linear-progress-indicator/types/package.json +++ b/samples/inputs/linear-progress-indicator/types/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/mask-input/applying-mask/package.json b/samples/inputs/mask-input/applying-mask/package.json index f16d1136c4..281b2eda34 100644 --- a/samples/inputs/mask-input/applying-mask/package.json +++ b/samples/inputs/mask-input/applying-mask/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/mask-input/overview/package.json b/samples/inputs/mask-input/overview/package.json index 3fde6a1d43..226d341486 100644 --- a/samples/inputs/mask-input/overview/package.json +++ b/samples/inputs/mask-input/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/mask-input/value-modes/package.json b/samples/inputs/mask-input/value-modes/package.json index 5c10d72fe8..2f51df2726 100644 --- a/samples/inputs/mask-input/value-modes/package.json +++ b/samples/inputs/mask-input/value-modes/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/radio/alignment/package.json b/samples/inputs/radio/alignment/package.json index 8145a4048f..a110eb2009 100644 --- a/samples/inputs/radio/alignment/package.json +++ b/samples/inputs/radio/alignment/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/radio/disabled/package.json b/samples/inputs/radio/disabled/package.json index a24c6eb2e7..4b29839464 100644 --- a/samples/inputs/radio/disabled/package.json +++ b/samples/inputs/radio/disabled/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/radio/group/package.json b/samples/inputs/radio/group/package.json index e3c9ebac97..7da48be58d 100644 --- a/samples/inputs/radio/group/package.json +++ b/samples/inputs/radio/group/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/radio/invalid/package.json b/samples/inputs/radio/invalid/package.json index 150888d5d3..9d1ace4c15 100644 --- a/samples/inputs/radio/invalid/package.json +++ b/samples/inputs/radio/invalid/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/radio/label/package.json b/samples/inputs/radio/label/package.json index aa9976ddda..3e57b7e311 100644 --- a/samples/inputs/radio/label/package.json +++ b/samples/inputs/radio/label/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/radio/styling/package.json b/samples/inputs/radio/styling/package.json index 4fded05fe1..8349837d75 100644 --- a/samples/inputs/radio/styling/package.json +++ b/samples/inputs/radio/styling/package.json @@ -25,7 +25,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/rating/basic/package.json b/samples/inputs/rating/basic/package.json index 9e8fbabd7b..61b192bbc7 100644 --- a/samples/inputs/rating/basic/package.json +++ b/samples/inputs/rating/basic/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/rating/custom/package.json b/samples/inputs/rating/custom/package.json index 746778c593..66a1f35755 100644 --- a/samples/inputs/rating/custom/package.json +++ b/samples/inputs/rating/custom/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/rating/empty/package.json b/samples/inputs/rating/empty/package.json index 0698314369..2a61b42f1f 100644 --- a/samples/inputs/rating/empty/package.json +++ b/samples/inputs/rating/empty/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/rating/single-selection/package.json b/samples/inputs/rating/single-selection/package.json index 5d6a40ac06..7d33234fdc 100644 --- a/samples/inputs/rating/single-selection/package.json +++ b/samples/inputs/rating/single-selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/rating/styling/package.json b/samples/inputs/rating/styling/package.json index 9e8fbabd7b..61b192bbc7 100644 --- a/samples/inputs/rating/styling/package.json +++ b/samples/inputs/rating/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/ripple/button/package.json b/samples/inputs/ripple/button/package.json index 57fdfcb904..7db1fe2727 100644 --- a/samples/inputs/ripple/button/package.json +++ b/samples/inputs/ripple/button/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/ripple/color/package.json b/samples/inputs/ripple/color/package.json index 2efe8b192f..50b2ab9c72 100644 --- a/samples/inputs/ripple/color/package.json +++ b/samples/inputs/ripple/color/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/select/group/package.json b/samples/inputs/select/group/package.json index e18e1f65ac..851572f6c1 100644 --- a/samples/inputs/select/group/package.json +++ b/samples/inputs/select/group/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/select/header/package.json b/samples/inputs/select/header/package.json index 87ca3c4339..7257064e88 100644 --- a/samples/inputs/select/header/package.json +++ b/samples/inputs/select/header/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/select/item/package.json b/samples/inputs/select/item/package.json index 67a7ffdc26..c4ede973c1 100644 --- a/samples/inputs/select/item/package.json +++ b/samples/inputs/select/item/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/select/overview/package.json b/samples/inputs/select/overview/package.json index 3c4057b464..c39e1c83f7 100644 --- a/samples/inputs/select/overview/package.json +++ b/samples/inputs/select/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/select/styling/package.json b/samples/inputs/select/styling/package.json index 4863decfd4..8e5c51a330 100644 --- a/samples/inputs/select/styling/package.json +++ b/samples/inputs/select/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/slider/constraints/package.json b/samples/inputs/slider/constraints/package.json index 2db7ab4f5d..2867173f6f 100644 --- a/samples/inputs/slider/constraints/package.json +++ b/samples/inputs/slider/constraints/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/slider/disabled/package.json b/samples/inputs/slider/disabled/package.json index 52b472ad9d..0859ba0c57 100644 --- a/samples/inputs/slider/disabled/package.json +++ b/samples/inputs/slider/disabled/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/slider/discrete/package.json b/samples/inputs/slider/discrete/package.json index 944c19034c..5bc3a21d25 100644 --- a/samples/inputs/slider/discrete/package.json +++ b/samples/inputs/slider/discrete/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/slider/labels/package.json b/samples/inputs/slider/labels/package.json index 075f2bdd34..a8ff313c7f 100644 --- a/samples/inputs/slider/labels/package.json +++ b/samples/inputs/slider/labels/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/slider/overview/package.json b/samples/inputs/slider/overview/package.json index dfed016de1..6b380de902 100644 --- a/samples/inputs/slider/overview/package.json +++ b/samples/inputs/slider/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/slider/styling/package.json b/samples/inputs/slider/styling/package.json index bc33f231bc..dec0b5c880 100644 --- a/samples/inputs/slider/styling/package.json +++ b/samples/inputs/slider/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/slider/tick-labels/package.json b/samples/inputs/slider/tick-labels/package.json index e5b573c182..4f19842516 100644 --- a/samples/inputs/slider/tick-labels/package.json +++ b/samples/inputs/slider/tick-labels/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/slider/ticks/package.json b/samples/inputs/slider/ticks/package.json index 7589bc877d..f3af42979d 100644 --- a/samples/inputs/slider/ticks/package.json +++ b/samples/inputs/slider/ticks/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/slider/value-format/package.json b/samples/inputs/slider/value-format/package.json index 1065750a52..0bd90d3e51 100644 --- a/samples/inputs/slider/value-format/package.json +++ b/samples/inputs/slider/value-format/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/slider/value/package.json b/samples/inputs/slider/value/package.json index 6f8d0c6dbb..2237c7cf99 100644 --- a/samples/inputs/slider/value/package.json +++ b/samples/inputs/slider/value/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/switches/checking/package.json b/samples/inputs/switches/checking/package.json index a3f684c35f..15a67a1de7 100644 --- a/samples/inputs/switches/checking/package.json +++ b/samples/inputs/switches/checking/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/switches/disabled/package.json b/samples/inputs/switches/disabled/package.json index 3090e02e6f..17a91cc5ba 100644 --- a/samples/inputs/switches/disabled/package.json +++ b/samples/inputs/switches/disabled/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/switches/label/package.json b/samples/inputs/switches/label/package.json index 146f419860..12d8bead4e 100644 --- a/samples/inputs/switches/label/package.json +++ b/samples/inputs/switches/label/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/switches/overview/package.json b/samples/inputs/switches/overview/package.json index 3e8351b445..e2971b9d86 100644 --- a/samples/inputs/switches/overview/package.json +++ b/samples/inputs/switches/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/textarea/form-integration/package.json b/samples/inputs/textarea/form-integration/package.json index ca3c7b8936..7c9e45118f 100644 --- a/samples/inputs/textarea/form-integration/package.json +++ b/samples/inputs/textarea/form-integration/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/textarea/overview/package.json b/samples/inputs/textarea/overview/package.json index 703d96b688..0edd278e06 100644 --- a/samples/inputs/textarea/overview/package.json +++ b/samples/inputs/textarea/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/textarea/resize/package.json b/samples/inputs/textarea/resize/package.json index 47110edf39..d3c951b6ad 100644 --- a/samples/inputs/textarea/resize/package.json +++ b/samples/inputs/textarea/resize/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/textarea/slots/package.json b/samples/inputs/textarea/slots/package.json index 962925be43..b675e5766a 100644 --- a/samples/inputs/textarea/slots/package.json +++ b/samples/inputs/textarea/slots/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/inputs/textarea/styling/package.json b/samples/inputs/textarea/styling/package.json index 96fc6e605f..07b40bedb1 100644 --- a/samples/inputs/textarea/styling/package.json +++ b/samples/inputs/textarea/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/accordion/customization/package.json b/samples/layouts/accordion/customization/package.json index 850f127705..d0dfeccf58 100644 --- a/samples/layouts/accordion/customization/package.json +++ b/samples/layouts/accordion/customization/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/accordion/nested-scenario/package.json b/samples/layouts/accordion/nested-scenario/package.json index 850f127705..d0dfeccf58 100644 --- a/samples/layouts/accordion/nested-scenario/package.json +++ b/samples/layouts/accordion/nested-scenario/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/accordion/overview/package.json b/samples/layouts/accordion/overview/package.json index 850f127705..d0dfeccf58 100644 --- a/samples/layouts/accordion/overview/package.json +++ b/samples/layouts/accordion/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/avatar/icon/package.json b/samples/layouts/avatar/icon/package.json index 11b6578884..99041fcef0 100644 --- a/samples/layouts/avatar/icon/package.json +++ b/samples/layouts/avatar/icon/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/avatar/image/package.json b/samples/layouts/avatar/image/package.json index c740e90df7..095c4f6d40 100644 --- a/samples/layouts/avatar/image/package.json +++ b/samples/layouts/avatar/image/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/avatar/initials/package.json b/samples/layouts/avatar/initials/package.json index bafa2a265e..518f124cc0 100644 --- a/samples/layouts/avatar/initials/package.json +++ b/samples/layouts/avatar/initials/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/avatar/shape/package.json b/samples/layouts/avatar/shape/package.json index 0acda05887..94d129e79d 100644 --- a/samples/layouts/avatar/shape/package.json +++ b/samples/layouts/avatar/shape/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/avatar/size/package.json b/samples/layouts/avatar/size/package.json index 514dd0177d..9bbd7f28a0 100644 --- a/samples/layouts/avatar/size/package.json +++ b/samples/layouts/avatar/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/card/horizontal/package.json b/samples/layouts/card/horizontal/package.json index 68aed20ab2..1e0092d718 100644 --- a/samples/layouts/card/horizontal/package.json +++ b/samples/layouts/card/horizontal/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/card/integration/package.json b/samples/layouts/card/integration/package.json index c503211dc2..8f36741a0e 100644 --- a/samples/layouts/card/integration/package.json +++ b/samples/layouts/card/integration/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/card/overview/package.json b/samples/layouts/card/overview/package.json index 619114823f..482a68d747 100644 --- a/samples/layouts/card/overview/package.json +++ b/samples/layouts/card/overview/package.json @@ -24,7 +24,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/card/semi-horizontal/package.json b/samples/layouts/card/semi-horizontal/package.json index 0861489f9e..cf0b738a37 100644 --- a/samples/layouts/card/semi-horizontal/package.json +++ b/samples/layouts/card/semi-horizontal/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/card/styling/package.json b/samples/layouts/card/styling/package.json index 687ec7e1bf..8e5ee94102 100644 --- a/samples/layouts/card/styling/package.json +++ b/samples/layouts/card/styling/package.json @@ -24,7 +24,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/carousel/animations/package.json b/samples/layouts/carousel/animations/package.json index 8d04f9e75b..08f6e8343b 100644 --- a/samples/layouts/carousel/animations/package.json +++ b/samples/layouts/carousel/animations/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.6.3" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/carousel/components/package.json b/samples/layouts/carousel/components/package.json index 3377b52716..fe54d12881 100644 --- a/samples/layouts/carousel/components/package.json +++ b/samples/layouts/carousel/components/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.6.3" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/carousel/overview/package.json b/samples/layouts/carousel/overview/package.json index 8d25558349..52013c9970 100644 --- a/samples/layouts/carousel/overview/package.json +++ b/samples/layouts/carousel/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.6.3" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/carousel/thumbnail/package.json b/samples/layouts/carousel/thumbnail/package.json index 5eddc045a1..038fbda747 100644 --- a/samples/layouts/carousel/thumbnail/package.json +++ b/samples/layouts/carousel/thumbnail/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.6.3" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/divider/dashed/package.json b/samples/layouts/divider/dashed/package.json index 3c4057b464..c39e1c83f7 100644 --- a/samples/layouts/divider/dashed/package.json +++ b/samples/layouts/divider/dashed/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/divider/middle/package.json b/samples/layouts/divider/middle/package.json index 4863decfd4..8e5c51a330 100644 --- a/samples/layouts/divider/middle/package.json +++ b/samples/layouts/divider/middle/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/divider/overview/package.json b/samples/layouts/divider/overview/package.json index 3c4057b464..c39e1c83f7 100644 --- a/samples/layouts/divider/overview/package.json +++ b/samples/layouts/divider/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/divider/select/package.json b/samples/layouts/divider/select/package.json index 3c4057b464..c39e1c83f7 100644 --- a/samples/layouts/divider/select/package.json +++ b/samples/layouts/divider/select/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/divider/vertical/package.json b/samples/layouts/divider/vertical/package.json index 4863decfd4..8e5c51a330 100644 --- a/samples/layouts/divider/vertical/package.json +++ b/samples/layouts/divider/vertical/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/dock-manager/add-content-runtime/package.json b/samples/layouts/dock-manager/add-content-runtime/package.json index 2902e2ef23..0e62202d20 100644 --- a/samples/layouts/dock-manager/add-content-runtime/package.json +++ b/samples/layouts/dock-manager/add-content-runtime/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-dockmanager": "1.14.3", + "igniteui-dockmanager": "1.15.2", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -47,7 +47,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/dock-manager/contained-in-boundaries/package.json b/samples/layouts/dock-manager/contained-in-boundaries/package.json index 45d225d12f..ea302ad753 100644 --- a/samples/layouts/dock-manager/contained-in-boundaries/package.json +++ b/samples/layouts/dock-manager/contained-in-boundaries/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-dockmanager": "1.14.3", + "igniteui-dockmanager": "1.15.2", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -47,7 +47,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/dock-manager/customize-buttons/package.json b/samples/layouts/dock-manager/customize-buttons/package.json index 833f49f332..e2dded0348 100644 --- a/samples/layouts/dock-manager/customize-buttons/package.json +++ b/samples/layouts/dock-manager/customize-buttons/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-dockmanager": "1.14.3", + "igniteui-dockmanager": "1.15.2", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -47,7 +47,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/dock-manager/embedding-frames/package.json b/samples/layouts/dock-manager/embedding-frames/package.json index 253db42235..27c582f4c8 100644 --- a/samples/layouts/dock-manager/embedding-frames/package.json +++ b/samples/layouts/dock-manager/embedding-frames/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-dockmanager": "1.14.3", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-dockmanager": "1.15.2", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/dock-manager/focus-panes/package.json b/samples/layouts/dock-manager/focus-panes/package.json index 2902e2ef23..0e62202d20 100644 --- a/samples/layouts/dock-manager/focus-panes/package.json +++ b/samples/layouts/dock-manager/focus-panes/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-dockmanager": "1.14.3", + "igniteui-dockmanager": "1.15.2", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -47,7 +47,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/dock-manager/hide-pane-headers/package.json b/samples/layouts/dock-manager/hide-pane-headers/package.json index 2902e2ef23..0e62202d20 100644 --- a/samples/layouts/dock-manager/hide-pane-headers/package.json +++ b/samples/layouts/dock-manager/hide-pane-headers/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-dockmanager": "1.14.3", + "igniteui-dockmanager": "1.15.2", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -47,7 +47,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/dock-manager/hiding-panes/package.json b/samples/layouts/dock-manager/hiding-panes/package.json index 160e6b4faa..6990bff704 100644 --- a/samples/layouts/dock-manager/hiding-panes/package.json +++ b/samples/layouts/dock-manager/hiding-panes/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-dockmanager": "1.14.3", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-dockmanager": "1.15.2", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/dock-manager/overview/package.json b/samples/layouts/dock-manager/overview/package.json index 26f7f4786d..0218b1c806 100644 --- a/samples/layouts/dock-manager/overview/package.json +++ b/samples/layouts/dock-manager/overview/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-dockmanager": "1.14.3", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-dockmanager": "1.15.2", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/dock-manager/proximity-dock/package.json b/samples/layouts/dock-manager/proximity-dock/package.json index 906d7a8bc0..953331cdea 100644 --- a/samples/layouts/dock-manager/proximity-dock/package.json +++ b/samples/layouts/dock-manager/proximity-dock/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-dockmanager": "1.14.3", + "igniteui-dockmanager": "1.15.2", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -47,7 +47,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/dock-manager/styling/package.json b/samples/layouts/dock-manager/styling/package.json index f3017184e2..6406fd3a4a 100644 --- a/samples/layouts/dock-manager/styling/package.json +++ b/samples/layouts/dock-manager/styling/package.json @@ -24,9 +24,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-dockmanager": "1.14.3", - "igniteui-webcomponents": "5.1.1", - "igniteui-webcomponents-core": "5.0.3-beta.0", + "igniteui-dockmanager": "1.15.2", + "igniteui-webcomponents": "5.1.2", + "igniteui-webcomponents-core": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -50,7 +50,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/dock-manager/toggle-inner-dock/package.json b/samples/layouts/dock-manager/toggle-inner-dock/package.json index c3d7dd9db1..f03b4cc69a 100644 --- a/samples/layouts/dock-manager/toggle-inner-dock/package.json +++ b/samples/layouts/dock-manager/toggle-inner-dock/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-dockmanager": "1.14.3", + "igniteui-dockmanager": "1.15.2", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -47,7 +47,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/dock-manager/updating-panes/package.json b/samples/layouts/dock-manager/updating-panes/package.json index a4f9258eda..8b37b826af 100644 --- a/samples/layouts/dock-manager/updating-panes/package.json +++ b/samples/layouts/dock-manager/updating-panes/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-dockmanager": "1.14.3", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-gauges": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-dockmanager": "1.15.2", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-gauges": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/expansion-panel/component-customization/package.json b/samples/layouts/expansion-panel/component-customization/package.json index f9c88556f5..f84dcc3f00 100644 --- a/samples/layouts/expansion-panel/component-customization/package.json +++ b/samples/layouts/expansion-panel/component-customization/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/expansion-panel/properties-and-events/package.json b/samples/layouts/expansion-panel/properties-and-events/package.json index 15205e7ddf..e51f42c66f 100644 --- a/samples/layouts/expansion-panel/properties-and-events/package.json +++ b/samples/layouts/expansion-panel/properties-and-events/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/expansion-panel/styling/package.json b/samples/layouts/expansion-panel/styling/package.json index 1f9ba0794c..d41b256cb6 100644 --- a/samples/layouts/expansion-panel/styling/package.json +++ b/samples/layouts/expansion-panel/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/expansion-panel/usage/package.json b/samples/layouts/expansion-panel/usage/package.json index 850f127705..d0dfeccf58 100644 --- a/samples/layouts/expansion-panel/usage/package.json +++ b/samples/layouts/expansion-panel/usage/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/icon/sizing/package.json b/samples/layouts/icon/sizing/package.json index 4dd1c8aff5..858b0af614 100644 --- a/samples/layouts/icon/sizing/package.json +++ b/samples/layouts/icon/sizing/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/icon/styling/package.json b/samples/layouts/icon/styling/package.json index 4dd1c8aff5..858b0af614 100644 --- a/samples/layouts/icon/styling/package.json +++ b/samples/layouts/icon/styling/package.json @@ -26,7 +26,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -51,7 +51,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/stepper/animations/package.json b/samples/layouts/stepper/animations/package.json index 983cc28e2c..99d5a82d23 100644 --- a/samples/layouts/stepper/animations/package.json +++ b/samples/layouts/stepper/animations/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "install": "^0.13.0", "lit": "^3.2.0", "lit-html": "^3.2.0", @@ -49,7 +49,7 @@ "source-map": "^0.7.3", "style-loader": "^0.22.1", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/stepper/linear/package.json b/samples/layouts/stepper/linear/package.json index 82928ce1c4..051c853f0c 100644 --- a/samples/layouts/stepper/linear/package.json +++ b/samples/layouts/stepper/linear/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "install": "^0.13.0", "lit": "^3.2.0", "lit-html": "^3.2.0", @@ -49,7 +49,7 @@ "source-map": "^0.7.3", "style-loader": "^0.22.1", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/stepper/orientation/package.json b/samples/layouts/stepper/orientation/package.json index fd7265cbf3..797880ccbd 100644 --- a/samples/layouts/stepper/orientation/package.json +++ b/samples/layouts/stepper/orientation/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "install": "^0.13.0", "lit": "^3.2.0", "lit-html": "^3.2.0", @@ -49,7 +49,7 @@ "source-map": "^0.7.3", "style-loader": "^0.22.1", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/stepper/overview/package.json b/samples/layouts/stepper/overview/package.json index 5643ce7030..d83a156703 100644 --- a/samples/layouts/stepper/overview/package.json +++ b/samples/layouts/stepper/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "install": "^0.13.0", "lit": "^3.2.0", "lit-html": "^3.2.0", @@ -49,7 +49,7 @@ "source-map": "^0.7.3", "style-loader": "^0.22.1", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/stepper/steptypes/package.json b/samples/layouts/stepper/steptypes/package.json index d7cee65af1..1c657ac0d6 100644 --- a/samples/layouts/stepper/steptypes/package.json +++ b/samples/layouts/stepper/steptypes/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "install": "^0.13.0", "lit": "^3.2.0", "lit-html": "^3.2.0", @@ -49,7 +49,7 @@ "source-map": "^0.7.3", "style-loader": "^0.22.1", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/tabs/alignment/package.json b/samples/layouts/tabs/alignment/package.json index 62a7ceee42..5df141f4d7 100644 --- a/samples/layouts/tabs/alignment/package.json +++ b/samples/layouts/tabs/alignment/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/tabs/overview/package.json b/samples/layouts/tabs/overview/package.json index 82f7f81d8d..1ba9591b82 100644 --- a/samples/layouts/tabs/overview/package.json +++ b/samples/layouts/tabs/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/tabs/prefix-suffix/package.json b/samples/layouts/tabs/prefix-suffix/package.json index d0c40bef98..1f30d9b91c 100644 --- a/samples/layouts/tabs/prefix-suffix/package.json +++ b/samples/layouts/tabs/prefix-suffix/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/layouts/tabs/scrolling/package.json b/samples/layouts/tabs/scrolling/package.json index 8a6baab690..5b3092f907 100644 --- a/samples/layouts/tabs/scrolling/package.json +++ b/samples/layouts/tabs/scrolling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 9bf6214d4e..2c67a49f6e 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 61055aeeee..0146c8eadb 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 2c8d5a63d3..f6aff7edd7 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 44ed4db46f..111a69bbb5 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index fd2918b43f..fc86aa8f67 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index ba468eb8cc..2f891717ed 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index dbf6d68d67..1c1f9544fe 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 375b29b7ae..18375e87a8 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 9ce8a51c72..1d998a8a14 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/display-all-imagery/package.json b/samples/maps/geo-map/display-all-imagery/package.json index 0904b25a55..591baeafe8 100644 --- a/samples/maps/geo-map/display-all-imagery/package.json +++ b/samples/maps/geo-map/display-all-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 5e39ca8e5a..3cd96cf53c 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index a0802f191f..71bb3492e0 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 7891c94753..c4df682d5b 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index f1cf1f7a15..7754123969 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 3c7160d926..94a15bfb5a 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 2dbb306fa8..7407d797b7 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 6e93d52ff1..6fcaeff6f0 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 6fb6286722..d4eacac9f5 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index b0f9461871..09206b316f 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/synchronization/package.json b/samples/maps/geo-map/synchronization/package.json index ab0688777a..ff8478bc08 100644 --- a/samples/maps/geo-map/synchronization/package.json +++ b/samples/maps/geo-map/synchronization/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 42626570b1..b5f7a79722 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 21cbc7e4a1..8ccb43a3f9 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 19cd144818..108b9d6f35 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 63711e20dc..61162fe3e2 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 2761221810..c2f605b101 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 332c89ff33..25b08ca94f 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 8fa89c0542..b7588fafa8 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 3e2d53a663..13b41445ac 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.0.3-beta.0", - "igniteui-webcomponents-core": "5.0.3-beta.0", - "igniteui-webcomponents-maps": "5.0.3-beta.0", + "igniteui-webcomponents-charts": "5.1.0", + "igniteui-webcomponents-core": "5.1.0", + "igniteui-webcomponents-maps": "5.1.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, @@ -49,7 +49,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/menus/nav-bar/overview/package.json b/samples/menus/nav-bar/overview/package.json index fb090d02d3..42b139af9a 100644 --- a/samples/menus/nav-bar/overview/package.json +++ b/samples/menus/nav-bar/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/menus/nav-bar/styling/package.json b/samples/menus/nav-bar/styling/package.json index 0684cc1c7f..6aa0600f45 100644 --- a/samples/menus/nav-bar/styling/package.json +++ b/samples/menus/nav-bar/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/menus/nav-drawer/add-drawer-items/package.json b/samples/menus/nav-drawer/add-drawer-items/package.json index 778543b262..6d370f77a2 100644 --- a/samples/menus/nav-drawer/add-drawer-items/package.json +++ b/samples/menus/nav-drawer/add-drawer-items/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/menus/nav-drawer/add-mini/package.json b/samples/menus/nav-drawer/add-mini/package.json index 2065080dc0..bc35b80174 100644 --- a/samples/menus/nav-drawer/add-mini/package.json +++ b/samples/menus/nav-drawer/add-mini/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/menus/nav-drawer/add-positions-navbar/package.json b/samples/menus/nav-drawer/add-positions-navbar/package.json index 943102e74a..db4049ed69 100644 --- a/samples/menus/nav-drawer/add-positions-navbar/package.json +++ b/samples/menus/nav-drawer/add-positions-navbar/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/menus/nav-drawer/styling/package.json b/samples/menus/nav-drawer/styling/package.json index 28868527fa..725694dcfb 100644 --- a/samples/menus/nav-drawer/styling/package.json +++ b/samples/menus/nav-drawer/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/banner/banner-advanced-sample/package.json b/samples/notifications/banner/banner-advanced-sample/package.json index e607bdd62d..6d1a06c28a 100644 --- a/samples/notifications/banner/banner-advanced-sample/package.json +++ b/samples/notifications/banner/banner-advanced-sample/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/banner/banner-sample-1/package.json b/samples/notifications/banner/banner-sample-1/package.json index 61e308e04b..ff324c812f 100644 --- a/samples/notifications/banner/banner-sample-1/package.json +++ b/samples/notifications/banner/banner-sample-1/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/banner/banner-sample-2/package.json b/samples/notifications/banner/banner-sample-2/package.json index 5045864481..f1372d9aab 100644 --- a/samples/notifications/banner/banner-sample-2/package.json +++ b/samples/notifications/banner/banner-sample-2/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/banner/banner-styling/package.json b/samples/notifications/banner/banner-styling/package.json index 40b280d4e6..da6160f26c 100644 --- a/samples/notifications/banner/banner-styling/package.json +++ b/samples/notifications/banner/banner-styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/dialog/closing-variations/package.json b/samples/notifications/dialog/closing-variations/package.json index 217565e40c..46a4b88929 100644 --- a/samples/notifications/dialog/closing-variations/package.json +++ b/samples/notifications/dialog/closing-variations/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/dialog/form/package.json b/samples/notifications/dialog/form/package.json index 81e17e733b..3a8290d13c 100644 --- a/samples/notifications/dialog/form/package.json +++ b/samples/notifications/dialog/form/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/dialog/overview/package.json b/samples/notifications/dialog/overview/package.json index ed8ca38387..f7599127d0 100644 --- a/samples/notifications/dialog/overview/package.json +++ b/samples/notifications/dialog/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/dialog/styling/package.json b/samples/notifications/dialog/styling/package.json index 5e41729519..d14a1a5b16 100644 --- a/samples/notifications/dialog/styling/package.json +++ b/samples/notifications/dialog/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/snackbar/action-text/package.json b/samples/notifications/snackbar/action-text/package.json index 2682939b5e..475fdf295e 100644 --- a/samples/notifications/snackbar/action-text/package.json +++ b/samples/notifications/snackbar/action-text/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/snackbar/display-time/package.json b/samples/notifications/snackbar/display-time/package.json index 2682939b5e..475fdf295e 100644 --- a/samples/notifications/snackbar/display-time/package.json +++ b/samples/notifications/snackbar/display-time/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/snackbar/overview/package.json b/samples/notifications/snackbar/overview/package.json index 2682939b5e..475fdf295e 100644 --- a/samples/notifications/snackbar/overview/package.json +++ b/samples/notifications/snackbar/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/snackbar/styling/package.json b/samples/notifications/snackbar/styling/package.json index 2682939b5e..475fdf295e 100644 --- a/samples/notifications/snackbar/styling/package.json +++ b/samples/notifications/snackbar/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/toast/overview/package.json b/samples/notifications/toast/overview/package.json index 89b174fc25..4d8b86e82b 100644 --- a/samples/notifications/toast/overview/package.json +++ b/samples/notifications/toast/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/toast/properties/package.json b/samples/notifications/toast/properties/package.json index 89b174fc25..4d8b86e82b 100644 --- a/samples/notifications/toast/properties/package.json +++ b/samples/notifications/toast/properties/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/notifications/toast/styling/package.json b/samples/notifications/toast/styling/package.json index 89b174fc25..4d8b86e82b 100644 --- a/samples/notifications/toast/styling/package.json +++ b/samples/notifications/toast/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/calendar/disabled-dates/package.json b/samples/scheduling/calendar/disabled-dates/package.json index 91c48d1c38..9e73d5cd03 100644 --- a/samples/scheduling/calendar/disabled-dates/package.json +++ b/samples/scheduling/calendar/disabled-dates/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/calendar/formatting/package.json b/samples/scheduling/calendar/formatting/package.json index 683a1dcdb7..883e9af73c 100644 --- a/samples/scheduling/calendar/formatting/package.json +++ b/samples/scheduling/calendar/formatting/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/calendar/header/package.json b/samples/scheduling/calendar/header/package.json index 45a3bc85b9..e9be1d6dc9 100644 --- a/samples/scheduling/calendar/header/package.json +++ b/samples/scheduling/calendar/header/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/calendar/multiple-months/package.json b/samples/scheduling/calendar/multiple-months/package.json index c96228f304..50631aec55 100644 --- a/samples/scheduling/calendar/multiple-months/package.json +++ b/samples/scheduling/calendar/multiple-months/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/calendar/multiple-selection/package.json b/samples/scheduling/calendar/multiple-selection/package.json index 80bb2c23aa..3e7a53097c 100644 --- a/samples/scheduling/calendar/multiple-selection/package.json +++ b/samples/scheduling/calendar/multiple-selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/calendar/overview/package.json b/samples/scheduling/calendar/overview/package.json index fc5284f658..42226e3224 100644 --- a/samples/scheduling/calendar/overview/package.json +++ b/samples/scheduling/calendar/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/calendar/range-selection/package.json b/samples/scheduling/calendar/range-selection/package.json index 23af02f7c0..bd377c8d81 100644 --- a/samples/scheduling/calendar/range-selection/package.json +++ b/samples/scheduling/calendar/range-selection/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/calendar/size/package.json b/samples/scheduling/calendar/size/package.json index ba6b07b548..5da068446a 100644 --- a/samples/scheduling/calendar/size/package.json +++ b/samples/scheduling/calendar/size/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/calendar/special-dates/package.json b/samples/scheduling/calendar/special-dates/package.json index 2876be63bb..f68f75cd2a 100644 --- a/samples/scheduling/calendar/special-dates/package.json +++ b/samples/scheduling/calendar/special-dates/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/calendar/styling/package.json b/samples/scheduling/calendar/styling/package.json index 0afb90448e..dd016a182f 100644 --- a/samples/scheduling/calendar/styling/package.json +++ b/samples/scheduling/calendar/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/calendar/week-numbers/package.json b/samples/scheduling/calendar/week-numbers/package.json index a03bf59fb9..dda62816d2 100644 --- a/samples/scheduling/calendar/week-numbers/package.json +++ b/samples/scheduling/calendar/week-numbers/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/date-picker/dialog-mode/package.json b/samples/scheduling/date-picker/dialog-mode/package.json index 4884299af2..d6bf25ca54 100644 --- a/samples/scheduling/date-picker/dialog-mode/package.json +++ b/samples/scheduling/date-picker/dialog-mode/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/date-picker/form/package.json b/samples/scheduling/date-picker/form/package.json index c1150977c8..90211191f9 100644 --- a/samples/scheduling/date-picker/form/package.json +++ b/samples/scheduling/date-picker/form/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/date-picker/format/package.json b/samples/scheduling/date-picker/format/package.json index 5f3b4c0f9b..2312a859d5 100644 --- a/samples/scheduling/date-picker/format/package.json +++ b/samples/scheduling/date-picker/format/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/date-picker/overview/package.json b/samples/scheduling/date-picker/overview/package.json index db715ce13c..6aa3f6bed3 100644 --- a/samples/scheduling/date-picker/overview/package.json +++ b/samples/scheduling/date-picker/overview/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", diff --git a/samples/scheduling/date-picker/styling/package.json b/samples/scheduling/date-picker/styling/package.json index 65851e9d6c..1503b5dd4a 100644 --- a/samples/scheduling/date-picker/styling/package.json +++ b/samples/scheduling/date-picker/styling/package.json @@ -23,7 +23,7 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents": "5.1.1", + "igniteui-webcomponents": "5.1.2", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -48,7 +48,7 @@ "style-loader": "^0.22.1", "tsconfig-paths-webpack-plugin": "^4.0.0", "typescript": "^4.4.4", - "webpack": "^5.74.0", + "webpack": "^5.96.1", "webpack-cli": "^4.10.0", "webpack-dev-server": "^4.11.1", "worker-loader": "^3.0.8", From 8af9e5b5b6ee3bad2e69cf6eb2e36732c57a2997 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Fri, 22 Nov 2024 11:45:24 -0500 Subject: [PATCH 26/63] update readme --- samples/editors/x-date-picker/date-limits/ReadMe.md | 8 ++++---- samples/editors/x-date-picker/editing/ReadMe.md | 8 ++++---- samples/editors/x-date-picker/format/ReadMe.md | 8 ++++---- samples/editors/x-date-picker/overview/ReadMe.md | 8 ++++---- samples/editors/x-date-picker/range/ReadMe.md | 8 ++++---- samples/grids/grid/editing-excel-style-custom/ReadMe.md | 8 ++++---- samples/grids/grid/remote-paging-grid/ReadMe.md | 8 ++++---- .../hierarchical-grid/remote-paging-sample/ReadMe.md | 8 ++++---- samples/layouts/divider/overview/ReadMe.md | 8 ++++---- samples/scheduling/date-picker/dialog-mode/ReadMe.md | 8 ++++---- 10 files changed, 40 insertions(+), 40 deletions(-) diff --git a/samples/editors/x-date-picker/date-limits/ReadMe.md b/samples/editors/x-date-picker/date-limits/ReadMe.md index e1fa2f066e..feea6f3eec 100644 --- a/samples/editors/x-date-picker/date-limits/ReadMe.md +++ b/samples/editors/x-date-picker/date-limits/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Date Limits feature using [Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of XDate Picker Date Limits feature using [X Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/editors/date-picker/date-limits +cd ./samples/editors/x-date-picker/date-limits ``` open above folder in VS Code or type: diff --git a/samples/editors/x-date-picker/editing/ReadMe.md b/samples/editors/x-date-picker/editing/ReadMe.md index d10eefb2a2..5a29a05eb3 100644 --- a/samples/editors/x-date-picker/editing/ReadMe.md +++ b/samples/editors/x-date-picker/editing/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Editing feature using [Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of XDate Picker Editing feature using [X Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/editors/date-picker/editing +cd ./samples/editors/x-date-picker/editing ``` open above folder in VS Code or type: diff --git a/samples/editors/x-date-picker/format/ReadMe.md b/samples/editors/x-date-picker/format/ReadMe.md index f3fe789892..d9b0221ae6 100644 --- a/samples/editors/x-date-picker/format/ReadMe.md +++ b/samples/editors/x-date-picker/format/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Format feature using [Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of XDate Picker Format feature using [X Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/editors/date-picker/format +cd ./samples/editors/x-date-picker/format ``` open above folder in VS Code or type: diff --git a/samples/editors/x-date-picker/overview/ReadMe.md b/samples/editors/x-date-picker/overview/ReadMe.md index 67f85cf870..8b584b39f4 100644 --- a/samples/editors/x-date-picker/overview/ReadMe.md +++ b/samples/editors/x-date-picker/overview/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Overview feature using [Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of XDate Picker Overview feature using [X Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/editors/date-picker/overview +cd ./samples/editors/x-date-picker/overview ``` open above folder in VS Code or type: diff --git a/samples/editors/x-date-picker/range/ReadMe.md b/samples/editors/x-date-picker/range/ReadMe.md index 1096a83963..8d3c4fb812 100644 --- a/samples/editors/x-date-picker/range/ReadMe.md +++ b/samples/editors/x-date-picker/range/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Range feature using [Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of XDate Picker Range feature using [X Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/editors/date-picker/range +cd ./samples/editors/x-date-picker/range ``` open above folder in VS Code or type: diff --git a/samples/grids/grid/editing-excel-style-custom/ReadMe.md b/samples/grids/grid/editing-excel-style-custom/ReadMe.md index a2dee166a6..0d5b31235e 100644 --- a/samples/grids/grid/editing-excel-style-custom/ReadMe.md +++ b/samples/grids/grid/editing-excel-style-custom/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Editing Excel Style feature using [Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of Editing Excel Style Custom feature using [Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/grids/grid/editing-excel-style +cd ./samples/grids/grid/editing-excel-style-custom ``` open above folder in VS Code or type: diff --git a/samples/grids/grid/remote-paging-grid/ReadMe.md b/samples/grids/grid/remote-paging-grid/ReadMe.md index 97f329c8d6..4b1180ecea 100644 --- a/samples/grids/grid/remote-paging-grid/ReadMe.md +++ b/samples/grids/grid/remote-paging-grid/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Remote Paging Data feature using [Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of Remote Paging Grid feature using [Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/grids/grid/remote-paging-data +cd ./samples/grids/grid/remote-paging-grid ``` open above folder in VS Code or type: diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/ReadMe.md b/samples/grids/hierarchical-grid/remote-paging-sample/ReadMe.md index e8a01b31fb..80852db77b 100644 --- a/samples/grids/hierarchical-grid/remote-paging-sample/ReadMe.md +++ b/samples/grids/hierarchical-grid/remote-paging-sample/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Data Performance Virtualization feature using [Hierarchical Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of Remote Paging Sample feature using [Hierarchical Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/grids/hierarchical-grid/data-performance-virtualization +cd ./samples/grids/hierarchical-grid/remote-paging-sample ``` open above folder in VS Code or type: diff --git a/samples/layouts/divider/overview/ReadMe.md b/samples/layouts/divider/overview/ReadMe.md index 69d6f4b125..89cc77c42d 100644 --- a/samples/layouts/divider/overview/ReadMe.md +++ b/samples/layouts/divider/overview/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Base feature using [Divider](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of Overview feature using [Divider](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/layouts/divider/base +cd ./samples/layouts/divider/overview ``` open above folder in VS Code or type: diff --git a/samples/scheduling/date-picker/dialog-mode/ReadMe.md b/samples/scheduling/date-picker/dialog-mode/ReadMe.md index c103d5dbfd..7f68ad6aea 100644 --- a/samples/scheduling/date-picker/dialog-mode/ReadMe.md +++ b/samples/scheduling/date-picker/dialog-mode/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of Web Components application with example of Dialog_mode feature using [Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. +This folder contains implementation of Web Components application with example of Dialog Mode feature using [Date Picker](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/scheduling/date-picker/dialog_mode +cd ./samples/scheduling/date-picker/dialog-mode ``` open above folder in VS Code or type: From e122632da0829ad58c5dcde1fa25ff5881e1396f Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Mon, 25 Nov 2024 14:37:28 -0500 Subject: [PATCH 27/63] readme - Updating Packages in Samples --- README.md | 14 ++++++++++++ browser/tasks/gulp-samples.js | 40 +++++++++++++++++------------------ 2 files changed, 34 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index c97bc4c64f..5b90b0365f 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,20 @@ Next, follow these steps: - submit your pull request +## Updating Packages in Samples + +NOTE Do NOT find replace version of packages in package.json files. + +- open this repo in VS Code +- open [./browser/tasks/gulp-samples.js](./browser/tasks/gulp-samples.js) file +- navigate to the `updateIG` function +- update version of packages in `packageUpgrades` array +- open terminal window +- run `cd browser` command +- run the `gulp updateIG` command +- run `npm install --legacy-peer-deps` command +- create AND merge a pull request with changes in all package.json files in this repository +- create 2nd pull request with similar changes in `/editor-templates/WebComponents/main-template/package.json` of the [igniteui-xplat-examples](https://github.com/IgniteUI/igniteui-xplat-examples) repository. ## Learn More diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js index a26d31f514..e6ebb81b60 100644 --- a/browser/tasks/gulp-samples.js +++ b/browser/tasks/gulp-samples.js @@ -972,30 +972,30 @@ function updateIG(cb) { del.sync("./samples/**/node_modules", {force:true}); // NOTE: change this array with new version of packages and optionally use "@infragistics/" proget prefix, e.g. - // { name: "@infragistics/igniteui-webcomponents-core", version: "22.1.62" }, // LOCAL PROGET - // { name: "igniteui-webcomponents-core", version: "3.2.2" }, // PUBLIC NPM + // { version: "22.1.62", name: "@infragistics/igniteui-webcomponents-core" }, // LOCAL PROGET + // { version: "3.2.12", name: "igniteui-webcomponents-core" }, // PUBLIC NPM let packageUpgrades = [ // these IG packages are often updated: - { name: "igniteui-webcomponents-core" , version: "5.1.0" }, - { name: "igniteui-webcomponents-charts" , version: "5.1.0" }, - { name: "igniteui-webcomponents-excel" , version: "5.1.0" }, - { name: "igniteui-webcomponents-gauges" , version: "5.1.0" }, - { name: "igniteui-webcomponents-grids" , version: "5.1.0" }, - { name: "igniteui-webcomponents-inputs" , version: "5.1.0" }, - { name: "igniteui-webcomponents-layouts" , version: "5.1.0" }, - { name: "igniteui-webcomponents-maps" , version: "5.1.0" }, - { name: "igniteui-webcomponents-spreadsheet-chart-adapter", version: "5.1.0" }, - { name: "igniteui-webcomponents-spreadsheet" , version: "5.1.0" }, - { name: "igniteui-webcomponents-datasources" , version: "5.1.0" }, + { version: "5.1.0", name: "igniteui-webcomponents-core" }, + { version: "5.1.0", name: "igniteui-webcomponents-charts" }, + { version: "5.1.0", name: "igniteui-webcomponents-excel" }, + { version: "5.1.0", name: "igniteui-webcomponents-gauges" }, + { version: "5.1.0", name: "igniteui-webcomponents-grids" }, + { version: "5.1.0", name: "igniteui-webcomponents-inputs" }, + { version: "5.1.0", name: "igniteui-webcomponents-layouts" }, + { version: "5.1.0", name: "igniteui-webcomponents-maps" }, + { version: "5.1.0", name: "igniteui-webcomponents-spreadsheet-chart-adapter" }, + { version: "5.1.0", name: "igniteui-webcomponents-spreadsheet" }, + { version: "5.1.0", name: "igniteui-webcomponents-datasources" }, // these IG packages are sometimes updated: - { name: "igniteui-webcomponents", version: "5.1.2" }, - { name: "igniteui-dockmanager", version: "1.15.2" }, + { version: "5.1.2" , name: "igniteui-webcomponents" }, + { version: "1.15.2", name: "igniteui-dockmanager" }, // other packages: - { name: "webpack", version: "^5.96.1" }, - { name: "webpack-cli", version: "^4.10.0" }, - { name: "webpack-dev-server", version: "^4.11.1" }, - { name: "lit", version: "^3.2.0" }, - { name: "lit-html", version: "^3.2.0" }, + { version: "^5.96.1", name: "webpack" }, + { version: "^4.10.0", name: "webpack-cli" }, + { version: "^4.11.1", name: "webpack-dev-server" }, + { version: "^3.2.0", name: "lit" }, + { version: "^3.2.0", name: "lit-html" }, ]; var packagePaths = [ From eb5f0192756b22598b34b42f273877b235aee2ab Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Mon, 25 Nov 2024 14:41:17 -0500 Subject: [PATCH 28/63] revert CodeOwners --- CODEOWNERS => .github/CODEOWNERS | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename CODEOWNERS => .github/CODEOWNERS (100%) diff --git a/CODEOWNERS b/.github/CODEOWNERS similarity index 100% rename from CODEOWNERS rename to .github/CODEOWNERS From e595374a740ee85e5e4708d7d17e41b577e08f16 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Wed, 4 Dec 2024 12:23:22 -0500 Subject: [PATCH 29/63] caching issues (#883) --- browser/config-overrides.js | 10 ++++++++-- webpack.config.js | 5 +++++ 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/browser/config-overrides.js b/browser/config-overrides.js index 73ea2a304d..2f6a9c869b 100644 --- a/browser/config-overrides.js +++ b/browser/config-overrides.js @@ -1,4 +1,5 @@ +//note: I suspect this was copied over from the react browser, and isn't needed here. module.exports = function override(config, env) { console.log("Running config-overrides.js"); const paths = require('./node_modules/react-scripts/config/paths'); @@ -41,16 +42,21 @@ module.exports = function override(config, env) { name: 'igniteui-webcomponents-grids', chunks: 'all', }, - igniteuiMaps: { + igniteuiInputs: { test: /[\\/]node_modules[\\/](igniteui-webcomponents-inputs)[\\/]/, name: 'igniteui-webcomponents-inputs', chunks: 'all', }, - igniteuiMaps: { + igniteuiLayouts: { test: /[\\/]node_modules[\\/](igniteui-webcomponents-layouts)[\\/]/, name: 'igniteui-webcomponents-layouts', chunks: 'all', }, + igniteuiDashboards: { + test: /[\\/]node_modules[\\/](igniteui-webcomponents-dashboards)[\\/]/, + name: 'igniteui-webcomponents-dashboards', + chunks: 'all', + }, igniteuiMaps: { test: /[\\/]node_modules[\\/](igniteui-webcomponents-maps)[\\/]/, name: 'igniteui-webcomponents-maps', diff --git a/webpack.config.js b/webpack.config.js index ba5c416f9e..43202972b1 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -203,6 +203,11 @@ var config = { name: 'igniteui-webcomponents-layouts', chunks: 'all', }, + igniteuiDashboards: { + test: /[\\/]node_modules[\\/](igniteui-webcomponents-dashboards)[\\/]/, + name: 'igniteui-webcomponents-dashboards', + chunks: 'all', + }, igniteuiDockmanager: { test: /[\\/]node_modules[\\/](igniteui-dockmanager)[\\/]/, name: 'igniteui-dockmanager', From 97d5f80a7a9d9696ddac4ad4edfe19c76310ec67 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Tue, 10 Dec 2024 16:15:19 -0500 Subject: [PATCH 30/63] mdd-update-browser-5.1.1-beta.0 (#885) mdd-update-browser-5.1.1-beta.0 --- browser/public/index.html | 14 +- browser/tasks/gulp-samples.js | 22 ++-- package-lock.json | 124 +++++++++--------- package.json | 22 ++-- .../annotations-all/package.json | 8 +- .../annotations-all/sandbox.config.json | 3 +- .../annotations-all/src/index.css | 3 +- .../annotations-all/src/index.ts | 3 +- .../annotations-all/tsconfig.json | 38 ++---- .../annotations-all/webpack.config.js | 2 + .../annotations-callouts/package.json | 8 +- .../annotations-callouts/sandbox.config.json | 3 +- .../annotations-callouts/src/index.css | 3 +- .../annotations-callouts/src/index.ts | 3 +- .../annotations-callouts/tsconfig.json | 38 ++---- .../annotations-callouts/webpack.config.js | 2 + .../annotations-crosshairs/package.json | 8 +- .../sandbox.config.json | 3 +- .../annotations-crosshairs/src/index.css | 3 +- .../annotations-crosshairs/src/index.ts | 3 +- .../annotations-crosshairs/tsconfig.json | 38 ++---- .../annotations-crosshairs/webpack.config.js | 2 + .../annotations-custom/package.json | 8 +- .../annotations-custom/sandbox.config.json | 3 +- .../annotations-custom/src/index.css | 3 +- .../annotations-custom/src/index.ts | 3 +- .../annotations-custom/tsconfig.json | 38 ++---- .../annotations-custom/webpack.config.js | 2 + .../annotations-final-value/package.json | 8 +- .../sandbox.config.json | 3 +- .../annotations-final-value/src/index.css | 3 +- .../annotations-final-value/src/index.ts | 3 +- .../annotations-final-value/tsconfig.json | 38 ++---- .../annotations-final-value/webpack.config.js | 2 + .../annotations-highlighting/package.json | 8 +- .../sandbox.config.json | 3 +- .../annotations-highlighting/src/index.css | 3 +- .../annotations-highlighting/src/index.ts | 3 +- .../annotations-highlighting/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../category-chart/annotations/package.json | 4 +- .../area-chart-multiple-sources/package.json | 4 +- .../sandbox.config.json | 3 +- .../area-chart-multiple-sources/src/index.css | 3 +- .../area-chart-multiple-sources/src/index.ts | 4 +- .../area-chart-multiple-sources/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../area-chart-single-source/package.json | 4 +- .../sandbox.config.json | 3 +- .../area-chart-single-source/src/index.css | 3 +- .../area-chart-single-source/src/index.ts | 4 +- .../area-chart-single-source/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../area-chart-styling/package.json | 4 +- .../area-chart-styling/sandbox.config.json | 3 +- .../area-chart-styling/src/index.css | 3 +- .../area-chart-styling/src/index.ts | 4 +- .../area-chart-styling/tsconfig.json | 38 ++---- .../area-chart-styling/webpack.config.js | 2 + .../category-chart/axis-gap/package.json | 8 +- .../axis-gap/sandbox.config.json | 3 +- .../category-chart/axis-gap/src/index.css | 3 +- .../category-chart/axis-gap/src/index.ts | 3 +- .../category-chart/axis-gap/tsconfig.json | 38 ++---- .../category-chart/axis-gap/webpack.config.js | 2 + .../axis-gridlines/package.json | 8 +- .../axis-gridlines/sandbox.config.json | 3 +- .../axis-gridlines/src/index.css | 3 +- .../axis-gridlines/src/index.ts | 3 +- .../axis-gridlines/tsconfig.json | 38 ++---- .../axis-gridlines/webpack.config.js | 2 + .../category-chart/axis-inverted/package.json | 8 +- .../axis-inverted/sandbox.config.json | 3 +- .../axis-inverted/src/index.css | 3 +- .../category-chart/axis-inverted/src/index.ts | 3 +- .../axis-inverted/tsconfig.json | 38 ++---- .../axis-inverted/webpack.config.js | 2 + .../category-chart/axis-labels/package.json | 8 +- .../axis-labels/sandbox.config.json | 3 +- .../category-chart/axis-labels/src/index.css | 3 +- .../category-chart/axis-labels/src/index.ts | 3 +- .../category-chart/axis-labels/tsconfig.json | 38 ++---- .../axis-labels/webpack.config.js | 2 + .../axis-locations/package.json | 8 +- .../axis-locations/sandbox.config.json | 3 +- .../axis-locations/src/index.css | 3 +- .../axis-locations/src/index.ts | 3 +- .../axis-locations/tsconfig.json | 38 ++---- .../axis-locations/webpack.config.js | 2 + .../category-chart/axis-options/package.json | 4 +- .../axis-options/sandbox.config.json | 3 +- .../category-chart/axis-options/src/index.css | 3 +- .../category-chart/axis-options/src/index.ts | 4 +- .../category-chart/axis-options/tsconfig.json | 38 ++---- .../axis-options/webpack.config.js | 2 + .../category-chart/axis-overlap/package.json | 8 +- .../axis-overlap/sandbox.config.json | 3 +- .../category-chart/axis-overlap/src/index.css | 3 +- .../category-chart/axis-overlap/src/index.ts | 3 +- .../category-chart/axis-overlap/tsconfig.json | 38 ++---- .../axis-overlap/webpack.config.js | 2 + .../category-chart/axis-range/package.json | 8 +- .../axis-range/sandbox.config.json | 3 +- .../category-chart/axis-range/src/index.css | 3 +- .../category-chart/axis-range/src/index.ts | 3 +- .../category-chart/axis-range/tsconfig.json | 38 ++---- .../axis-range/webpack.config.js | 2 + .../axis-tickmarks/package.json | 8 +- .../axis-tickmarks/sandbox.config.json | 3 +- .../axis-tickmarks/src/index.css | 3 +- .../axis-tickmarks/src/index.ts | 3 +- .../axis-tickmarks/tsconfig.json | 38 ++---- .../axis-tickmarks/webpack.config.js | 2 + .../category-chart/axis-titles/package.json | 4 +- .../axis-titles/sandbox.config.json | 3 +- .../category-chart/axis-titles/src/index.css | 3 +- .../category-chart/axis-titles/src/index.ts | 4 +- .../category-chart/axis-titles/tsconfig.json | 38 ++---- .../axis-titles/webpack.config.js | 2 + .../chart-highlight-filter/package.json | 8 +- .../sandbox.config.json | 3 +- .../chart-highlight-filter/src/index.css | 3 +- .../chart-highlight-filter/src/index.ts | 3 +- .../chart-highlight-filter/tsconfig.json | 38 ++---- .../chart-highlight-filter/webpack.config.js | 2 + .../package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../column-chart-single-source/package.json | 4 +- .../sandbox.config.json | 3 +- .../column-chart-single-source/src/index.css | 3 +- .../column-chart-single-source/src/index.ts | 4 +- .../column-chart-single-source/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../column-chart-styling/package.json | 4 +- .../column-chart-styling/sandbox.config.json | 3 +- .../column-chart-styling/src/index.css | 3 +- .../column-chart-styling/src/index.ts | 4 +- .../column-chart-styling/tsconfig.json | 38 ++---- .../column-chart-styling/webpack.config.js | 2 + .../package.json | 4 +- .../src/index.ts | 18 +-- .../column-chart-with-tooltips/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-chart-with-tooltips/src/index.css | 3 +- .../column-chart-with-tooltips/src/index.ts | 3 +- .../column-chart-with-tooltips/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../custom-selection/package.json | 4 +- .../custom-selection/sandbox.config.json | 3 +- .../custom-selection/src/index.css | 3 +- .../custom-selection/src/index.ts | 5 +- .../custom-selection/tsconfig.json | 38 ++---- .../custom-selection/webpack.config.js | 2 + .../data-aggregations/package.json | 8 +- .../data-aggregations/sandbox.config.json | 3 +- .../data-aggregations/src/index.css | 3 +- .../data-aggregations/src/index.ts | 2 +- .../data-aggregations/tsconfig.json | 38 ++---- .../data-aggregations/webpack.config.js | 2 + .../category-chart/data-filter/package.json | 8 +- .../data-filter/sandbox.config.json | 3 +- .../category-chart/data-filter/src/index.css | 3 +- .../category-chart/data-filter/src/index.ts | 3 +- .../category-chart/data-filter/tsconfig.json | 38 ++---- .../data-filter/webpack.config.js | 2 + .../package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../category-chart/data-legend/package.json | 4 +- .../data-legend/sandbox.config.json | 3 +- .../category-chart/data-legend/src/index.css | 3 +- .../category-chart/data-legend/src/index.ts | 4 +- .../category-chart/data-legend/tsconfig.json | 38 ++---- .../data-legend/webpack.config.js | 2 + .../package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../data-tooltip-positioning/package.json | 8 +- .../sandbox.config.json | 3 +- .../data-tooltip-positioning/src/index.css | 3 +- .../data-tooltip-positioning/src/index.ts | 3 +- .../data-tooltip-positioning/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../category-chart/data-tooltip/package.json | 4 +- .../data-tooltip/sandbox.config.json | 3 +- .../category-chart/data-tooltip/src/index.css | 3 +- .../category-chart/data-tooltip/src/index.ts | 4 +- .../category-chart/data-tooltip/tsconfig.json | 38 ++---- .../data-tooltip/webpack.config.js | 2 + .../format-specifiers/package.json | 8 +- .../format-specifiers/sandbox.config.json | 3 +- .../format-specifiers/src/index.css | 3 +- .../format-specifiers/src/index.ts | 7 +- .../format-specifiers/tsconfig.json | 38 ++---- .../format-specifiers/webpack.config.js | 2 + .../high-frequency/package.json | 4 +- .../category-chart/high-volume/package.json | 4 +- .../highlighting-behavior/package.json | 8 +- .../highlighting-behavior/sandbox.config.json | 3 +- .../highlighting-behavior/src/index.css | 3 +- .../highlighting-behavior/src/index.ts | 3 +- .../highlighting-behavior/tsconfig.json | 38 ++---- .../highlighting-behavior/webpack.config.js | 2 + .../highlighting-mode/package.json | 8 +- .../highlighting-mode/sandbox.config.json | 3 +- .../highlighting-mode/src/index.css | 3 +- .../highlighting-mode/src/index.ts | 3 +- .../highlighting-mode/tsconfig.json | 38 ++---- .../highlighting-mode/webpack.config.js | 2 + .../category-chart/highlighting/package.json | 4 +- .../legend-highlighting/package.json | 4 +- .../legend-highlighting/sandbox.config.json | 3 +- .../legend-highlighting/src/index.css | 3 +- .../legend-highlighting/src/index.ts | 4 +- .../legend-highlighting/tsconfig.json | 38 ++---- .../legend-highlighting/webpack.config.js | 2 + .../line-chart-multiple-sources/package.json | 4 +- .../sandbox.config.json | 3 +- .../line-chart-multiple-sources/src/index.css | 3 +- .../line-chart-multiple-sources/src/index.ts | 4 +- .../line-chart-multiple-sources/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../line-chart-single-source/package.json | 4 +- .../sandbox.config.json | 3 +- .../line-chart-single-source/src/index.css | 3 +- .../line-chart-single-source/src/index.ts | 4 +- .../line-chart-single-source/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../line-chart-styling/package.json | 4 +- .../line-chart-styling/sandbox.config.json | 3 +- .../line-chart-styling/src/index.css | 3 +- .../line-chart-styling/src/index.ts | 4 +- .../line-chart-styling/tsconfig.json | 38 ++---- .../line-chart-styling/webpack.config.js | 2 + .../line-chart-with-animations/package.json | 4 +- .../line-chart-with-animations/src/index.ts | 2 +- .../line-chart-with-annotations/package.json | 4 +- .../line-chart-with-annotations/src/index.ts | 6 +- .../marker-options/package.json | 8 +- .../marker-options/sandbox.config.json | 3 +- .../marker-options/src/index.css | 3 +- .../marker-options/src/index.ts | 3 +- .../marker-options/tsconfig.json | 38 ++---- .../marker-options/webpack.config.js | 2 + .../marker-templates/package.json | 4 +- .../marker-templates/src/index.ts | 1 - .../category-chart/overview/package.json | 4 +- .../overview/sandbox.config.json | 3 +- .../category-chart/overview/src/index.css | 3 +- .../category-chart/overview/src/index.ts | 4 +- .../category-chart/overview/tsconfig.json | 38 ++---- .../category-chart/overview/webpack.config.js | 2 + .../point-chart-multiple-sources/package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../point-chart-multiple-sources/src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../point-chart-single-source/package.json | 4 +- .../sandbox.config.json | 3 +- .../point-chart-single-source/src/index.css | 3 +- .../point-chart-single-source/src/index.ts | 4 +- .../point-chart-single-source/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../point-chart-styling/package.json | 4 +- .../point-chart-styling/sandbox.config.json | 3 +- .../point-chart-styling/src/index.css | 3 +- .../point-chart-styling/src/index.ts | 4 +- .../point-chart-styling/tsconfig.json | 38 ++---- .../point-chart-styling/webpack.config.js | 2 + .../selection-modes/package.json | 4 +- .../selection-modes/sandbox.config.json | 3 +- .../selection-modes/src/index.css | 3 +- .../selection-modes/src/index.ts | 4 +- .../selection-modes/tsconfig.json | 38 ++---- .../selection-modes/webpack.config.js | 2 + .../selection-multiple-modes/package.json | 8 +- .../sandbox.config.json | 3 +- .../selection-multiple-modes/src/index.css | 3 +- .../selection-multiple-modes/src/index.ts | 3 +- .../selection-multiple-modes/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../spline-area-multiple-sources/package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../spline-area-multiple-sources/src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../spline-area-single-source/package.json | 4 +- .../sandbox.config.json | 3 +- .../spline-area-single-source/src/index.css | 3 +- .../spline-area-single-source/src/index.ts | 4 +- .../spline-area-single-source/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../spline-area-styling/package.json | 4 +- .../spline-area-styling/sandbox.config.json | 3 +- .../spline-area-styling/src/index.css | 3 +- .../spline-area-styling/src/index.ts | 4 +- .../spline-area-styling/tsconfig.json | 38 ++---- .../spline-area-styling/webpack.config.js | 2 + .../spline-multiple-sources/package.json | 4 +- .../sandbox.config.json | 3 +- .../spline-multiple-sources/src/index.css | 3 +- .../spline-multiple-sources/src/index.ts | 4 +- .../spline-multiple-sources/tsconfig.json | 38 ++---- .../spline-multiple-sources/webpack.config.js | 2 + .../spline-single-source/package.json | 4 +- .../spline-single-source/sandbox.config.json | 3 +- .../spline-single-source/src/index.css | 3 +- .../spline-single-source/src/index.ts | 4 +- .../spline-single-source/tsconfig.json | 38 ++---- .../spline-single-source/webpack.config.js | 2 + .../spline-styling/package.json | 4 +- .../spline-styling/sandbox.config.json | 3 +- .../spline-styling/src/index.css | 3 +- .../spline-styling/src/index.ts | 4 +- .../spline-styling/tsconfig.json | 38 ++---- .../spline-styling/webpack.config.js | 2 + .../category-chart/stack-columns/package.json | 4 +- .../step-area-multiple-sources/package.json | 4 +- .../sandbox.config.json | 3 +- .../step-area-multiple-sources/src/index.css | 3 +- .../step-area-multiple-sources/src/index.ts | 4 +- .../step-area-multiple-sources/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../step-area-single-source/package.json | 4 +- .../sandbox.config.json | 3 +- .../step-area-single-source/src/index.css | 3 +- .../step-area-single-source/src/index.ts | 4 +- .../step-area-single-source/tsconfig.json | 38 ++---- .../step-area-single-source/webpack.config.js | 2 + .../step-area-styling/package.json | 4 +- .../step-area-styling/sandbox.config.json | 3 +- .../step-area-styling/src/index.css | 3 +- .../step-area-styling/src/index.ts | 4 +- .../step-area-styling/tsconfig.json | 38 ++---- .../step-area-styling/webpack.config.js | 2 + .../step-line-multiple-sources/package.json | 4 +- .../sandbox.config.json | 3 +- .../step-line-multiple-sources/src/index.css | 3 +- .../step-line-multiple-sources/src/index.ts | 4 +- .../step-line-multiple-sources/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../step-line-single-source/package.json | 4 +- .../sandbox.config.json | 3 +- .../step-line-single-source/src/index.css | 3 +- .../step-line-single-source/src/index.ts | 4 +- .../step-line-single-source/tsconfig.json | 38 ++---- .../step-line-single-source/webpack.config.js | 2 + .../step-line-styling/package.json | 4 +- .../step-line-styling/sandbox.config.json | 3 +- .../step-line-styling/src/index.css | 3 +- .../step-line-styling/src/index.ts | 4 +- .../step-line-styling/tsconfig.json | 38 ++---- .../step-line-styling/webpack.config.js | 2 + .../tooltip-template/package.json | 4 +- .../tooltip-template/src/index.ts | 16 +-- .../category-chart/tooltip-types/package.json | 4 +- .../category-chart/trendline/package.json | 4 +- .../category-chart/value-lines/package.json | 8 +- .../value-lines/sandbox.config.json | 3 +- .../category-chart/value-lines/src/index.css | 3 +- .../category-chart/value-lines/src/index.ts | 3 +- .../category-chart/value-lines/tsconfig.json | 38 ++---- .../value-lines/webpack.config.js | 2 + .../annotations-custom/package.json | 4 +- .../annotations-custom/sandbox.config.json | 3 +- .../annotations-custom/src/index.css | 3 +- .../annotations-custom/src/index.ts | 4 +- .../annotations-custom/tsconfig.json | 38 ++---- .../annotations-custom/webpack.config.js | 2 + .../package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../data-chart/axis-annotations/package.json | 4 +- .../data-chart/axis-crossing/package.json | 4 +- .../data-chart/axis-crossing/src/index.ts | 14 +- .../axis-label-rotation/package.json | 8 +- .../axis-label-rotation/sandbox.config.json | 3 +- .../axis-label-rotation/src/index.css | 3 +- .../axis-label-rotation/src/index.ts | 3 +- .../axis-label-rotation/tsconfig.json | 38 ++---- .../axis-label-rotation/webpack.config.js | 2 + .../data-chart/axis-locations/package.json | 4 +- .../data-chart/axis-min-max-gap/package.json | 4 +- .../axis-min-max-gap/sandbox.config.json | 3 +- .../data-chart/axis-min-max-gap/src/index.css | 3 +- .../data-chart/axis-min-max-gap/src/index.ts | 4 +- .../data-chart/axis-min-max-gap/tsconfig.json | 38 ++---- .../axis-min-max-gap/webpack.config.js | 2 + .../data-chart/axis-settings/package.json | 4 +- .../data-chart/axis-sharing/package.json | 4 +- .../charts/data-chart/axis-types/package.json | 4 +- .../bar-chart-multiple-sources/package.json | 4 +- .../sandbox.config.json | 3 +- .../bar-chart-multiple-sources/src/index.css | 3 +- .../bar-chart-multiple-sources/src/index.ts | 4 +- .../bar-chart-multiple-sources/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../bar-chart-overlapping/package.json | 4 +- .../bar-chart-overlapping/sandbox.config.json | 3 +- .../bar-chart-overlapping/src/index.css | 3 +- .../bar-chart-overlapping/src/index.ts | 4 +- .../bar-chart-overlapping/tsconfig.json | 38 ++---- .../bar-chart-overlapping/webpack.config.js | 2 + .../bar-chart-single-source/package.json | 4 +- .../sandbox.config.json | 3 +- .../bar-chart-single-source/src/index.css | 3 +- .../bar-chart-single-source/src/index.ts | 4 +- .../bar-chart-single-source/tsconfig.json | 38 ++---- .../bar-chart-single-source/webpack.config.js | 2 + .../data-chart/bar-chart-styling/package.json | 4 +- .../bar-chart-styling/sandbox.config.json | 3 +- .../bar-chart-styling/src/index.css | 3 +- .../data-chart/bar-chart-styling/src/index.ts | 4 +- .../bar-chart-styling/tsconfig.json | 38 ++---- .../bar-chart-styling/webpack.config.js | 2 + .../callout-layer-styling/package.json | 4 +- .../callout-layer-styling/sandbox.config.json | 3 +- .../callout-layer-styling/src/index.css | 3 +- .../callout-layer-styling/src/index.ts | 4 +- .../callout-layer-styling/tsconfig.json | 38 ++---- .../callout-layer-styling/webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 3 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 3 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../chart-highlight-filter/package.json | 8 +- .../sandbox.config.json | 3 +- .../chart-highlight-filter/src/index.css | 3 +- .../chart-highlight-filter/src/index.ts | 3 +- .../chart-highlight-filter/tsconfig.json | 38 ++---- .../chart-highlight-filter/webpack.config.js | 2 + .../data-chart/chart-navigation/package.json | 4 +- .../data-chart/chart-overview/package.json | 4 +- .../data-chart/chart-performance/package.json | 4 +- .../chart-synchronization/package.json | 4 +- .../data-chart/chart-titles/package.json | 4 +- .../data-chart/composite-chart/package.json | 4 +- .../data-chart/composite-chart/src/index.ts | 10 +- .../crosshair-layer-styling/package.json | 4 +- .../crosshair-layer-styling/src/index.ts | 1 - .../custom-drawing-annotations/package.json | 8 +- .../sandbox.config.json | 3 +- .../custom-drawing-annotations/src/index.css | 3 +- .../custom-drawing-annotations/src/index.ts | 78 +++++------ .../custom-drawing-annotations/tsconfig.json | 38 ++---- .../custom-editing-data/package.json | 4 +- .../custom-editing-data/sandbox.config.json | 3 +- .../custom-editing-data/src/index.css | 3 +- .../custom-editing-data/src/index.ts | 32 +++-- .../custom-editing-data/tsconfig.json | 38 ++---- .../data-chart/dash-array-axes/package.json | 4 +- .../dash-array-axes/sandbox.config.json | 3 +- .../data-chart/dash-array-axes/src/index.css | 3 +- .../data-chart/dash-array-axes/src/index.ts | 4 +- .../data-chart/dash-array-axes/tsconfig.json | 38 ++---- .../data-chart/dash-array-series/package.json | 4 +- .../dash-array-series/sandbox.config.json | 3 +- .../dash-array-series/src/index.css | 3 +- .../data-chart/dash-array-series/src/index.ts | 4 +- .../dash-array-series/tsconfig.json | 38 ++---- .../dash-array-tickmarks/package.json | 4 +- .../dash-array-tickmarks/sandbox.config.json | 3 +- .../dash-array-tickmarks/src/index.css | 3 +- .../dash-array-tickmarks/src/index.ts | 4 +- .../dash-array-tickmarks/tsconfig.json | 38 ++---- .../dash-array-trendline/package.json | 4 +- .../dash-array-trendline/sandbox.config.json | 3 +- .../dash-array-trendline/src/index.css | 3 +- .../dash-array-trendline/src/index.ts | 4 +- .../dash-array-trendline/tsconfig.json | 38 ++---- .../package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../data-legend-grouping/package.json | 4 +- .../data-legend-grouping/sandbox.config.json | 3 +- .../data-legend-grouping/src/index.css | 3 +- .../data-legend-grouping/src/index.ts | 4 +- .../data-legend-grouping/tsconfig.json | 38 ++---- .../data-legend-grouping/webpack.config.js | 2 + .../data-legend-styling/package.json | 4 +- .../data-legend-styling/sandbox.config.json | 3 +- .../data-legend-styling/src/index.css | 3 +- .../data-legend-styling/src/index.ts | 4 +- .../data-legend-styling/tsconfig.json | 38 ++---- .../data-legend-styling/webpack.config.js | 2 + .../data-chart/data-legend/package.json | 4 +- .../data-legend/sandbox.config.json | 3 +- .../data-chart/data-legend/src/index.css | 3 +- .../data-chart/data-legend/src/index.ts | 6 +- .../data-chart/data-legend/tsconfig.json | 38 ++---- .../data-chart/data-legend/webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../data-tooltip-grouping/package.json | 8 +- .../data-tooltip-grouping/sandbox.config.json | 3 +- .../data-tooltip-grouping/src/index.css | 3 +- .../data-tooltip-grouping/src/index.ts | 4 +- .../data-tooltip-grouping/tsconfig.json | 38 ++---- .../data-tooltip-grouping/webpack.config.js | 2 + .../data-tooltip-styling/package.json | 8 +- .../data-tooltip-styling/sandbox.config.json | 3 +- .../data-tooltip-styling/src/index.css | 3 +- .../data-tooltip-styling/src/index.ts | 4 +- .../data-tooltip-styling/tsconfig.json | 38 ++---- .../data-tooltip-styling/webpack.config.js | 2 + .../data-chart/data-tooltip/package.json | 4 +- .../data-tooltip/sandbox.config.json | 3 +- .../data-chart/data-tooltip/src/index.css | 3 +- .../data-chart/data-tooltip/src/index.ts | 6 +- .../data-chart/data-tooltip/tsconfig.json | 38 ++---- .../data-chart/data-tooltip/webpack.config.js | 2 + .../final-value-layer-styling/package.json | 4 +- .../final-value-layer-styling/src/index.ts | 1 - .../financial-price-series/package.json | 4 +- .../sandbox.config.json | 3 +- .../financial-price-series/src/index.css | 3 +- .../financial-price-series/src/index.ts | 4 +- .../financial-price-series/tsconfig.json | 38 ++---- .../financial-price-series/webpack.config.js | 2 + .../data-chart/format-specifiers/package.json | 4 +- .../format-specifiers/sandbox.config.json | 3 +- .../format-specifiers/src/index.css | 3 +- .../data-chart/format-specifiers/src/index.ts | 7 +- .../format-specifiers/tsconfig.json | 38 ++---- .../charts/data-chart/legends/package.json | 4 +- .../polar-area-chart-styling/package.json | 4 +- .../sandbox.config.json | 3 +- .../polar-area-chart-styling/src/index.css | 3 +- .../polar-area-chart-styling/src/index.ts | 4 +- .../polar-area-chart-styling/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../data-chart/polar-area-chart/package.json | 4 +- .../polar-area-chart/sandbox.config.json | 3 +- .../data-chart/polar-area-chart/src/index.css | 3 +- .../data-chart/polar-area-chart/src/index.ts | 4 +- .../data-chart/polar-area-chart/tsconfig.json | 38 ++---- .../polar-area-chart/webpack.config.js | 2 + .../data-chart/polar-chart-types/package.json | 4 +- .../data-chart/polar-line-chart/package.json | 4 +- .../polar-line-chart/sandbox.config.json | 3 +- .../data-chart/polar-line-chart/src/index.css | 3 +- .../data-chart/polar-line-chart/src/index.ts | 4 +- .../data-chart/polar-line-chart/tsconfig.json | 38 ++---- .../polar-line-chart/webpack.config.js | 2 + .../polar-scatter-chart/package.json | 4 +- .../polar-scatter-chart/sandbox.config.json | 3 +- .../polar-scatter-chart/src/index.css | 3 +- .../polar-scatter-chart/src/index.ts | 4 +- .../polar-scatter-chart/tsconfig.json | 38 ++---- .../polar-scatter-chart/webpack.config.js | 2 + .../polar-spline-area-chart/package.json | 4 +- .../sandbox.config.json | 3 +- .../polar-spline-area-chart/src/index.css | 3 +- .../polar-spline-area-chart/src/index.ts | 4 +- .../polar-spline-area-chart/tsconfig.json | 38 ++---- .../polar-spline-area-chart/webpack.config.js | 2 + .../polar-spline-chart/package.json | 4 +- .../polar-spline-chart/sandbox.config.json | 3 +- .../polar-spline-chart/src/index.css | 3 +- .../polar-spline-chart/src/index.ts | 4 +- .../polar-spline-chart/tsconfig.json | 38 ++---- .../polar-spline-chart/webpack.config.js | 2 + .../radial-area-chart-styling/package.json | 4 +- .../sandbox.config.json | 3 +- .../radial-area-chart-styling/src/index.css | 3 +- .../radial-area-chart-styling/src/index.ts | 4 +- .../radial-area-chart-styling/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../data-chart/radial-area-chart/package.json | 4 +- .../radial-area-chart/sandbox.config.json | 3 +- .../radial-area-chart/src/index.css | 3 +- .../data-chart/radial-area-chart/src/index.ts | 4 +- .../radial-area-chart/tsconfig.json | 38 ++---- .../radial-area-chart/webpack.config.js | 2 + .../radial-chart-types/package.json | 4 +- .../radial-chart-types/src/index.ts | 2 - .../package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../radial-column-chart/package.json | 4 +- .../radial-column-chart/sandbox.config.json | 3 +- .../radial-column-chart/src/index.css | 3 +- .../radial-column-chart/src/index.ts | 4 +- .../radial-column-chart/tsconfig.json | 38 ++---- .../radial-column-chart/webpack.config.js | 2 + .../data-chart/radial-label-mode/package.json | 8 +- .../radial-label-mode/sandbox.config.json | 3 +- .../radial-label-mode/src/index.css | 3 +- .../data-chart/radial-label-mode/src/index.ts | 3 +- .../radial-label-mode/tsconfig.json | 38 ++---- .../radial-label-mode/webpack.config.js | 2 + .../data-chart/radial-line-chart/package.json | 4 +- .../radial-line-chart/sandbox.config.json | 3 +- .../radial-line-chart/src/index.css | 3 +- .../data-chart/radial-line-chart/src/index.ts | 4 +- .../radial-line-chart/tsconfig.json | 38 ++---- .../radial-line-chart/webpack.config.js | 2 + .../data-chart/radial-pie-chart/package.json | 4 +- .../radial-pie-chart/sandbox.config.json | 3 +- .../data-chart/radial-pie-chart/src/index.css | 3 +- .../data-chart/radial-pie-chart/src/index.ts | 4 +- .../data-chart/radial-pie-chart/tsconfig.json | 38 ++---- .../radial-pie-chart/webpack.config.js | 2 + .../package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../data-chart/range-area-chart/package.json | 4 +- .../range-area-chart/sandbox.config.json | 3 +- .../data-chart/range-area-chart/src/index.css | 3 +- .../data-chart/range-area-chart/src/index.ts | 4 +- .../data-chart/range-area-chart/tsconfig.json | 38 ++---- .../range-area-chart/webpack.config.js | 2 + .../range-column-chart/package.json | 4 +- .../range-column-chart/sandbox.config.json | 3 +- .../range-column-chart/src/index.css | 3 +- .../range-column-chart/src/index.ts | 4 +- .../range-column-chart/tsconfig.json | 38 ++---- .../range-column-chart/webpack.config.js | 2 + .../package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 6 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 6 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../scatter-bubble-chart-styling/package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../scatter-bubble-chart-styling/src/index.ts | 6 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../scatter-line-chart/package.json | 4 +- .../scatter-line-chart/sandbox.config.json | 3 +- .../scatter-line-chart/src/index.css | 3 +- .../scatter-line-chart/src/index.ts | 4 +- .../scatter-line-chart/tsconfig.json | 38 ++---- .../scatter-line-chart/webpack.config.js | 2 + .../scatter-point-chart/package.json | 4 +- .../scatter-point-chart/sandbox.config.json | 3 +- .../scatter-point-chart/src/index.css | 3 +- .../scatter-point-chart/src/index.ts | 4 +- .../scatter-point-chart/tsconfig.json | 38 ++---- .../scatter-point-chart/webpack.config.js | 2 + .../scatter-spline-chart/package.json | 4 +- .../scatter-spline-chart/sandbox.config.json | 3 +- .../scatter-spline-chart/src/index.css | 3 +- .../scatter-spline-chart/src/index.ts | 4 +- .../scatter-spline-chart/tsconfig.json | 38 ++---- .../scatter-spline-chart/webpack.config.js | 2 + .../data-chart/series-animations/package.json | 4 +- .../series-annotations/package.json | 4 +- .../data-chart/series-error-bars/package.json | 4 +- .../series-highlighting/package.json | 4 +- .../series-marker-template/package.json | 4 +- .../data-chart/series-markers/package.json | 4 +- .../data-chart/series-tooltips/package.json | 4 +- .../data-chart/series-trendlines/package.json | 4 +- .../series-value-overlay/package.json | 4 +- .../stacked-100-area-chart/package.json | 4 +- .../sandbox.config.json | 3 +- .../stacked-100-area-chart/src/index.css | 3 +- .../stacked-100-area-chart/src/index.ts | 4 +- .../stacked-100-area-chart/tsconfig.json | 38 ++---- .../stacked-100-area-chart/webpack.config.js | 2 + .../stacked-100-bar-chart/package.json | 4 +- .../stacked-100-bar-chart/sandbox.config.json | 3 +- .../stacked-100-bar-chart/src/index.css | 3 +- .../stacked-100-bar-chart/src/index.ts | 4 +- .../stacked-100-bar-chart/tsconfig.json | 38 ++---- .../stacked-100-bar-chart/webpack.config.js | 2 + .../stacked-100-column-chart/package.json | 4 +- .../sandbox.config.json | 3 +- .../stacked-100-column-chart/src/index.css | 3 +- .../stacked-100-column-chart/src/index.ts | 4 +- .../stacked-100-column-chart/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../stacked-100-line-chart/package.json | 4 +- .../sandbox.config.json | 3 +- .../stacked-100-line-chart/src/index.css | 3 +- .../stacked-100-line-chart/src/index.ts | 4 +- .../stacked-100-line-chart/tsconfig.json | 38 ++---- .../stacked-100-line-chart/webpack.config.js | 2 + .../package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../stacked-100-spline-chart/package.json | 4 +- .../sandbox.config.json | 3 +- .../stacked-100-spline-chart/src/index.css | 3 +- .../stacked-100-spline-chart/src/index.ts | 4 +- .../stacked-100-spline-chart/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../stacked-area-chart/package.json | 4 +- .../stacked-area-chart/sandbox.config.json | 3 +- .../stacked-area-chart/src/index.css | 3 +- .../stacked-area-chart/src/index.ts | 4 +- .../stacked-area-chart/tsconfig.json | 38 ++---- .../stacked-area-chart/webpack.config.js | 2 + .../data-chart/stacked-bar-chart/package.json | 4 +- .../stacked-bar-chart/sandbox.config.json | 3 +- .../stacked-bar-chart/src/index.css | 3 +- .../data-chart/stacked-bar-chart/src/index.ts | 4 +- .../stacked-bar-chart/tsconfig.json | 38 ++---- .../stacked-bar-chart/webpack.config.js | 2 + .../stacked-chart-types/package.json | 4 +- .../stacked-column-chart/package.json | 4 +- .../stacked-column-chart/sandbox.config.json | 3 +- .../stacked-column-chart/src/index.css | 3 +- .../stacked-column-chart/src/index.ts | 4 +- .../stacked-column-chart/tsconfig.json | 38 ++---- .../stacked-column-chart/webpack.config.js | 2 + .../stacked-line-chart/package.json | 4 +- .../stacked-line-chart/sandbox.config.json | 3 +- .../stacked-line-chart/src/index.css | 3 +- .../stacked-line-chart/src/index.ts | 4 +- .../stacked-line-chart/tsconfig.json | 38 ++---- .../stacked-line-chart/webpack.config.js | 2 + .../stacked-spline-area-chart/package.json | 4 +- .../sandbox.config.json | 3 +- .../stacked-spline-area-chart/src/index.css | 3 +- .../stacked-spline-area-chart/src/index.ts | 4 +- .../stacked-spline-area-chart/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../stacked-spline-chart/package.json | 4 +- .../stacked-spline-chart/sandbox.config.json | 3 +- .../stacked-spline-chart/src/index.css | 3 +- .../stacked-spline-chart/src/index.ts | 4 +- .../stacked-spline-chart/tsconfig.json | 38 ++---- .../stacked-spline-chart/webpack.config.js | 2 + .../data-chart/tooltip-template/package.json | 4 +- .../data-chart/transition-event/package.json | 8 +- .../transition-event/sandbox.config.json | 3 +- .../data-chart/transition-event/src/index.css | 3 +- .../data-chart/transition-event/src/index.ts | 3 +- .../data-chart/transition-event/tsconfig.json | 38 ++---- .../transition-event/webpack.config.js | 2 + .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../type-financial-ohlc-series/package.json | 4 +- .../type-financial-overlays/package.json | 4 +- .../type-financial-series/package.json | 4 +- .../type-range-area-series/package.json | 4 +- .../type-range-column-series/package.json | 4 +- .../data-chart/type-range-series/package.json | 4 +- .../type-scatter-area-series/package.json | 4 +- .../type-scatter-bubble-series/package.json | 4 +- .../type-scatter-contour-series/package.json | 4 +- .../type-scatter-hd-series/package.json | 4 +- .../type-scatter-polygon-series/package.json | 4 +- .../type-scatter-polyline-series/package.json | 4 +- .../type-scatter-series/package.json | 4 +- .../type-scatter-series/src/index.ts | 10 +- .../data-chart/type-shape-series/package.json | 4 +- .../data-chart/waterfall-chart/package.json | 4 +- .../waterfall-chart/sandbox.config.json | 3 +- .../data-chart/waterfall-chart/src/index.css | 3 +- .../data-chart/waterfall-chart/src/index.ts | 4 +- .../data-chart/waterfall-chart/tsconfig.json | 38 ++---- .../waterfall-chart/webpack.config.js | 2 + .../data-pie-chart/animation/package.json | 8 +- .../animation/sandbox.config.json | 3 +- .../data-pie-chart/animation/src/index.css | 3 +- .../data-pie-chart/animation/src/index.ts | 3 +- .../data-pie-chart/animation/tsconfig.json | 38 ++---- .../animation/webpack.config.js | 2 + .../highlight-filter/package.json | 4 +- .../highlight-filter/sandbox.config.json | 3 +- .../highlight-filter/src/index.css | 3 +- .../highlight-filter/src/index.ts | 4 +- .../highlight-filter/tsconfig.json | 38 ++---- .../highlight-filter/webpack.config.js | 2 + .../data-pie-chart/highlighting/package.json | 8 +- .../highlighting/sandbox.config.json | 3 +- .../data-pie-chart/highlighting/src/index.css | 3 +- .../data-pie-chart/highlighting/src/index.ts | 3 +- .../data-pie-chart/highlighting/tsconfig.json | 38 ++---- .../highlighting/webpack.config.js | 2 + .../charts/data-pie-chart/legend/package.json | 8 +- .../data-pie-chart/legend/sandbox.config.json | 3 +- .../data-pie-chart/legend/src/index.css | 3 +- .../charts/data-pie-chart/legend/src/index.ts | 4 +- .../data-pie-chart/legend/tsconfig.json | 38 ++---- .../data-pie-chart/legend/webpack.config.js | 2 + .../charts/data-pie-chart/others/package.json | 8 +- .../data-pie-chart/others/sandbox.config.json | 3 +- .../data-pie-chart/others/src/index.css | 3 +- .../charts/data-pie-chart/others/src/index.ts | 3 +- .../data-pie-chart/others/tsconfig.json | 38 ++---- .../data-pie-chart/others/webpack.config.js | 2 + .../data-pie-chart/overview/package.json | 4 +- .../overview/sandbox.config.json | 3 +- .../data-pie-chart/overview/src/index.css | 3 +- .../data-pie-chart/overview/src/index.ts | 4 +- .../data-pie-chart/overview/tsconfig.json | 38 ++---- .../data-pie-chart/overview/webpack.config.js | 2 + .../data-pie-chart/selection/package.json | 8 +- .../selection/sandbox.config.json | 3 +- .../data-pie-chart/selection/src/index.css | 3 +- .../data-pie-chart/selection/src/index.ts | 3 +- .../data-pie-chart/selection/tsconfig.json | 38 ++---- .../selection/webpack.config.js | 2 + .../doughnut-chart/animation/package.json | 4 +- .../doughnut-chart/explosion/package.json | 4 +- .../charts/doughnut-chart/legend/package.json | 4 +- .../doughnut-chart/legend/sandbox.config.json | 3 +- .../doughnut-chart/legend/src/index.css | 3 +- .../charts/doughnut-chart/legend/src/index.ts | 4 +- .../doughnut-chart/legend/tsconfig.json | 38 ++---- .../doughnut-chart/legend/webpack.config.js | 2 + .../doughnut-chart/overview/package.json | 4 +- .../overview/sandbox.config.json | 3 +- .../doughnut-chart/overview/src/index.css | 3 +- .../doughnut-chart/overview/src/index.ts | 4 +- .../doughnut-chart/overview/tsconfig.json | 38 ++---- .../doughnut-chart/overview/webpack.config.js | 2 + .../charts/doughnut-chart/rings/package.json | 4 +- .../doughnut-chart/rings/sandbox.config.json | 3 +- .../charts/doughnut-chart/rings/src/index.css | 3 +- .../charts/doughnut-chart/rings/src/index.ts | 4 +- .../charts/doughnut-chart/rings/tsconfig.json | 38 ++---- .../doughnut-chart/rings/webpack.config.js | 2 + .../doughnut-chart/selection/package.json | 4 +- .../financial-chart/annotations/package.json | 4 +- .../financial-chart/axis-types/package.json | 4 +- .../package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../data-legend-styling-props/package.json | 4 +- .../sandbox.config.json | 3 +- .../data-legend-styling-props/src/index.css | 3 +- .../data-legend-styling-props/src/index.ts | 4 +- .../data-legend-styling-props/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../financial-chart/data-legend/package.json | 4 +- .../data-legend/sandbox.config.json | 3 +- .../financial-chart/data-legend/src/index.css | 3 +- .../financial-chart/data-legend/src/index.ts | 4 +- .../financial-chart/data-legend/tsconfig.json | 38 ++---- .../data-legend/webpack.config.js | 2 + .../package.json | 4 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../data-tooltip-styling-props/package.json | 4 +- .../sandbox.config.json | 3 +- .../data-tooltip-styling-props/src/index.css | 3 +- .../data-tooltip-styling-props/src/index.ts | 4 +- .../data-tooltip-styling-props/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../financial-chart/data-tooltip/package.json | 4 +- .../data-tooltip/sandbox.config.json | 3 +- .../data-tooltip/src/index.css | 3 +- .../financial-chart/data-tooltip/src/index.ts | 4 +- .../data-tooltip/tsconfig.json | 38 ++---- .../data-tooltip/webpack.config.js | 2 + .../format-specifiers/package.json | 4 +- .../format-specifiers/sandbox.config.json | 3 +- .../format-specifiers/src/index.css | 3 +- .../format-specifiers/src/index.ts | 8 +- .../format-specifiers/tsconfig.json | 38 ++---- .../format-specifiers/webpack.config.js | 2 + .../high-frequency/package.json | 4 +- .../financial-chart/high-volume/package.json | 4 +- .../indicator-customization/package.json | 4 +- .../indicator-types/package.json | 4 +- .../multiple-data/package.json | 4 +- .../financial-chart/overview/package.json | 4 +- .../charts/financial-chart/panes/package.json | 4 +- .../charts/financial-chart/panes/src/index.ts | 1 - .../financial-chart/performance/package.json | 4 +- .../financial-chart/scrollbars/package.json | 4 +- .../scrollbars/sandbox.config.json | 3 +- .../financial-chart/scrollbars/src/index.css | 3 +- .../financial-chart/scrollbars/src/index.ts | 4 +- .../financial-chart/scrollbars/tsconfig.json | 38 ++---- .../scrollbars/webpack.config.js | 2 + .../stock-index-chart/package.json | 4 +- .../financial-chart/styling/package.json | 4 +- .../financial-chart/titles/package.json | 4 +- .../financial-chart/titles/src/index.ts | 2 +- .../tooltip-types/package.json | 4 +- .../tooltip-types/src/index.ts | 2 +- .../financial-chart/trendlines/package.json | 4 +- .../financial-chart/volume-types/package.json | 4 +- .../charts/pie-chart/animation/package.json | 4 +- .../charts/pie-chart/explosion/package.json | 4 +- samples/charts/pie-chart/legend/package.json | 4 +- .../pie-chart/legend/sandbox.config.json | 3 +- samples/charts/pie-chart/legend/src/index.css | 3 +- samples/charts/pie-chart/legend/src/index.ts | 4 +- samples/charts/pie-chart/legend/tsconfig.json | 38 ++---- .../charts/pie-chart/legend/webpack.config.js | 2 + samples/charts/pie-chart/others/package.json | 4 +- .../pie-chart/others/sandbox.config.json | 3 +- samples/charts/pie-chart/others/src/index.css | 3 +- samples/charts/pie-chart/others/src/index.ts | 4 +- samples/charts/pie-chart/others/tsconfig.json | 38 ++---- .../charts/pie-chart/others/webpack.config.js | 2 + .../charts/pie-chart/overview/package.json | 4 +- .../pie-chart/overview/sandbox.config.json | 3 +- .../charts/pie-chart/overview/src/index.css | 3 +- .../charts/pie-chart/overview/src/index.ts | 4 +- .../charts/pie-chart/overview/tsconfig.json | 38 ++---- .../pie-chart/overview/webpack.config.js | 2 + .../charts/pie-chart/selection/package.json | 4 +- samples/charts/pie-chart/styling/package.json | 4 +- .../pie-chart/styling/sandbox.config.json | 3 +- .../charts/pie-chart/styling/src/index.css | 3 +- samples/charts/pie-chart/styling/src/index.ts | 4 +- .../charts/pie-chart/styling/tsconfig.json | 38 ++---- .../pie-chart/styling/webpack.config.js | 2 + .../sparkline/display-area/package.json | 4 +- .../display-area/sandbox.config.json | 3 +- .../sparkline/display-area/src/index.css | 3 +- .../sparkline/display-area/src/index.ts | 4 +- .../sparkline/display-area/tsconfig.json | 38 ++---- .../sparkline/display-area/webpack.config.js | 2 + .../sparkline/display-column/package.json | 4 +- .../display-column/sandbox.config.json | 3 +- .../sparkline/display-column/src/index.css | 3 +- .../sparkline/display-column/src/index.ts | 4 +- .../sparkline/display-column/tsconfig.json | 38 ++---- .../display-column/webpack.config.js | 2 + .../sparkline/display-lines/package.json | 8 +- .../display-lines/sandbox.config.json | 3 +- .../sparkline/display-lines/src/index.css | 3 +- .../sparkline/display-lines/src/index.ts | 4 +- .../sparkline/display-lines/tsconfig.json | 38 ++---- .../sparkline/display-lines/webpack.config.js | 2 + .../sparkline/display-types/package.json | 4 +- .../sparkline/display-winloss/package.json | 4 +- .../display-winloss/sandbox.config.json | 3 +- .../sparkline/display-winloss/src/index.css | 3 +- .../sparkline/display-winloss/src/index.ts | 4 +- .../sparkline/display-winloss/tsconfig.json | 38 ++---- .../display-winloss/webpack.config.js | 2 + samples/charts/sparkline/grid/package.json | 10 +- samples/charts/sparkline/grid/src/index.ts | 4 +- samples/charts/sparkline/markers/package.json | 8 +- .../sparkline/markers/sandbox.config.json | 3 +- .../charts/sparkline/markers/src/index.css | 3 +- samples/charts/sparkline/markers/src/index.ts | 3 +- .../charts/sparkline/markers/tsconfig.json | 38 ++---- .../sparkline/markers/webpack.config.js | 2 + .../sparkline/normal-range/package.json | 8 +- .../normal-range/sandbox.config.json | 3 +- .../sparkline/normal-range/src/index.css | 3 +- .../sparkline/normal-range/src/index.ts | 3 +- .../sparkline/normal-range/tsconfig.json | 38 ++---- .../sparkline/normal-range/webpack.config.js | 2 + .../charts/sparkline/trendlines/package.json | 8 +- .../sparkline/trendlines/sandbox.config.json | 3 +- .../charts/sparkline/trendlines/src/index.css | 3 +- .../charts/sparkline/trendlines/src/index.ts | 3 +- .../charts/sparkline/trendlines/tsconfig.json | 38 ++---- .../sparkline/trendlines/webpack.config.js | 2 + .../sparkline/unknown-values/package.json | 8 +- .../unknown-values/sandbox.config.json | 3 +- .../sparkline/unknown-values/src/index.css | 3 +- .../sparkline/unknown-values/src/index.ts | 3 +- .../sparkline/unknown-values/tsconfig.json | 38 ++---- .../unknown-values/webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 21 +-- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../actions-built-in-data-chart/package.json | 8 +- .../sandbox.config.json | 3 +- .../actions-built-in-data-chart/src/index.css | 21 +-- .../actions-built-in-data-chart/src/index.ts | 4 +- .../actions-built-in-data-chart/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../charts/toolbar/custom-tool/package.json | 8 +- .../toolbar/custom-tool/sandbox.config.json | 3 +- .../charts/toolbar/custom-tool/src/index.css | 21 +-- .../charts/toolbar/custom-tool/src/index.ts | 5 +- .../charts/toolbar/custom-tool/tsconfig.json | 38 ++---- .../toolbar/custom-tool/webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 21 +-- .../src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + samples/charts/toolbar/theming/package.json | 8 +- .../toolbar/theming/sandbox.config.json | 3 +- samples/charts/toolbar/theming/src/index.css | 3 +- samples/charts/toolbar/theming/src/index.ts | 3 +- samples/charts/toolbar/theming/tsconfig.json | 38 ++---- .../charts/toolbar/theming/webpack.config.js | 2 + samples/charts/tree-map/events/package.json | 4 +- samples/charts/tree-map/events/src/index.ts | 2 + .../highlighting-percent-based/package.json | 4 +- .../sandbox.config.json | 3 +- .../highlighting-percent-based/src/index.css | 3 +- .../highlighting-percent-based/src/index.ts | 4 +- .../highlighting-percent-based/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../charts/tree-map/highlighting/package.json | 8 +- .../tree-map/highlighting/sandbox.config.json | 3 +- .../tree-map/highlighting/src/index.css | 3 +- .../charts/tree-map/highlighting/src/index.ts | 3 +- .../tree-map/highlighting/tsconfig.json | 38 ++---- .../tree-map/highlighting/webpack.config.js | 2 + samples/charts/tree-map/layout/package.json | 8 +- .../tree-map/layout/sandbox.config.json | 3 +- samples/charts/tree-map/layout/src/index.css | 3 +- samples/charts/tree-map/layout/src/index.ts | 3 +- samples/charts/tree-map/layout/tsconfig.json | 38 ++---- .../charts/tree-map/layout/webpack.config.js | 2 + samples/charts/tree-map/overview/package.json | 4 +- .../tree-map/overview/sandbox.config.json | 3 +- .../charts/tree-map/overview/src/index.css | 3 +- samples/charts/tree-map/overview/src/index.ts | 4 +- .../charts/tree-map/overview/tsconfig.json | 38 ++---- .../tree-map/overview/webpack.config.js | 2 + samples/charts/tree-map/styling/package.json | 4 +- .../tree-map/styling/sandbox.config.json | 3 +- samples/charts/tree-map/styling/src/index.css | 3 +- samples/charts/tree-map/styling/src/index.ts | 4 +- samples/charts/tree-map/styling/tsconfig.json | 38 ++---- .../charts/tree-map/styling/webpack.config.js | 2 + .../charts/zoomslider/overview/package.json | 4 +- .../overview/package.json | 8 +- .../x-date-picker/date-limits/package.json | 6 +- .../x-date-picker/editing/package.json | 6 +- .../editors/x-date-picker/format/package.json | 6 +- .../x-date-picker/overview/package.json | 6 +- .../editors/x-date-picker/range/package.json | 6 +- .../operations-on-workbooks/package.json | 10 +- .../operations-on-worksheets/package.json | 4 +- .../excel/excel-library/overview/package.json | 4 +- .../working-with-cells/package.json | 4 +- .../working-with-charts/package.json | 12 +- .../working-with-sparklines/package.json | 12 +- .../working-with-sparklines/src/index.ts | 11 +- .../excel/spreadsheet/activation/package.json | 6 +- .../spreadsheet/adapter-chart/package.json | 10 +- .../spreadsheet/adapter-combo/package.json | 10 +- .../excel/spreadsheet/clipboard/package.json | 6 +- .../excel/spreadsheet/commands/package.json | 6 +- .../conditional-formatting/package.json | 6 +- .../spreadsheet/config-options/package.json | 6 +- .../spreadsheet/data-validation/package.json | 6 +- .../spreadsheet/filter-dialog/package.json | 6 +- .../spreadsheet/format-dialog/package.json | 6 +- .../excel/spreadsheet/hyperlinks/package.json | 6 +- .../excel/spreadsheet/overview/package.json | 6 +- .../spreadsheet/sort-dialog/package.json | 6 +- .../bullet-graph/animation/package.json | 4 +- .../bullet-graph/animation/src/index.ts | 2 +- .../bullet-graph/background/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/bullet-graph/labels/package.json | 4 +- .../gauges/bullet-graph/measures/package.json | 4 +- .../gauges/bullet-graph/ranges/package.json | 4 +- .../gauges/bullet-graph/scale/package.json | 4 +- .../bullet-graph/tickmarks/package.json | 4 +- .../bullet-graph/type-filled/package.json | 4 +- .../bullet-graph/type-horizontal/package.json | 4 +- .../bullet-graph/type-reversed/package.json | 4 +- .../bullet-graph/type-segmented/package.json | 4 +- .../bullet-graph/type-vertical/package.json | 4 +- .../linear-gauge/animation/package.json | 4 +- .../gauges/linear-gauge/backing/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/linear-gauge/labels/package.json | 4 +- .../gauges/linear-gauge/needle/package.json | 4 +- .../gauges/linear-gauge/ranges/package.json | 4 +- .../gauges/linear-gauge/scale/package.json | 4 +- .../linear-gauge/tickmarks/package.json | 4 +- .../linear-gauge/type-curved/package.json | 4 +- .../linear-gauge/type-filled/package.json | 4 +- .../linear-gauge/type-horizontal/package.json | 4 +- .../type-multi-range/package.json | 4 +- .../type-multi-scale/package.json | 4 +- .../linear-gauge/type-segmented/package.json | 4 +- .../linear-gauge/type-vertical/package.json | 4 +- .../radial-gauge/animation/package.json | 4 +- .../radial-gauge/animation/src/index.ts | 10 +- .../gauges/radial-gauge/backing/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/radial-gauge/labels/package.json | 4 +- .../gauges/radial-gauge/needle/package.json | 4 +- .../radial-gauge/optical-scaling/package.json | 4 +- .../gauges/radial-gauge/ranges/package.json | 4 +- .../gauges/radial-gauge/scale/package.json | 4 +- .../radial-gauge/tickmarks/package.json | 4 +- .../radial-gauge/type-column/package.json | 4 +- .../radial-gauge/type-curved/package.json | 4 +- .../radial-gauge/type-direction/package.json | 4 +- .../radial-gauge/type-full/package.json | 4 +- .../radial-gauge/type-half/package.json | 4 +- .../radial-gauge/type-quatre/package.json | 4 +- .../radial-gauge/type-ring/package.json | 4 +- .../radial-gauge/type-segmented/package.json | 4 +- .../radial-gauge/type-semi/package.json | 4 +- .../data-grid/accessibility/package.json | 8 +- .../binding-data-service/package.json | 8 +- .../data-grid/binding-live-data/package.json | 10 +- .../data-grid/binding-live-data/src/index.ts | 1 - .../data-grid/binding-local-data/package.json | 8 +- .../binding-remote-data/package.json | 10 +- .../data-grid/cell-activation/package.json | 8 +- .../data-grid/cell-activation/src/index.ts | 2 - .../grids/data-grid/cell-editing/package.json | 8 +- .../grids/data-grid/cell-editing/src/index.ts | 1 - .../grids/data-grid/cell-merging/package.json | 10 +- .../grids/data-grid/cell-merging/src/index.ts | 2 - .../data-grid/cell-selection/package.json | 8 +- .../data-grid/column-animation/package.json | 8 +- .../column-chooser-picker/package.json | 8 +- .../column-chooser-toolbar/package.json | 8 +- .../column-filter-expressions/package.json | 8 +- .../column-filter-operands/package.json | 8 +- .../data-grid/column-filtering/package.json | 8 +- .../data-grid/column-moving/package.json | 8 +- .../data-grid/column-options/package.json | 8 +- .../column-pinning-picker/package.json | 8 +- .../column-pinning-toolbar/package.json | 8 +- .../data-grid/column-resizing/package.json | 8 +- .../data-grid/column-scrolling/package.json | 8 +- .../data-grid/column-sorting/package.json | 8 +- .../data-grid/column-summaries/package.json | 8 +- .../grids/data-grid/column-types/package.json | 10 +- .../data-grid/load-save-layout/package.json | 10 +- .../data-grid/load-save-layout/src/index.ts | 3 +- .../grids/data-grid/localization/package.json | 10 +- .../grids/data-grid/localization/src/index.ts | 2 +- samples/grids/data-grid/overview/package.json | 10 +- samples/grids/data-grid/pager/package.json | 8 +- .../grids/data-grid/performance/package.json | 8 +- .../grids/data-grid/performance/src/index.ts | 2 +- .../row-group-descriptions/package.json | 8 +- .../grids/data-grid/row-grouping/package.json | 8 +- .../data-grid/row-highlighting/package.json | 8 +- .../grids/data-grid/row-paging/package.json | 8 +- .../grids/data-grid/row-pinning/package.json | 8 +- .../data-grid/row-selection/package.json | 8 +- .../type-comparison-table/package.json | 10 +- .../data-grid/type-heatmap-table/package.json | 8 +- .../type-marketing-table/package.json | 10 +- .../data-grid/type-matrix-table/package.json | 8 +- .../type-periodic-table/package.json | 8 +- .../grids/data-grid/type-table/package.json | 8 +- samples/grids/grid/action-strip/package.json | 8 +- .../grid/action-strip/sandbox.config.json | 3 +- samples/grids/grid/action-strip/src/index.css | 3 +- samples/grids/grid/action-strip/src/index.ts | 6 +- samples/grids/grid/action-strip/tsconfig.json | 38 ++---- .../grids/grid/action-strip/webpack.config.js | 2 + .../advanced-filtering-options/package.json | 8 +- .../sandbox.config.json | 3 +- .../advanced-filtering-options/src/index.css | 3 +- .../advanced-filtering-options/src/index.ts | 5 +- .../advanced-filtering-options/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../advanced-filtering-style/package.json | 8 +- .../sandbox.config.json | 3 +- .../advanced-filtering-style/src/index.css | 8 +- .../advanced-filtering-style/src/index.ts | 5 +- .../advanced-filtering-style/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../grid/binding-composite-data/package.json | 8 +- .../sandbox.config.json | 3 +- .../grid/binding-composite-data/src/index.css | 3 +- .../grid/binding-composite-data/src/index.ts | 4 +- .../grid/binding-composite-data/tsconfig.json | 38 ++---- .../binding-composite-data/webpack.config.js | 2 + .../grids/grid/binding-crud-data/package.json | 8 +- .../binding-crud-data/sandbox.config.json | 3 +- .../grid/binding-crud-data/src/index.css | 3 +- .../grids/grid/binding-crud-data/src/index.ts | 5 +- .../grid/binding-crud-data/tsconfig.json | 38 ++---- .../grid/binding-crud-data/webpack.config.js | 2 + .../grid/binding-nested-data-1/package.json | 8 +- .../binding-nested-data-1/sandbox.config.json | 3 +- .../grid/binding-nested-data-1/src/index.css | 3 +- .../grid/binding-nested-data-1/src/index.ts | 4 +- .../grid/binding-nested-data-1/tsconfig.json | 38 ++---- .../binding-nested-data-1/webpack.config.js | 2 + .../grids/grid/cascading-combo/package.json | 8 +- .../grid/cascading-combo/sandbox.config.json | 3 +- .../grids/grid/cascading-combo/src/index.css | 3 +- .../grids/grid/cascading-combo/src/index.ts | 4 +- .../grids/grid/cascading-combo/tsconfig.json | 38 ++---- .../grid/cascading-combo/webpack.config.js | 2 + .../grid/cell-editing-sample/package.json | 8 +- .../cell-editing-sample/sandbox.config.json | 3 +- .../grid/cell-editing-sample/src/index.css | 3 +- .../grid/cell-editing-sample/src/index.ts | 3 +- .../grid/cell-editing-sample/tsconfig.json | 38 ++---- .../cell-editing-sample/webpack.config.js | 2 + .../grid/cell-editing-styling/package.json | 8 +- .../cell-editing-styling/sandbox.config.json | 3 +- .../grid/cell-editing-styling/src/index.css | 13 +- .../grid/cell-editing-styling/src/index.ts | 5 +- .../grid/cell-editing-styling/tsconfig.json | 38 ++---- .../cell-editing-styling/webpack.config.js | 2 + .../grid/cell-selection-mode/package.json | 8 +- .../cell-selection-mode/sandbox.config.json | 3 +- .../grid/cell-selection-mode/src/index.css | 3 +- .../grid/cell-selection-mode/src/index.ts | 3 +- .../grid/cell-selection-mode/tsconfig.json | 38 ++---- .../cell-selection-mode/webpack.config.js | 2 + .../grid/cell-selection-style/package.json | 8 +- .../cell-selection-style/sandbox.config.json | 3 +- .../grid/cell-selection-style/src/index.css | 9 +- .../grid/cell-selection-style/src/index.ts | 5 +- .../grid/cell-selection-style/tsconfig.json | 38 ++---- .../cell-selection-style/webpack.config.js | 2 + .../grid/change-icons-custom/package.json | 8 +- .../change-icons-custom/sandbox.config.json | 3 +- .../grid/change-icons-custom/src/index.css | 3 +- .../grid/change-icons-custom/tsconfig.json | 38 ++---- .../grid/clipboard-operations/package.json | 8 +- .../clipboard-operations/sandbox.config.json | 3 +- .../grid/clipboard-operations/src/index.css | 3 +- .../grid/clipboard-operations/src/index.ts | 1 - .../grid/clipboard-operations/tsconfig.json | 37 ++---- .../grid/column-auto-sizing/package.json | 8 +- .../column-auto-sizing/sandbox.config.json | 3 +- .../grid/column-auto-sizing/src/index.css | 3 +- .../grid/column-auto-sizing/src/index.ts | 5 +- .../grid/column-auto-sizing/tsconfig.json | 38 ++---- .../grid/column-auto-sizing/webpack.config.js | 2 + .../column-collapsible-groups/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-collapsible-groups/src/index.css | 3 +- .../column-collapsible-groups/src/index.ts | 5 +- .../column-collapsible-groups/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../grids/grid/column-data-types/package.json | 8 +- .../column-data-types/sandbox.config.json | 3 +- .../grid/column-data-types/src/index.css | 7 +- .../grids/grid/column-data-types/src/index.ts | 11 +- .../grid/column-data-types/tsconfig.json | 38 ++---- .../grid/column-data-types/webpack.config.js | 2 + .../grid/column-hiding-options/package.json | 8 +- .../column-hiding-options/sandbox.config.json | 3 +- .../grid/column-hiding-options/src/index.css | 3 +- .../grid/column-hiding-options/src/index.ts | 5 +- .../grid/column-hiding-options/tsconfig.json | 38 ++---- .../column-hiding-options/webpack.config.js | 2 + .../column-hiding-toolbar-style/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-hiding-toolbar-style/src/index.css | 26 +--- .../column-hiding-toolbar-style/src/index.ts | 5 +- .../column-hiding-toolbar-style/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../grid/column-hiding-toolbar/package.json | 8 +- .../column-hiding-toolbar/sandbox.config.json | 3 +- .../grid/column-hiding-toolbar/src/index.css | 3 +- .../grid/column-hiding-toolbar/src/index.ts | 5 +- .../grid/column-hiding-toolbar/tsconfig.json | 38 ++---- .../column-hiding-toolbar/webpack.config.js | 2 + .../grid/column-moving-options/package.json | 8 +- .../column-moving-options/sandbox.config.json | 3 +- .../grid/column-moving-options/src/index.css | 26 +--- .../grid/column-moving-options/src/index.ts | 7 +- .../grid/column-moving-options/tsconfig.json | 38 ++---- .../column-moving-options/webpack.config.js | 2 + .../grid/column-moving-styles/package.json | 8 +- .../column-moving-styles/sandbox.config.json | 3 +- .../grid/column-moving-styles/src/index.css | 33 +---- .../grid/column-moving-styles/src/index.ts | 7 +- .../grid/column-moving-styles/tsconfig.json | 38 ++---- .../column-moving-styles/webpack.config.js | 2 + .../grid/column-pinning-options/package.json | 8 +- .../sandbox.config.json | 3 +- .../grid/column-pinning-options/src/index.css | 3 +- .../grid/column-pinning-options/src/index.ts | 6 +- .../grid/column-pinning-options/tsconfig.json | 38 ++---- .../column-pinning-options/webpack.config.js | 2 + .../column-pinning-right-side/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-pinning-right-side/src/index.css | 3 +- .../column-pinning-right-side/src/index.ts | 5 +- .../column-pinning-right-side/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../grid/column-pinning-styles/package.json | 8 +- .../column-pinning-styles/sandbox.config.json | 3 +- .../grid/column-pinning-styles/src/index.css | 10 +- .../grid/column-pinning-styles/src/index.ts | 5 +- .../grid/column-pinning-styles/tsconfig.json | 38 ++---- .../column-pinning-styles/webpack.config.js | 2 + .../grids/grid/column-pinning/package.json | 8 +- .../grid/column-pinning/sandbox.config.json | 3 +- .../grids/grid/column-pinning/src/index.css | 3 +- .../grids/grid/column-pinning/src/index.ts | 5 +- .../grids/grid/column-pinning/tsconfig.json | 38 ++---- .../grid/column-pinning/webpack.config.js | 2 + .../grid/column-resize-styling/package.json | 8 +- .../column-resize-styling/sandbox.config.json | 3 +- .../grid/column-resize-styling/src/index.css | 7 +- .../grid/column-resize-styling/src/index.ts | 5 +- .../grid/column-resize-styling/tsconfig.json | 38 ++---- .../column-resize-styling/webpack.config.js | 2 + .../grids/grid/column-resizing/package.json | 8 +- .../grid/column-resizing/sandbox.config.json | 3 +- .../grids/grid/column-resizing/src/index.css | 3 +- .../grids/grid/column-resizing/src/index.ts | 6 +- .../grids/grid/column-resizing/tsconfig.json | 38 ++---- .../grid/column-resizing/webpack.config.js | 2 + .../grid/column-selection-group/package.json | 8 +- .../sandbox.config.json | 3 +- .../grid/column-selection-group/src/index.css | 3 +- .../grid/column-selection-group/src/index.ts | 5 +- .../grid/column-selection-group/tsconfig.json | 38 ++---- .../column-selection-group/webpack.config.js | 2 + .../grid/column-selection-mode/package.json | 8 +- .../column-selection-mode/sandbox.config.json | 3 +- .../grid/column-selection-mode/src/index.css | 3 +- .../grid/column-selection-mode/src/index.ts | 3 +- .../grid/column-selection-mode/tsconfig.json | 38 ++---- .../column-selection-mode/webpack.config.js | 2 + .../grid/column-selection-styles/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-selection-styles/src/index.css | 13 +- .../grid/column-selection-styles/src/index.ts | 5 +- .../column-selection-styles/tsconfig.json | 38 ++---- .../column-selection-styles/webpack.config.js | 2 + .../column-sorting-indicators/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-sorting-indicators/src/index.css | 3 +- .../column-sorting-indicators/src/index.ts | 6 +- .../column-sorting-indicators/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../grid/column-sorting-options/package.json | 8 +- .../sandbox.config.json | 3 +- .../grid/column-sorting-options/src/index.css | 3 +- .../grid/column-sorting-options/src/index.ts | 5 +- .../grid/column-sorting-options/tsconfig.json | 38 ++---- .../column-sorting-options/webpack.config.js | 2 + .../grid/column-sorting-style/package.json | 8 +- .../column-sorting-style/sandbox.config.json | 3 +- .../grid/column-sorting-style/src/index.css | 8 +- .../grid/column-sorting-style/src/index.ts | 7 +- .../grid/column-sorting-style/tsconfig.json | 38 ++---- .../column-sorting-style/webpack.config.js | 2 + .../conditional-cell-style-1/package.json | 8 +- .../sandbox.config.json | 3 +- .../conditional-cell-style-1/src/index.css | 15 +-- .../conditional-cell-style-1/src/index.ts | 6 +- .../conditional-cell-style-1/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../conditional-cell-style-2/package.json | 8 +- .../sandbox.config.json | 3 +- .../conditional-cell-style-2/src/index.css | 3 +- .../conditional-cell-style-2/src/index.ts | 5 +- .../conditional-cell-style-2/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../conditional-row-selectors/package.json | 8 +- .../sandbox.config.json | 3 +- .../conditional-row-selectors/src/index.css | 3 +- .../conditional-row-selectors/src/index.ts | 5 +- .../conditional-row-selectors/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../grid/custom-context-menu/package.json | 8 +- .../custom-context-menu/sandbox.config.json | 3 +- .../grid/custom-context-menu/src/index.css | 43 +----- .../grid/custom-context-menu/src/index.ts | 4 +- .../grid/custom-context-menu/tsconfig.json | 37 ++---- .../grids/grid/custom-filtering/package.json | 8 +- .../grid/custom-filtering/sandbox.config.json | 3 +- .../grids/grid/custom-filtering/src/index.ts | 3 - .../grids/grid/custom-filtering/tsconfig.json | 37 ++---- .../data-batch-editing-actions/package.json | 8 +- .../sandbox.config.json | 3 +- .../data-batch-editing-actions/src/index.css | 3 +- .../data-batch-editing-actions/src/index.ts | 5 +- .../data-batch-editing-actions/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../data-exporting-indicator/package.json | 8 +- .../sandbox.config.json | 3 +- .../data-exporting-indicator/tsconfig.json | 37 ++---- .../grid/data-paste-options/package.json | 8 +- .../data-paste-options/sandbox.config.json | 3 +- .../grid/data-paste-options/src/index.ts | 18 +-- .../grid/data-paste-options/tsconfig.json | 37 ++---- .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 26 +--- .../src/index.ts | 4 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../grids/grid/data-searching/package.json | 8 +- .../grid/data-searching/sandbox.config.json | 3 +- .../grids/grid/data-searching/src/index.css | 6 +- .../grids/grid/data-searching/src/index.ts | 24 ++-- .../grids/grid/data-searching/tsconfig.json | 37 ++---- .../grid/data-summaries-custom/package.json | 8 +- .../data-summaries-custom/sandbox.config.json | 3 +- .../grid/data-summaries-custom/src/index.ts | 3 +- .../grid/data-summaries-custom/tsconfig.json | 37 ++---- .../grid/data-summary-formatter/package.json | 8 +- .../sandbox.config.json | 3 +- .../grid/data-summary-formatter/src/index.css | 7 +- .../grid/data-summary-formatter/src/index.ts | 6 +- .../grid/data-summary-formatter/tsconfig.json | 38 ++---- .../data-summary-formatter/webpack.config.js | 2 + .../grid/data-summary-options/package.json | 8 +- .../data-summary-options/sandbox.config.json | 3 +- .../grid/data-summary-options/src/index.css | 3 +- .../grid/data-summary-options/src/index.ts | 5 +- .../grid/data-summary-options/tsconfig.json | 38 ++---- .../data-summary-options/webpack.config.js | 2 + .../grid/data-summary-template/package.json | 8 +- .../data-summary-template/sandbox.config.json | 3 +- .../grid/data-summary-template/src/index.css | 43 +----- .../grid/data-summary-template/src/index.ts | 3 +- .../grid/data-summary-template/tsconfig.json | 38 ++---- .../data-summary-template/webpack.config.js | 2 + .../grid/data-validation-style/package.json | 8 +- .../data-validation-style/sandbox.config.json | 3 +- .../grid/data-validation-style/src/index.css | 3 +- .../grid/data-validation-style/src/index.ts | 5 +- .../grid/data-validation-style/tsconfig.json | 38 ++---- .../data-validation-style/webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../grid/data-validator-service/package.json | 8 +- .../sandbox.config.json | 3 +- .../grid/data-validator-service/src/index.css | 3 +- .../grid/data-validator-service/src/index.ts | 4 +- .../grid/data-validator-service/tsconfig.json | 38 ++---- .../data-validator-service/webpack.config.js | 2 + .../grids/grid/editing-columns/package.json | 8 +- .../grid/editing-columns/sandbox.config.json | 3 +- .../grids/grid/editing-columns/src/index.css | 7 +- .../grids/grid/editing-columns/src/index.ts | 5 +- .../grids/grid/editing-columns/tsconfig.json | 38 ++---- .../grid/editing-columns/webpack.config.js | 2 + .../grids/grid/editing-events/package.json | 8 +- .../grid/editing-events/sandbox.config.json | 3 +- .../grids/grid/editing-events/src/index.css | 3 +- .../grids/grid/editing-events/src/index.ts | 5 +- .../grids/grid/editing-events/tsconfig.json | 38 ++---- .../grid/editing-events/webpack.config.js | 2 + .../editing-excel-style-custom/package.json | 8 +- .../sandbox.config.json | 3 +- .../editing-excel-style-custom/src/index.css | 3 +- .../editing-excel-style-custom/src/index.ts | 32 ++--- .../editing-excel-style-custom/tsconfig.json | 38 ++---- .../grid/editing-excel-style/package.json | 8 +- .../editing-excel-style/sandbox.config.json | 3 +- .../grid/editing-excel-style/src/index.css | 3 +- .../grid/editing-excel-style/src/index.ts | 5 +- .../grid/editing-excel-style/tsconfig.json | 38 ++---- .../editing-excel-style/webpack.config.js | 2 + .../grids/grid/editing-lifecycle/package.json | 8 +- .../editing-lifecycle/sandbox.config.json | 3 +- .../grid/editing-lifecycle/src/index.css | 3 +- .../grids/grid/editing-lifecycle/src/index.ts | 6 +- .../grid/editing-lifecycle/tsconfig.json | 38 ++---- .../grid/editing-lifecycle/webpack.config.js | 2 + .../grids/grid/excel-exporting/package.json | 8 +- .../grid/excel-exporting/sandbox.config.json | 3 +- .../grids/grid/excel-exporting/src/index.css | 3 +- .../grids/grid/excel-exporting/src/index.ts | 6 +- .../grids/grid/excel-exporting/tsconfig.json | 38 ++---- .../grid/excel-exporting/webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 7 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 7 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../excel-style-filtering-style/package.json | 8 +- .../sandbox.config.json | 3 +- .../excel-style-filtering-style/src/index.css | 26 +--- .../excel-style-filtering-style/src/index.ts | 7 +- .../excel-style-filtering-style/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../external-advanced-filtering/package.json | 8 +- .../sandbox.config.json | 3 +- .../external-advanced-filtering/src/index.css | 3 +- .../external-advanced-filtering/src/index.ts | 5 +- .../external-advanced-filtering/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../grids/grid/filtering-options/package.json | 8 +- .../filtering-options/sandbox.config.json | 3 +- .../grid/filtering-options/src/index.css | 3 +- .../grids/grid/filtering-options/src/index.ts | 5 +- .../grid/filtering-options/tsconfig.json | 38 ++---- .../grid/filtering-options/webpack.config.js | 2 + .../grid/filtering-strategy/package.json | 8 +- .../filtering-strategy/sandbox.config.json | 3 +- .../grid/filtering-strategy/src/index.css | 3 +- .../grid/filtering-strategy/src/index.ts | 6 +- .../grid/filtering-strategy/tsconfig.json | 38 ++---- .../grid/filtering-strategy/webpack.config.js | 2 + .../grids/grid/filtering-style/package.json | 8 +- .../grid/filtering-style/sandbox.config.json | 3 +- .../grids/grid/filtering-style/src/index.css | 10 +- .../grids/grid/filtering-style/src/index.ts | 5 +- .../grids/grid/filtering-style/tsconfig.json | 38 ++---- .../grid/filtering-style/webpack.config.js | 2 + samples/grids/grid/finjs/package.json | 10 +- samples/grids/grid/finjs/sandbox.config.json | 3 +- samples/grids/grid/finjs/src/index.css | 122 +---------------- samples/grids/grid/finjs/src/index.ts | 6 - samples/grids/grid/finjs/tsconfig.json | 37 ++---- .../grids/grid/groupby-custom/package.json | 8 +- .../grid/groupby-custom/sandbox.config.json | 3 +- .../grids/grid/groupby-custom/src/index.css | 3 +- .../grids/grid/groupby-custom/src/index.ts | 1 + .../grids/grid/groupby-custom/tsconfig.json | 37 ++---- .../grid/groupby-expressions/package.json | 8 +- .../groupby-expressions/sandbox.config.json | 3 +- .../grid/groupby-expressions/src/index.css | 3 +- .../grid/groupby-expressions/src/index.ts | 8 +- .../grid/groupby-expressions/tsconfig.json | 38 ++---- .../groupby-expressions/webpack.config.js | 2 + .../grids/grid/groupby-paging/package.json | 8 +- .../grid/groupby-paging/sandbox.config.json | 3 +- .../grids/grid/groupby-paging/src/index.css | 3 +- .../grids/grid/groupby-paging/src/index.ts | 8 +- .../grids/grid/groupby-paging/tsconfig.json | 38 ++---- .../grid/groupby-paging/webpack.config.js | 2 + .../grids/grid/groupby-styling/package.json | 8 +- .../grid/groupby-styling/sandbox.config.json | 3 +- .../grids/grid/groupby-styling/src/index.css | 21 +-- .../grids/grid/groupby-styling/src/index.ts | 7 +- .../grids/grid/groupby-styling/tsconfig.json | 38 ++---- .../grid/groupby-styling/webpack.config.js | 2 + .../grid/groupby-summary-options/package.json | 8 +- .../sandbox.config.json | 3 +- .../groupby-summary-options/src/index.css | 3 +- .../grid/groupby-summary-options/src/index.ts | 5 +- .../groupby-summary-options/tsconfig.json | 38 ++---- .../groupby-summary-options/webpack.config.js | 2 + .../grid/groupby-summary-styling/package.json | 8 +- .../sandbox.config.json | 3 +- .../groupby-summary-styling/src/index.css | 10 +- .../grid/groupby-summary-styling/src/index.ts | 5 +- .../groupby-summary-styling/tsconfig.json | 38 ++---- .../groupby-summary-styling/webpack.config.js | 2 + .../grids/grid/infinite-scroll/package.json | 8 +- .../grid/infinite-scroll/sandbox.config.json | 3 +- .../grids/grid/infinite-scroll/src/index.ts | 2 +- .../grids/grid/infinite-scroll/tsconfig.json | 37 ++---- .../keyboard-custom-navigation/package.json | 8 +- .../sandbox.config.json | 3 +- .../keyboard-custom-navigation/src/index.css | 7 +- .../keyboard-custom-navigation/src/index.ts | 5 +- .../keyboard-custom-navigation/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../grid/keyboard-mrl-navigation/package.json | 8 +- .../sandbox.config.json | 3 +- .../keyboard-mrl-navigation/src/index.css | 7 +- .../grid/keyboard-mrl-navigation/src/index.ts | 5 +- .../keyboard-mrl-navigation/tsconfig.json | 38 ++---- .../keyboard-mrl-navigation/webpack.config.js | 2 + .../keyboard-navigation-guide/package.json | 8 +- .../sandbox.config.json | 3 +- .../keyboard-navigation-guide/src/index.css | 33 +---- .../keyboard-navigation-guide/src/index.ts | 3 - .../keyboard-navigation-guide/tsconfig.json | 37 ++---- .../grid/layout-display-density/package.json | 8 +- .../sandbox.config.json | 3 +- .../grid/layout-display-density/src/index.css | 3 +- .../grid/layout-display-density/src/index.ts | 3 +- .../grid/layout-display-density/tsconfig.json | 38 ++---- .../layout-display-density/webpack.config.js | 2 + samples/grids/grid/master-detail/package.json | 8 +- .../grid/master-detail/sandbox.config.json | 3 +- .../grids/grid/master-detail/src/index.css | 3 +- samples/grids/grid/master-detail/src/index.ts | 6 +- .../grids/grid/master-detail/tsconfig.json | 38 ++---- .../grid/master-detail/webpack.config.js | 2 + .../multi-cell-selection-mode/package.json | 8 +- .../multi-cell-selection-mode/src/index.ts | 14 +- .../multi-cell-selection-mode/tsconfig.json | 37 ++---- .../multi-column-headers-export/package.json | 8 +- .../sandbox.config.json | 3 +- .../multi-column-headers-export/src/index.css | 7 +- .../multi-column-headers-export/src/index.ts | 5 +- .../multi-column-headers-export/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 3 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../multi-column-headers-styling/package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 11 +- .../multi-column-headers-styling/src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../multi-row-layout-options/package.json | 8 +- .../sandbox.config.json | 3 +- .../multi-row-layout-options/src/index.css | 3 +- .../multi-row-layout-options/src/index.ts | 6 +- .../multi-row-layout-options/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../grid/multi-row-layout-style/package.json | 8 +- .../sandbox.config.json | 3 +- .../grid/multi-row-layout-style/src/index.css | 12 +- .../grid/multi-row-layout-style/src/index.ts | 5 +- .../grid/multi-row-layout-style/tsconfig.json | 38 ++---- .../multi-row-layout-style/webpack.config.js | 2 + samples/grids/grid/overview/package.json | 8 +- .../grids/grid/overview/sandbox.config.json | 3 +- samples/grids/grid/overview/src/index.css | 7 +- samples/grids/grid/overview/src/index.ts | 6 +- samples/grids/grid/overview/tsconfig.json | 38 ++---- samples/grids/grid/overview/webpack.config.js | 2 + samples/grids/grid/paste/package.json | 8 +- samples/grids/grid/paste/sandbox.config.json | 3 +- samples/grids/grid/paste/src/index.css | 3 +- samples/grids/grid/paste/src/index.ts | 6 +- samples/grids/grid/paste/tsconfig.json | 38 ++---- samples/grids/grid/paste/webpack.config.js | 2 + .../grid/remote-paging-data/package.json | 8 +- .../remote-paging-data/sandbox.config.json | 3 +- .../grid/remote-paging-data/src/index.css | 3 +- .../grid/remote-paging-data/src/index.ts | 5 +- .../grid/remote-paging-data/tsconfig.json | 38 ++---- .../grid/remote-paging-data/webpack.config.js | 2 + .../grid/remote-paging-grid/package.json | 8 +- .../remote-paging-grid/sandbox.config.json | 3 +- .../grid/remote-paging-grid/src/index.css | 3 +- .../grid/remote-paging-grid/src/index.ts | 10 +- .../grid/remote-paging-grid/tsconfig.json | 38 ++---- samples/grids/grid/row-adding/package.json | 8 +- .../grids/grid/row-adding/sandbox.config.json | 3 +- samples/grids/grid/row-adding/src/index.css | 3 +- samples/grids/grid/row-adding/src/index.ts | 5 +- samples/grids/grid/row-adding/tsconfig.json | 38 ++---- .../grids/grid/row-adding/webpack.config.js | 2 + samples/grids/grid/row-classes/package.json | 8 +- .../grid/row-classes/sandbox.config.json | 3 +- samples/grids/grid/row-classes/src/index.css | 8 +- samples/grids/grid/row-classes/src/index.ts | 6 +- samples/grids/grid/row-classes/tsconfig.json | 38 ++---- .../grids/grid/row-classes/webpack.config.js | 2 + samples/grids/grid/row-drag-base/package.json | 8 +- samples/grids/grid/row-drag-base/src/index.ts | 14 +- .../grids/grid/row-drag-base/tsconfig.json | 37 ++---- .../grid/row-editing-options/package.json | 8 +- .../row-editing-options/sandbox.config.json | 3 +- .../grid/row-editing-options/src/index.css | 7 +- .../grid/row-editing-options/src/index.ts | 6 +- .../grid/row-editing-options/tsconfig.json | 38 ++---- .../row-editing-options/webpack.config.js | 2 + .../grids/grid/row-editing-style/package.json | 8 +- .../row-editing-style/sandbox.config.json | 3 +- .../grid/row-editing-style/src/index.css | 11 +- .../grids/grid/row-editing-style/src/index.ts | 6 +- .../grid/row-editing-style/tsconfig.json | 38 ++---- .../grid/row-editing-style/webpack.config.js | 2 + .../grids/grid/row-paging-basic/package.json | 8 +- .../grid/row-paging-basic/sandbox.config.json | 3 +- .../grids/grid/row-paging-basic/src/index.css | 3 +- .../grids/grid/row-paging-basic/src/index.ts | 5 +- .../grids/grid/row-paging-basic/tsconfig.json | 38 ++---- .../grid/row-paging-basic/webpack.config.js | 2 + .../grid/row-paging-options/package.json | 8 +- .../row-paging-options/sandbox.config.json | 3 +- .../grid/row-paging-options/src/index.css | 7 +- .../grid/row-paging-options/src/index.ts | 5 +- .../grid/row-paging-options/tsconfig.json | 38 ++---- .../grid/row-paging-options/webpack.config.js | 2 + .../grids/grid/row-pinning-drag/package.json | 8 +- .../grid/row-pinning-drag/sandbox.config.json | 3 +- .../grids/grid/row-pinning-drag/src/index.css | 3 +- .../grids/grid/row-pinning-drag/src/index.ts | 6 +- .../grids/grid/row-pinning-drag/tsconfig.json | 38 ++---- .../grid/row-pinning-drag/webpack.config.js | 2 + .../row-pinning-extra-column/package.json | 8 +- .../sandbox.config.json | 3 +- .../row-pinning-extra-column/src/index.css | 3 +- .../row-pinning-extra-column/src/index.ts | 5 +- .../row-pinning-extra-column/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../grid/row-pinning-options/package.json | 8 +- .../row-pinning-options/sandbox.config.json | 3 +- .../grid/row-pinning-options/src/index.css | 3 +- .../grid/row-pinning-options/src/index.ts | 4 +- .../grid/row-pinning-options/tsconfig.json | 38 ++---- .../row-pinning-options/webpack.config.js | 2 + .../grids/grid/row-pinning-style/package.json | 8 +- .../row-pinning-style/sandbox.config.json | 3 +- .../grid/row-pinning-style/src/index.css | 10 +- .../grids/grid/row-pinning-style/src/index.ts | 6 +- .../grid/row-pinning-style/tsconfig.json | 38 ++---- .../grid/row-pinning-style/webpack.config.js | 2 + samples/grids/grid/row-reorder/package.json | 8 +- .../grid/row-reorder/sandbox.config.json | 3 +- samples/grids/grid/row-reorder/src/index.css | 3 +- samples/grids/grid/row-reorder/src/index.ts | 5 +- samples/grids/grid/row-reorder/tsconfig.json | 38 ++---- .../grids/grid/row-reorder/webpack.config.js | 2 + .../grid/row-selection-mode/package.json | 8 +- .../row-selection-mode/sandbox.config.json | 3 +- .../grid/row-selection-mode/src/index.css | 26 +--- .../grid/row-selection-mode/src/index.ts | 6 +- .../grid/row-selection-mode/tsconfig.json | 38 ++---- .../grid/row-selection-mode/webpack.config.js | 2 + .../row-selection-template-excel/package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 7 +- .../row-selection-template-excel/src/index.ts | 6 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 3 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + samples/grids/grid/row-styles/package.json | 8 +- .../grids/grid/row-styles/sandbox.config.json | 3 +- samples/grids/grid/row-styles/src/index.css | 26 +--- samples/grids/grid/row-styles/src/index.ts | 4 +- samples/grids/grid/row-styles/tsconfig.json | 38 ++---- .../grids/grid/row-styles/webpack.config.js | 2 + .../grid/state-persistence-about/package.json | 8 +- .../grid/state-persistence-about/src/index.ts | 2 +- .../state-persistence-about/tsconfig.json | 38 ++---- .../state-persistence-about/webpack.config.js | 6 +- .../grid/state-persistence-main/package.json | 8 +- .../grid/state-persistence-main/src/index.css | 11 +- .../grid/state-persistence-main/src/index.ts | 7 +- .../grid/state-persistence-main/tsconfig.json | 38 ++---- .../state-persistence-main/webpack.config.js | 6 +- .../grid/styling-custom-CSS/package.json | 8 +- .../styling-custom-CSS/sandbox.config.json | 3 +- .../grid/styling-custom-CSS/src/index.css | 9 +- .../grid/styling-custom-CSS/src/index.ts | 5 +- .../grid/styling-custom-CSS/tsconfig.json | 38 ++---- .../grid/styling-custom-CSS/webpack.config.js | 2 + .../grids/grid/toolbar-sample-1/package.json | 8 +- .../grid/toolbar-sample-1/sandbox.config.json | 3 +- .../grids/grid/toolbar-sample-1/src/index.css | 3 +- .../grids/grid/toolbar-sample-1/src/index.ts | 5 +- .../grids/grid/toolbar-sample-1/tsconfig.json | 38 ++---- .../grid/toolbar-sample-1/webpack.config.js | 2 + .../grids/grid/toolbar-sample-2/package.json | 8 +- .../grid/toolbar-sample-2/sandbox.config.json | 3 +- .../grids/grid/toolbar-sample-2/src/index.css | 3 +- .../grids/grid/toolbar-sample-2/src/index.ts | 5 +- .../grids/grid/toolbar-sample-2/tsconfig.json | 38 ++---- .../grid/toolbar-sample-2/webpack.config.js | 2 + .../grids/grid/toolbar-sample-3/package.json | 8 +- .../grid/toolbar-sample-3/sandbox.config.json | 3 +- .../grids/grid/toolbar-sample-3/src/index.css | 3 +- .../grids/grid/toolbar-sample-3/src/index.ts | 5 +- .../grids/grid/toolbar-sample-3/tsconfig.json | 38 ++---- .../grid/toolbar-sample-3/webpack.config.js | 2 + .../grids/grid/toolbar-sample-4/package.json | 8 +- .../grid/toolbar-sample-4/sandbox.config.json | 3 +- .../grids/grid/toolbar-sample-4/src/index.css | 3 +- .../grids/grid/toolbar-sample-4/src/index.ts | 2 +- .../grids/grid/toolbar-sample-4/tsconfig.json | 37 ++---- samples/grids/grid/toolbar-style/package.json | 8 +- .../grid/toolbar-style/sandbox.config.json | 3 +- .../grids/grid/toolbar-style/src/index.css | 9 +- samples/grids/grid/toolbar-style/src/index.ts | 5 +- .../grids/grid/toolbar-style/tsconfig.json | 38 ++---- .../grid/toolbar-style/webpack.config.js | 2 + .../action-strip/package.json | 8 +- .../action-strip/sandbox.config.json | 3 +- .../action-strip/src/index.css | 3 +- .../action-strip/src/index.ts | 6 +- .../action-strip/tsconfig.json | 38 ++---- .../action-strip/webpack.config.js | 2 + .../advanced-filtering-options/package.json | 8 +- .../sandbox.config.json | 3 +- .../advanced-filtering-options/src/index.css | 3 +- .../advanced-filtering-options/src/index.ts | 5 +- .../advanced-filtering-options/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../advanced-filtering-style/package.json | 8 +- .../sandbox.config.json | 3 +- .../advanced-filtering-style/src/index.css | 60 +-------- .../advanced-filtering-style/src/index.ts | 5 +- .../advanced-filtering-style/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../cell-editing-sample/package.json | 8 +- .../cell-editing-sample/sandbox.config.json | 3 +- .../cell-editing-sample/src/index.css | 3 +- .../cell-editing-sample/src/index.ts | 3 +- .../cell-editing-sample/tsconfig.json | 38 ++---- .../cell-editing-sample/webpack.config.js | 2 + .../cell-editing-styling/package.json | 8 +- .../cell-editing-styling/sandbox.config.json | 3 +- .../cell-editing-styling/src/index.css | 13 +- .../cell-editing-styling/src/index.ts | 5 +- .../cell-editing-styling/tsconfig.json | 38 ++---- .../cell-editing-styling/webpack.config.js | 2 + .../cell-selection-mode/package.json | 8 +- .../cell-selection-mode/sandbox.config.json | 3 +- .../cell-selection-mode/src/index.css | 3 +- .../cell-selection-mode/src/index.ts | 3 +- .../cell-selection-mode/tsconfig.json | 38 ++---- .../cell-selection-mode/webpack.config.js | 2 + .../cell-selection-overview/package.json | 8 +- .../sandbox.config.json | 3 +- .../cell-selection-overview/src/index.css | 3 +- .../cell-selection-overview/src/index.ts | 3 +- .../cell-selection-overview/tsconfig.json | 38 ++---- .../cell-selection-overview/webpack.config.js | 2 + .../cell-selection-style/package.json | 8 +- .../cell-selection-style/sandbox.config.json | 3 +- .../cell-selection-style/src/index.css | 9 +- .../cell-selection-style/src/index.ts | 3 +- .../cell-selection-style/tsconfig.json | 38 ++---- .../cell-selection-style/webpack.config.js | 2 + .../cell-selection-styling/package.json | 8 +- .../sandbox.config.json | 3 +- .../cell-selection-styling/src/index.css | 9 +- .../cell-selection-styling/src/index.ts | 3 +- .../cell-selection-styling/tsconfig.json | 38 ++---- .../column-auto-sizing/package.json | 8 +- .../column-auto-sizing/sandbox.config.json | 3 +- .../column-auto-sizing/src/index.css | 3 +- .../column-auto-sizing/src/index.ts | 5 +- .../column-auto-sizing/tsconfig.json | 38 ++---- .../column-collapsible-groups/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-collapsible-groups/src/index.css | 3 +- .../column-collapsible-groups/src/index.ts | 5 +- .../column-collapsible-groups/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../column-hiding-toolbar-style/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-hiding-toolbar-style/src/index.css | 26 +--- .../column-hiding-toolbar-style/src/index.ts | 5 +- .../column-hiding-toolbar-style/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../column-hiding-toolbar/package.json | 8 +- .../column-hiding-toolbar/sandbox.config.json | 3 +- .../column-hiding-toolbar/src/index.css | 3 +- .../column-hiding-toolbar/src/index.ts | 5 +- .../column-hiding-toolbar/tsconfig.json | 38 ++---- .../column-hiding-toolbar/webpack.config.js | 2 + .../column-moving-options/package.json | 8 +- .../column-moving-options/sandbox.config.json | 3 +- .../column-moving-options/src/index.css | 3 +- .../column-moving-options/src/index.ts | 6 +- .../column-moving-options/tsconfig.json | 38 ++---- .../column-moving-options/webpack.config.js | 2 + .../column-moving-styles/package.json | 8 +- .../column-moving-styles/sandbox.config.json | 3 +- .../column-moving-styles/src/index.css | 9 +- .../column-moving-styles/src/index.ts | 6 +- .../column-moving-styles/tsconfig.json | 38 ++---- .../column-moving-styles/webpack.config.js | 2 + .../column-pinning-options/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-pinning-options/src/index.css | 3 +- .../column-pinning-options/src/index.ts | 6 +- .../column-pinning-options/tsconfig.json | 38 ++---- .../column-pinning-options/webpack.config.js | 2 + .../column-pinning-right-side/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-pinning-right-side/src/index.css | 3 +- .../column-pinning-right-side/src/index.ts | 6 +- .../column-pinning-right-side/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../column-pinning-styles/package.json | 8 +- .../column-pinning-styles/sandbox.config.json | 3 +- .../column-pinning-styles/src/index.css | 10 +- .../column-pinning-styles/src/index.ts | 5 +- .../column-pinning-styles/tsconfig.json | 38 ++---- .../column-pinning-styles/webpack.config.js | 2 + .../column-pinning/package.json | 8 +- .../column-pinning/sandbox.config.json | 3 +- .../column-pinning/src/index.css | 3 +- .../column-pinning/src/index.ts | 5 +- .../column-pinning/tsconfig.json | 38 ++---- .../column-pinning/webpack.config.js | 2 + .../column-resize-styling/package.json | 8 +- .../column-resize-styling/sandbox.config.json | 3 +- .../column-resize-styling/src/index.css | 7 +- .../column-resize-styling/src/index.ts | 5 +- .../column-resize-styling/tsconfig.json | 38 ++---- .../column-resize-styling/webpack.config.js | 2 + .../column-resizing/package.json | 8 +- .../column-resizing/sandbox.config.json | 3 +- .../column-resizing/src/index.css | 3 +- .../column-resizing/src/index.ts | 5 +- .../column-resizing/tsconfig.json | 38 ++---- .../column-resizing/webpack.config.js | 2 + .../column-selection-group/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-selection-group/src/index.css | 3 +- .../column-selection-group/src/index.ts | 5 +- .../column-selection-group/tsconfig.json | 38 ++---- .../column-selection-group/webpack.config.js | 2 + .../column-selection-mode/package.json | 8 +- .../column-selection-mode/sandbox.config.json | 3 +- .../column-selection-mode/src/index.css | 3 +- .../column-selection-mode/src/index.ts | 3 +- .../column-selection-mode/tsconfig.json | 38 ++---- .../column-selection-mode/webpack.config.js | 2 + .../column-selection-styles/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-selection-styles/src/index.css | 13 +- .../column-selection-styles/src/index.ts | 5 +- .../column-selection-styles/tsconfig.json | 38 ++---- .../column-selection-styles/webpack.config.js | 2 + .../column-sorting-indicators/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-sorting-indicators/src/index.css | 3 +- .../column-sorting-indicators/src/index.ts | 6 +- .../column-sorting-indicators/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../column-sorting-options/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-sorting-options/src/index.css | 3 +- .../column-sorting-options/src/index.ts | 6 +- .../column-sorting-options/tsconfig.json | 38 ++---- .../column-sorting-options/webpack.config.js | 2 + .../column-sorting-style/package.json | 8 +- .../column-sorting-style/sandbox.config.json | 3 +- .../column-sorting-style/src/index.css | 8 +- .../column-sorting-style/src/index.ts | 6 +- .../column-sorting-style/tsconfig.json | 38 ++---- .../column-sorting-style/webpack.config.js | 2 + .../conditional-cell-style-1/package.json | 8 +- .../sandbox.config.json | 3 +- .../conditional-cell-style-1/src/index.css | 11 +- .../conditional-cell-style-1/src/index.ts | 6 +- .../conditional-cell-style-1/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../conditional-cell-style-2/package.json | 8 +- .../sandbox.config.json | 3 +- .../conditional-cell-style-2/src/index.css | 3 +- .../conditional-cell-style-2/src/index.ts | 6 +- .../conditional-cell-style-2/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../conditional-row-selectors/package.json | 8 +- .../sandbox.config.json | 3 +- .../conditional-row-selectors/src/index.css | 3 +- .../conditional-row-selectors/src/index.ts | 5 +- .../conditional-row-selectors/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../custom-filtering/package.json | 8 +- .../custom-filtering/sandbox.config.json | 3 +- .../custom-filtering/src/index.css | 3 +- .../custom-filtering/src/index.ts | 6 +- .../custom-filtering/tsconfig.json | 38 ++---- .../custom-filtering/webpack.config.js | 2 + .../data-exporting-indicator/package.json | 8 +- .../sandbox.config.json | 3 +- .../data-exporting-indicator/src/index.ts | 2 +- .../data-exporting-indicator/tsconfig.json | 37 ++---- .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.ts | 5 +- .../tsconfig.json | 37 ++---- .../data-summary-formatter/package.json | 8 +- .../sandbox.config.json | 3 +- .../data-summary-formatter/src/index.css | 3 +- .../data-summary-formatter/src/index.ts | 6 +- .../data-summary-formatter/tsconfig.json | 38 ++---- .../data-summary-formatter/webpack.config.js | 2 + .../data-summary-options-styling/package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 10 +- .../data-summary-options-styling/src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../data-summary-options/package.json | 8 +- .../data-summary-options/sandbox.config.json | 3 +- .../data-summary-options/src/index.css | 3 +- .../data-summary-options/src/index.ts | 5 +- .../data-summary-options/tsconfig.json | 38 ++---- .../data-summary-options/webpack.config.js | 2 + .../data-summary-template/package.json | 8 +- .../data-summary-template/sandbox.config.json | 3 +- .../data-summary-template/src/index.css | 43 +----- .../data-summary-template/src/index.ts | 3 +- .../data-summary-template/tsconfig.json | 38 ++---- .../data-summary-template/webpack.config.js | 2 + .../editing-columns/package.json | 8 +- .../editing-columns/sandbox.config.json | 3 +- .../editing-columns/src/index.css | 7 +- .../editing-columns/src/index.ts | 5 +- .../editing-columns/tsconfig.json | 38 ++---- .../editing-columns/webpack.config.js | 2 + .../editing-events/package.json | 8 +- .../editing-events/sandbox.config.json | 3 +- .../editing-events/src/index.css | 7 +- .../editing-events/src/index.ts | 5 +- .../editing-events/tsconfig.json | 38 ++---- .../editing-events/webpack.config.js | 2 + .../editing-lifecycle/package.json | 8 +- .../editing-lifecycle/sandbox.config.json | 3 +- .../editing-lifecycle/src/index.css | 3 +- .../editing-lifecycle/src/index.ts | 6 +- .../editing-lifecycle/tsconfig.json | 38 ++---- .../editing-lifecycle/webpack.config.js | 2 + .../excel-exporting/package.json | 8 +- .../excel-exporting/sandbox.config.json | 3 +- .../excel-exporting/src/index.css | 3 +- .../excel-exporting/src/index.ts | 5 +- .../excel-exporting/tsconfig.json | 38 ++---- .../excel-exporting/webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 6 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../excel-style-filtering-style/package.json | 8 +- .../sandbox.config.json | 3 +- .../excel-style-filtering-style/src/index.css | 26 +--- .../excel-style-filtering-style/src/index.ts | 5 +- .../excel-style-filtering-style/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../filtering-options/package.json | 8 +- .../filtering-options/sandbox.config.json | 3 +- .../filtering-options/src/index.css | 3 +- .../filtering-options/src/index.ts | 5 +- .../filtering-options/tsconfig.json | 38 ++---- .../filtering-options/webpack.config.js | 2 + .../filtering-style/package.json | 8 +- .../filtering-style/sandbox.config.json | 3 +- .../filtering-style/src/index.css | 18 +-- .../filtering-style/src/index.ts | 5 +- .../filtering-style/tsconfig.json | 38 ++---- .../filtering-style/webpack.config.js | 2 + .../hierarchical-grid-options/package.json | 8 +- .../sandbox.config.json | 3 +- .../hierarchical-grid-options/src/index.css | 7 +- .../hierarchical-grid-options/src/index.ts | 6 +- .../hierarchical-grid-options/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 19 +-- .../src/index.ts | 6 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../hierarchical-grid-styling/package.json | 8 +- .../sandbox.config.json | 3 +- .../hierarchical-grid-styling/src/index.css | 16 +-- .../hierarchical-grid-styling/src/index.ts | 5 +- .../hierarchical-grid-styling/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../layout-display-density/package.json | 8 +- .../sandbox.config.json | 3 +- .../layout-display-density/src/index.css | 3 +- .../layout-display-density/src/index.ts | 3 +- .../layout-display-density/tsconfig.json | 38 ++---- .../layout-display-density/webpack.config.js | 2 + .../multi-column-headers-export/package.json | 8 +- .../sandbox.config.json | 3 +- .../multi-column-headers-export/src/index.css | 3 +- .../multi-column-headers-export/src/index.ts | 6 +- .../multi-column-headers-export/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 3 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../multi-column-headers-styling/package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 11 +- .../multi-column-headers-styling/src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../hierarchical-grid/overview/package.json | 8 +- .../overview/sandbox.config.json | 3 +- .../hierarchical-grid/overview/src/index.css | 3 +- .../hierarchical-grid/overview/src/index.ts | 5 +- .../hierarchical-grid/overview/tsconfig.json | 38 ++---- .../overview/webpack.config.js | 2 + .../remote-paging-sample/package.json | 8 +- .../remote-paging-sample/sandbox.config.json | 3 +- .../remote-paging-sample/src/index.ts | 9 +- .../remote-paging-sample/tsconfig.json | 37 ++---- .../hierarchical-grid/row-adding/package.json | 8 +- .../row-adding/sandbox.config.json | 3 +- .../row-adding/src/index.css | 3 +- .../hierarchical-grid/row-adding/src/index.ts | 5 +- .../row-adding/tsconfig.json | 38 ++---- .../row-adding/webpack.config.js | 2 + .../row-classes/package.json | 8 +- .../row-classes/sandbox.config.json | 3 +- .../row-classes/src/index.css | 8 +- .../row-classes/src/index.ts | 6 +- .../row-classes/tsconfig.json | 38 ++---- .../row-classes/webpack.config.js | 2 + .../row-drag-base/package.json | 8 +- .../row-drag-base/sandbox.config.json | 3 +- .../row-drag-base/src/index.css | 3 +- .../row-drag-base/src/index.ts | 14 +- .../row-drag-base/tsconfig.json | 38 ++---- .../row-editing-options/package.json | 8 +- .../row-editing-options/sandbox.config.json | 3 +- .../row-editing-options/src/index.css | 3 +- .../row-editing-options/src/index.ts | 5 +- .../row-editing-options/tsconfig.json | 38 ++---- .../row-editing-options/webpack.config.js | 2 + .../row-editing-style/package.json | 8 +- .../row-editing-style/sandbox.config.json | 3 +- .../row-editing-style/src/index.css | 8 +- .../row-editing-style/src/index.ts | 5 +- .../row-editing-style/tsconfig.json | 38 ++---- .../row-editing-style/webpack.config.js | 2 + .../row-pinning-extra-column/package.json | 8 +- .../sandbox.config.json | 3 +- .../row-pinning-extra-column/src/index.css | 3 +- .../row-pinning-extra-column/src/index.ts | 7 +- .../row-pinning-extra-column/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../row-pinning-options/package.json | 8 +- .../row-pinning-options/sandbox.config.json | 3 +- .../row-pinning-options/src/index.css | 3 +- .../row-pinning-options/src/index.ts | 5 +- .../row-pinning-options/tsconfig.json | 38 ++---- .../row-pinning-options/webpack.config.js | 2 + .../row-pinning-style/package.json | 8 +- .../row-pinning-style/sandbox.config.json | 3 +- .../row-pinning-style/src/index.css | 10 +- .../row-pinning-style/src/index.ts | 8 +- .../row-pinning-style/tsconfig.json | 38 ++---- .../row-pinning-style/webpack.config.js | 2 + .../row-reorder/package.json | 8 +- .../row-reorder/sandbox.config.json | 3 +- .../row-reorder/src/index.css | 3 +- .../row-reorder/src/index.ts | 6 +- .../row-reorder/tsconfig.json | 38 ++---- .../row-reorder/webpack.config.js | 2 + .../row-selection-mode/package.json | 8 +- .../row-selection-mode/sandbox.config.json | 3 +- .../row-selection-mode/src/index.css | 3 +- .../row-selection-mode/src/index.ts | 3 +- .../row-selection-mode/tsconfig.json | 38 ++---- .../row-selection-mode/webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 3 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../hierarchical-grid/row-styles/package.json | 8 +- .../row-styles/sandbox.config.json | 3 +- .../row-styles/src/index.css | 3 +- .../hierarchical-grid/row-styles/src/index.ts | 6 +- .../row-styles/tsconfig.json | 38 ++---- .../row-styles/webpack.config.js | 2 + .../state-persistence-about/package.json | 8 +- .../state-persistence-about/src/index.ts | 2 +- .../state-persistence-about/tsconfig.json | 38 ++---- .../state-persistence-about/webpack.config.js | 6 +- .../state-persistence-main/package.json | 8 +- .../state-persistence-main/src/index.css | 11 +- .../state-persistence-main/src/index.ts | 8 +- .../state-persistence-main/tsconfig.json | 38 ++---- .../state-persistence-main/webpack.config.js | 6 +- .../toolbar-sample-1/package.json | 8 +- .../toolbar-sample-1/sandbox.config.json | 3 +- .../toolbar-sample-1/src/index.css | 3 +- .../toolbar-sample-1/src/index.ts | 5 +- .../toolbar-sample-1/tsconfig.json | 38 ++---- .../toolbar-sample-1/webpack.config.js | 2 + .../toolbar-sample-2/package.json | 8 +- .../toolbar-sample-2/sandbox.config.json | 3 +- .../toolbar-sample-2/src/index.css | 3 +- .../toolbar-sample-2/src/index.ts | 5 +- .../toolbar-sample-2/tsconfig.json | 38 ++---- .../toolbar-sample-2/webpack.config.js | 2 + .../toolbar-sample-3/package.json | 8 +- .../toolbar-sample-3/sandbox.config.json | 3 +- .../toolbar-sample-3/src/index.css | 3 +- .../toolbar-sample-3/src/index.ts | 6 +- .../toolbar-sample-3/tsconfig.json | 38 ++---- .../toolbar-sample-3/webpack.config.js | 2 + .../toolbar-sample-4/package.json | 8 +- .../toolbar-sample-4/sandbox.config.json | 3 +- .../toolbar-sample-4/src/index.ts | 4 +- .../toolbar-sample-4/tsconfig.json | 37 ++---- .../toolbar-style/package.json | 8 +- .../toolbar-style/sandbox.config.json | 3 +- .../toolbar-style/src/index.css | 9 +- .../toolbar-style/src/index.ts | 5 +- .../toolbar-style/tsconfig.json | 38 ++---- .../toolbar-style/webpack.config.js | 2 + .../grids/list/add-list-items/package.json | 2 +- .../aggregate-max-sales/package.json | 8 +- .../aggregate-max-sales/sandbox.config.json | 3 +- .../aggregate-max-sales/src/index.css | 3 +- .../aggregate-max-sales/src/index.ts | 7 +- .../aggregate-max-sales/tsconfig.json | 38 ++---- .../aggregate-max-sales/webpack.config.js | 2 + .../aggregate-units-sold/package.json | 8 +- .../aggregate-units-sold/sandbox.config.json | 3 +- .../aggregate-units-sold/src/index.css | 3 +- .../aggregate-units-sold/src/index.ts | 7 +- .../aggregate-units-sold/tsconfig.json | 38 ++---- .../aggregate-units-sold/webpack.config.js | 2 + samples/grids/pivot-grid/basic/package.json | 8 +- .../pivot-grid/basic/sandbox.config.json | 3 +- samples/grids/pivot-grid/basic/src/index.ts | 4 +- samples/grids/pivot-grid/basic/tsconfig.json | 37 ++---- .../data-persistence-noop/package.json | 8 +- .../data-persistence-noop/sandbox.config.json | 3 +- .../data-persistence-noop/src/index.css | 7 +- .../data-persistence-noop/src/index.ts | 3 +- .../data-persistence-noop/tsconfig.json | 41 ++---- .../data-persistence-noop/webpack.config.js | 79 +++++++---- .../pivot-grid/data-selector/package.json | 8 +- .../data-selector/sandbox.config.json | 3 +- .../pivot-grid/data-selector/src/index.ts | 5 +- .../pivot-grid/data-selector/tsconfig.json | 3 +- .../grids/pivot-grid/features/package.json | 8 +- .../pivot-grid/features/sandbox.config.json | 3 +- .../grids/pivot-grid/features/src/index.css | 3 +- .../grids/pivot-grid/features/src/index.ts | 7 +- .../grids/pivot-grid/features/tsconfig.json | 38 ++---- .../pivot-grid/features/webpack.config.js | 2 + samples/grids/pivot-grid/remote/package.json | 8 +- .../pivot-grid/remote/sandbox.config.json | 3 +- samples/grids/pivot-grid/remote/src/index.ts | 3 +- samples/grids/pivot-grid/remote/tsconfig.json | 41 ++---- .../grids/pivot-grid/remote/webpack.config.js | 79 +++++++---- .../state-persistence-about/package.json | 8 +- .../state-persistence-about/tsconfig.json | 38 ++---- .../state-persistence-about/webpack.config.js | 6 +- .../state-persistence-main/package.json | 8 +- .../state-persistence-main/src/index.css | 19 +-- .../state-persistence-main/src/index.ts | 10 +- .../state-persistence-main/tsconfig.json | 38 ++---- .../state-persistence-main/webpack.config.js | 6 +- .../grids/tree-grid/action-strip/package.json | 8 +- .../action-strip/sandbox.config.json | 3 +- .../tree-grid/action-strip/src/index.css | 3 +- .../grids/tree-grid/action-strip/src/index.ts | 5 +- .../tree-grid/action-strip/tsconfig.json | 38 ++---- .../tree-grid/action-strip/webpack.config.js | 2 + .../advanced-filtering-options/package.json | 8 +- .../sandbox.config.json | 3 +- .../advanced-filtering-options/src/index.css | 3 +- .../advanced-filtering-options/src/index.ts | 5 +- .../advanced-filtering-options/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../advanced-filtering-style/package.json | 8 +- .../sandbox.config.json | 3 +- .../advanced-filtering-style/src/index.css | 8 +- .../advanced-filtering-style/src/index.ts | 5 +- .../advanced-filtering-style/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../cell-editing-sample/package.json | 8 +- .../cell-editing-sample/sandbox.config.json | 3 +- .../cell-editing-sample/src/index.css | 3 +- .../cell-editing-sample/src/index.ts | 3 +- .../cell-editing-sample/tsconfig.json | 38 ++---- .../cell-editing-sample/webpack.config.js | 2 + .../cell-editing-styling/package.json | 8 +- .../cell-editing-styling/sandbox.config.json | 3 +- .../cell-editing-styling/src/index.css | 9 +- .../cell-editing-styling/src/index.ts | 5 +- .../cell-editing-styling/tsconfig.json | 38 ++---- .../cell-editing-styling/webpack.config.js | 2 + .../cell-selection-mode/package.json | 8 +- .../cell-selection-mode/sandbox.config.json | 3 +- .../cell-selection-mode/src/index.css | 3 +- .../cell-selection-mode/src/index.ts | 3 +- .../cell-selection-mode/tsconfig.json | 38 ++---- .../cell-selection-mode/webpack.config.js | 2 + .../cell-selection-style/package.json | 8 +- .../cell-selection-style/sandbox.config.json | 3 +- .../cell-selection-style/src/index.css | 9 +- .../cell-selection-style/src/index.ts | 5 +- .../cell-selection-style/tsconfig.json | 38 ++---- .../cell-selection-style/webpack.config.js | 2 + .../clipboard-operations/package.json | 8 +- .../clipboard-operations/sandbox.config.json | 3 +- .../clipboard-operations/src/index.css | 3 +- .../clipboard-operations/src/index.ts | 4 +- .../clipboard-operations/tsconfig.json | 37 ++---- .../tree-grid/column-auto-sizing/package.json | 8 +- .../column-auto-sizing/sandbox.config.json | 3 +- .../column-auto-sizing/src/index.css | 3 +- .../tree-grid/column-auto-sizing/src/index.ts | 5 +- .../column-auto-sizing/tsconfig.json | 38 ++---- .../column-auto-sizing/webpack.config.js | 2 + .../column-collapsible-groups/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-collapsible-groups/src/index.css | 7 +- .../column-collapsible-groups/src/index.ts | 5 +- .../column-collapsible-groups/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../tree-grid/column-data-types/package.json | 8 +- .../column-data-types/sandbox.config.json | 3 +- .../tree-grid/column-data-types/src/index.css | 6 +- .../tree-grid/column-data-types/src/index.ts | 4 +- .../tree-grid/column-data-types/tsconfig.json | 38 ++---- .../column-hiding-toolbar-style/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-hiding-toolbar-style/src/index.css | 26 +--- .../column-hiding-toolbar-style/src/index.ts | 5 +- .../column-hiding-toolbar-style/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../column-hiding-toolbar/package.json | 8 +- .../column-hiding-toolbar/sandbox.config.json | 3 +- .../column-hiding-toolbar/src/index.css | 3 +- .../column-hiding-toolbar/src/index.ts | 5 +- .../column-hiding-toolbar/tsconfig.json | 38 ++---- .../column-hiding-toolbar/webpack.config.js | 2 + .../column-moving-options/package.json | 8 +- .../column-moving-options/sandbox.config.json | 3 +- .../column-moving-options/src/index.css | 3 +- .../column-moving-options/src/index.ts | 5 +- .../column-moving-options/tsconfig.json | 38 ++---- .../column-moving-options/webpack.config.js | 2 + .../column-moving-styles/package.json | 8 +- .../column-moving-styles/sandbox.config.json | 3 +- .../column-moving-styles/src/index.css | 9 +- .../column-moving-styles/src/index.ts | 5 +- .../column-moving-styles/tsconfig.json | 38 ++---- .../column-moving-styles/webpack.config.js | 2 + .../column-pinning-options/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-pinning-options/src/index.css | 3 +- .../column-pinning-options/src/index.ts | 5 +- .../column-pinning-options/tsconfig.json | 38 ++---- .../column-pinning-options/webpack.config.js | 2 + .../column-pinning-right-side/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-pinning-right-side/src/index.css | 3 +- .../column-pinning-right-side/src/index.ts | 6 +- .../column-pinning-right-side/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../column-pinning-styles/package.json | 8 +- .../column-pinning-styles/sandbox.config.json | 3 +- .../column-pinning-styles/src/index.css | 10 +- .../column-pinning-styles/src/index.ts | 5 +- .../column-pinning-styles/tsconfig.json | 38 ++---- .../column-pinning-styles/webpack.config.js | 2 + .../column-pinning-toolbar/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-pinning-toolbar/src/index.css | 3 +- .../column-pinning-toolbar/src/index.ts | 5 +- .../column-pinning-toolbar/tsconfig.json | 38 ++---- .../column-pinning-toolbar/webpack.config.js | 2 + .../tree-grid/column-pinning/package.json | 8 +- .../column-pinning/sandbox.config.json | 3 +- .../tree-grid/column-pinning/src/index.css | 3 +- .../tree-grid/column-pinning/src/index.ts | 5 +- .../tree-grid/column-pinning/tsconfig.json | 38 ++---- .../column-pinning/webpack.config.js | 2 + .../column-resize-styling/package.json | 8 +- .../column-resize-styling/sandbox.config.json | 3 +- .../column-resize-styling/src/index.css | 7 +- .../column-resize-styling/src/index.ts | 5 +- .../column-resize-styling/tsconfig.json | 38 ++---- .../column-resize-styling/webpack.config.js | 2 + .../tree-grid/column-resizing/package.json | 8 +- .../column-resizing/sandbox.config.json | 3 +- .../tree-grid/column-resizing/src/index.css | 3 +- .../tree-grid/column-resizing/src/index.ts | 5 +- .../tree-grid/column-resizing/tsconfig.json | 38 ++---- .../column-resizing/webpack.config.js | 2 + .../column-selection-group/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-selection-group/src/index.css | 3 +- .../column-selection-group/src/index.ts | 5 +- .../column-selection-group/tsconfig.json | 38 ++---- .../column-selection-group/webpack.config.js | 2 + .../column-selection-mode/package.json | 8 +- .../column-selection-mode/sandbox.config.json | 3 +- .../column-selection-mode/src/index.css | 3 +- .../column-selection-mode/src/index.ts | 3 +- .../column-selection-mode/tsconfig.json | 38 ++---- .../column-selection-mode/webpack.config.js | 2 + .../column-selection-style/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-selection-style/src/index.css | 13 +- .../column-selection-style/src/index.ts | 5 +- .../column-selection-style/tsconfig.json | 38 ++---- .../column-selection-styles/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-selection-styles/src/index.css | 13 +- .../column-selection-styles/src/index.ts | 5 +- .../column-selection-styles/tsconfig.json | 38 ++---- .../column-selection-styles/webpack.config.js | 2 + .../column-sorting-indicators/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-sorting-indicators/src/index.css | 3 +- .../column-sorting-indicators/src/index.ts | 7 +- .../column-sorting-indicators/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../column-sorting-options/package.json | 8 +- .../sandbox.config.json | 3 +- .../column-sorting-options/src/index.css | 3 +- .../column-sorting-options/src/index.ts | 5 +- .../column-sorting-options/tsconfig.json | 38 ++---- .../column-sorting-options/webpack.config.js | 2 + .../column-sorting-style/package.json | 8 +- .../column-sorting-style/sandbox.config.json | 3 +- .../column-sorting-style/src/index.css | 8 +- .../column-sorting-style/src/index.ts | 6 +- .../column-sorting-style/tsconfig.json | 38 ++---- .../column-sorting-style/webpack.config.js | 2 + .../conditional-cell-style-1/package.json | 8 +- .../sandbox.config.json | 3 +- .../conditional-cell-style-1/src/index.css | 15 +-- .../conditional-cell-style-1/src/index.ts | 6 +- .../conditional-cell-style-1/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../conditional-cell-style-2/package.json | 8 +- .../sandbox.config.json | 3 +- .../conditional-cell-style-2/src/index.css | 3 +- .../conditional-cell-style-2/src/index.ts | 6 +- .../conditional-cell-style-2/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../conditional-row-selectors/package.json | 8 +- .../sandbox.config.json | 3 +- .../conditional-row-selectors/src/index.css | 3 +- .../conditional-row-selectors/src/index.ts | 5 +- .../conditional-row-selectors/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../tree-grid/custom-filtering/package.json | 8 +- .../custom-filtering/sandbox.config.json | 3 +- .../tree-grid/custom-filtering/src/index.ts | 5 +- .../tree-grid/custom-filtering/tsconfig.json | 37 ++---- .../data-exporting-indicator/package.json | 8 +- .../sandbox.config.json | 3 +- .../data-exporting-indicator/src/index.ts | 4 +- .../data-exporting-indicator/tsconfig.json | 37 ++---- .../tree-grid/data-searching/package.json | 8 +- .../data-searching/sandbox.config.json | 3 +- .../tree-grid/data-searching/src/index.ts | 22 ++-- .../tree-grid/data-searching/tsconfig.json | 37 ++---- .../data-summaries-custom/package.json | 8 +- .../data-summaries-custom/sandbox.config.json | 3 +- .../data-summaries-custom/src/index.css | 6 +- .../data-summaries-custom/src/index.ts | 5 +- .../data-summaries-custom/tsconfig.json | 38 ++---- .../data-summary-children/package.json | 8 +- .../data-summary-children/sandbox.config.json | 3 +- .../data-summary-children/src/index.css | 3 +- .../data-summary-children/src/index.ts | 3 +- .../data-summary-children/tsconfig.json | 38 ++---- .../data-summary-children/webpack.config.js | 2 + .../data-summary-formatter/package.json | 8 +- .../sandbox.config.json | 3 +- .../data-summary-formatter/src/index.css | 3 +- .../data-summary-formatter/src/index.ts | 5 +- .../data-summary-formatter/tsconfig.json | 38 ++---- .../data-summary-formatter/webpack.config.js | 2 + .../data-summary-options-styling/package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 10 +- .../data-summary-options-styling/src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../data-summary-options/package.json | 8 +- .../data-summary-options/sandbox.config.json | 3 +- .../data-summary-options/src/index.css | 3 +- .../data-summary-options/src/index.ts | 5 +- .../data-summary-options/tsconfig.json | 38 ++---- .../data-summary-options/webpack.config.js | 2 + .../data-summary-template/package.json | 8 +- .../data-summary-template/sandbox.config.json | 3 +- .../data-summary-template/src/index.css | 43 +----- .../data-summary-template/src/index.ts | 3 +- .../data-summary-template/tsconfig.json | 38 ++---- .../data-summary-template/webpack.config.js | 2 + .../tree-grid/editing-columns/package.json | 8 +- .../editing-columns/sandbox.config.json | 3 +- .../tree-grid/editing-columns/src/index.css | 3 +- .../tree-grid/editing-columns/src/index.ts | 5 +- .../tree-grid/editing-columns/tsconfig.json | 38 ++---- .../editing-columns/webpack.config.js | 2 + .../tree-grid/editing-events/package.json | 8 +- .../editing-events/sandbox.config.json | 3 +- .../tree-grid/editing-events/src/index.css | 3 +- .../tree-grid/editing-events/src/index.ts | 5 +- .../tree-grid/editing-events/tsconfig.json | 38 ++---- .../editing-events/webpack.config.js | 2 + .../tree-grid/editing-lifecycle/package.json | 8 +- .../editing-lifecycle/sandbox.config.json | 3 +- .../tree-grid/editing-lifecycle/src/index.css | 3 +- .../tree-grid/editing-lifecycle/src/index.ts | 6 +- .../tree-grid/editing-lifecycle/tsconfig.json | 38 ++---- .../editing-lifecycle/webpack.config.js | 2 + .../tree-grid/excel-exporting/package.json | 8 +- .../excel-exporting/sandbox.config.json | 3 +- .../tree-grid/excel-exporting/src/index.css | 3 +- .../tree-grid/excel-exporting/src/index.ts | 5 +- .../tree-grid/excel-exporting/tsconfig.json | 38 ++---- .../excel-exporting/webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 3 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../excel-style-filtering-style/package.json | 8 +- .../sandbox.config.json | 3 +- .../excel-style-filtering-style/src/index.css | 26 +--- .../excel-style-filtering-style/src/index.ts | 5 +- .../excel-style-filtering-style/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../tree-grid/filtering-options/package.json | 8 +- .../filtering-options/sandbox.config.json | 3 +- .../tree-grid/filtering-options/src/index.css | 3 +- .../tree-grid/filtering-options/src/index.ts | 5 +- .../tree-grid/filtering-options/tsconfig.json | 38 ++---- .../filtering-options/webpack.config.js | 2 + .../tree-grid/filtering-style/package.json | 8 +- .../filtering-style/sandbox.config.json | 3 +- .../tree-grid/filtering-style/src/index.css | 10 +- .../tree-grid/filtering-style/src/index.ts | 5 +- .../tree-grid/filtering-style/tsconfig.json | 38 ++---- .../filtering-style/webpack.config.js | 2 + samples/grids/tree-grid/finjs/package.json | 10 +- .../grids/tree-grid/finjs/sandbox.config.json | 3 +- samples/grids/tree-grid/finjs/src/index.css | 122 +---------------- samples/grids/tree-grid/finjs/src/index.ts | 5 - samples/grids/tree-grid/finjs/tsconfig.json | 37 ++---- .../keyboard-custom-navigation/package.json | 8 +- .../sandbox.config.json | 3 +- .../keyboard-custom-navigation/src/index.css | 3 +- .../keyboard-custom-navigation/src/index.ts | 5 +- .../keyboard-custom-navigation/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../keyboard-navigation-guide/package.json | 8 +- .../sandbox.config.json | 3 +- .../keyboard-navigation-guide/src/index.css | 29 +--- .../keyboard-navigation-guide/src/index.ts | 3 +- .../keyboard-navigation-guide/tsconfig.json | 37 ++---- .../layout-display-density/package.json | 8 +- .../sandbox.config.json | 3 +- .../layout-display-density/src/index.css | 3 +- .../layout-display-density/src/index.ts | 3 +- .../layout-display-density/tsconfig.json | 38 ++---- .../layout-display-density/webpack.config.js | 2 + .../tree-grid/load-on-demand/package.json | 8 +- .../load-on-demand/sandbox.config.json | 3 +- .../tree-grid/load-on-demand/src/index.ts | 2 +- .../tree-grid/load-on-demand/tsconfig.json | 37 ++---- .../multi-cell-selection-mode/package.json | 8 +- .../sandbox.config.json | 3 +- .../multi-cell-selection-mode/src/index.css | 3 +- .../multi-cell-selection-mode/src/index.ts | 4 +- .../multi-cell-selection-mode/tsconfig.json | 38 ++---- .../multi-column-headers-export/package.json | 8 +- .../sandbox.config.json | 3 +- .../multi-column-headers-export/src/index.css | 3 +- .../multi-column-headers-export/src/index.ts | 5 +- .../multi-column-headers-export/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 3 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../multi-column-headers-styling/package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 11 +- .../multi-column-headers-styling/src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 5 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../tree-grid/overview-styling/package.json | 8 +- .../overview-styling/sandbox.config.json | 3 +- .../tree-grid/overview-styling/src/index.css | 11 +- .../tree-grid/overview-styling/src/index.ts | 5 +- .../tree-grid/overview-styling/tsconfig.json | 38 ++---- .../overview-styling/webpack.config.js | 2 + samples/grids/tree-grid/overview/package.json | 8 +- .../tree-grid/overview/sandbox.config.json | 3 +- .../grids/tree-grid/overview/src/index.css | 3 +- samples/grids/tree-grid/overview/src/index.ts | 5 +- .../grids/tree-grid/overview/tsconfig.json | 38 ++---- .../tree-grid/overview/webpack.config.js | 2 + .../grids/tree-grid/row-adding/package.json | 8 +- .../tree-grid/row-adding/sandbox.config.json | 3 +- .../grids/tree-grid/row-adding/src/index.css | 3 +- .../grids/tree-grid/row-adding/src/index.ts | 5 +- .../grids/tree-grid/row-adding/tsconfig.json | 38 ++---- .../tree-grid/row-adding/webpack.config.js | 2 + .../grids/tree-grid/row-classes/package.json | 8 +- .../tree-grid/row-classes/sandbox.config.json | 3 +- .../grids/tree-grid/row-classes/src/index.css | 8 +- .../grids/tree-grid/row-classes/src/index.ts | 6 +- .../grids/tree-grid/row-classes/tsconfig.json | 38 ++---- .../tree-grid/row-classes/webpack.config.js | 2 + .../tree-grid/row-drag-base/package.json | 8 +- .../row-drag-base/sandbox.config.json | 3 +- .../tree-grid/row-drag-base/src/index.css | 3 +- .../tree-grid/row-drag-base/src/index.ts | 25 ++-- .../tree-grid/row-drag-base/tsconfig.json | 38 ++---- .../row-editing-options/package.json | 8 +- .../row-editing-options/sandbox.config.json | 3 +- .../row-editing-options/src/index.css | 3 +- .../row-editing-options/src/index.ts | 5 +- .../row-editing-options/tsconfig.json | 38 ++---- .../row-editing-options/webpack.config.js | 2 + .../tree-grid/row-editing-style/package.json | 8 +- .../row-editing-style/sandbox.config.json | 3 +- .../tree-grid/row-editing-style/src/index.css | 11 +- .../tree-grid/row-editing-style/src/index.ts | 5 +- .../tree-grid/row-editing-style/tsconfig.json | 38 ++---- .../row-editing-style/webpack.config.js | 2 + .../tree-grid/row-paging-basic/package.json | 8 +- .../row-paging-basic/sandbox.config.json | 3 +- .../tree-grid/row-paging-basic/src/index.css | 3 +- .../tree-grid/row-paging-basic/src/index.ts | 5 +- .../tree-grid/row-paging-basic/tsconfig.json | 38 ++---- .../row-paging-basic/webpack.config.js | 2 + .../tree-grid/row-paging-options/package.json | 8 +- .../row-paging-options/sandbox.config.json | 3 +- .../row-paging-options/src/index.css | 7 +- .../tree-grid/row-paging-options/src/index.ts | 4 +- .../row-paging-options/tsconfig.json | 38 ++---- .../row-paging-options/webpack.config.js | 2 + .../tree-grid/row-paging-style/package.json | 8 +- .../row-paging-style/sandbox.config.json | 3 +- .../tree-grid/row-paging-style/src/index.css | 3 +- .../tree-grid/row-paging-style/src/index.ts | 5 +- .../tree-grid/row-paging-style/tsconfig.json | 38 ++---- .../row-paging-style/webpack.config.js | 2 + .../row-pinning-extra-column/package.json | 8 +- .../sandbox.config.json | 3 +- .../row-pinning-extra-column/src/index.css | 3 +- .../row-pinning-extra-column/src/index.ts | 6 +- .../row-pinning-extra-column/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../row-pinning-options/package.json | 8 +- .../row-pinning-options/sandbox.config.json | 3 +- .../row-pinning-options/src/index.css | 3 +- .../row-pinning-options/src/index.ts | 4 +- .../row-pinning-options/tsconfig.json | 38 ++---- .../row-pinning-options/webpack.config.js | 2 + .../tree-grid/row-pinning-style/package.json | 8 +- .../row-pinning-style/sandbox.config.json | 3 +- .../tree-grid/row-pinning-style/src/index.css | 10 +- .../tree-grid/row-pinning-style/src/index.ts | 6 +- .../tree-grid/row-pinning-style/tsconfig.json | 38 ++---- .../row-pinning-style/webpack.config.js | 2 + .../grids/tree-grid/row-reorder/package.json | 8 +- .../tree-grid/row-reorder/sandbox.config.json | 3 +- .../grids/tree-grid/row-reorder/src/index.css | 3 +- .../grids/tree-grid/row-reorder/src/index.ts | 5 +- .../grids/tree-grid/row-reorder/tsconfig.json | 38 ++---- .../tree-grid/row-reorder/webpack.config.js | 2 + .../tree-grid/row-selection-mode/package.json | 8 +- .../row-selection-mode/sandbox.config.json | 3 +- .../row-selection-mode/src/index.css | 3 +- .../tree-grid/row-selection-mode/src/index.ts | 3 +- .../row-selection-mode/tsconfig.json | 38 ++---- .../row-selection-mode/webpack.config.js | 2 + .../row-selection-template-excel/package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 7 +- .../row-selection-template-excel/src/index.ts | 6 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../package.json | 8 +- .../sandbox.config.json | 3 +- .../src/index.css | 3 +- .../src/index.ts | 6 +- .../tsconfig.json | 38 ++---- .../webpack.config.js | 2 + .../grids/tree-grid/row-styles/package.json | 8 +- .../tree-grid/row-styles/sandbox.config.json | 3 +- .../grids/tree-grid/row-styles/src/index.css | 3 +- .../grids/tree-grid/row-styles/src/index.ts | 5 +- .../grids/tree-grid/row-styles/tsconfig.json | 38 ++---- .../tree-grid/row-styles/webpack.config.js | 2 + .../state-persistence-about/package.json | 8 +- .../state-persistence-about/src/index.ts | 2 +- .../state-persistence-about/tsconfig.json | 38 ++---- .../state-persistence-about/webpack.config.js | 6 +- .../state-persistence-main/package.json | 8 +- .../state-persistence-main/src/index.css | 11 +- .../state-persistence-main/src/index.ts | 9 +- .../state-persistence-main/tsconfig.json | 38 ++---- .../state-persistence-main/webpack.config.js | 6 +- .../tree-grid/toolbar-sample-1/package.json | 8 +- .../toolbar-sample-1/sandbox.config.json | 3 +- .../tree-grid/toolbar-sample-1/src/index.css | 10 +- .../tree-grid/toolbar-sample-1/src/index.ts | 4 +- .../tree-grid/toolbar-sample-1/tsconfig.json | 38 ++---- .../toolbar-sample-1/webpack.config.js | 2 + .../tree-grid/toolbar-sample-2/package.json | 8 +- .../toolbar-sample-2/sandbox.config.json | 3 +- .../tree-grid/toolbar-sample-2/src/index.css | 16 +-- .../tree-grid/toolbar-sample-2/src/index.ts | 6 +- .../tree-grid/toolbar-sample-2/tsconfig.json | 37 ++---- .../tree-grid/toolbar-sample-3/package.json | 8 +- .../toolbar-sample-3/sandbox.config.json | 3 +- .../tree-grid/toolbar-sample-3/src/index.css | 10 +- .../tree-grid/toolbar-sample-3/src/index.ts | 4 +- .../tree-grid/toolbar-sample-3/tsconfig.json | 38 ++---- .../toolbar-sample-3/webpack.config.js | 2 + .../tree-grid/toolbar-sample-4/package.json | 8 +- .../toolbar-sample-4/sandbox.config.json | 3 +- .../tree-grid/toolbar-sample-4/src/index.css | 11 +- .../tree-grid/toolbar-sample-4/src/index.ts | 6 +- .../tree-grid/toolbar-sample-4/tsconfig.json | 37 ++---- .../tree-grid/toolbar-style/package.json | 8 +- .../toolbar-style/sandbox.config.json | 3 +- .../tree-grid/toolbar-style/src/index.css | 17 +-- .../tree-grid/toolbar-style/src/index.ts | 4 +- .../tree-grid/toolbar-style/tsconfig.json | 38 ++---- .../tree-grid/toolbar-style/webpack.config.js | 2 + .../using-primary-foreign-keys/package.json | 8 +- .../sandbox.config.json | 3 +- .../using-primary-foreign-keys/src/index.css | 3 +- .../using-primary-foreign-keys/src/index.ts | 5 +- .../using-primary-foreign-keys/tsconfig.json | 38 ++---- .../webpack.config.js | 2 + samples/grids/tree/basic-example/.prettierrc | 2 +- .../grids/tree/basic-example/src/index.css | 2 +- .../grids/tree/basic-example/tsconfig.json | 2 +- .../load-on-demand-virtualized/.prettierrc | 20 +-- .../sandbox.config.json | 1 + .../load-on-demand-virtualized/src/index.css | 2 +- .../load-on-demand-virtualized/tsconfig.json | 5 +- .../webpack.config.js | 124 +++++++++--------- samples/grids/tree/load-on-demand/.prettierrc | 2 +- .../tree/load-on-demand/sandbox.config.json | 1 + .../grids/tree/load-on-demand/src/index.css | 2 +- .../grids/tree/load-on-demand/tsconfig.json | 2 +- .../button-group/alignment/src/index.css | 10 +- .../button-group/alignment/src/index.ts | 2 +- .../button-group/overview/src/index.css | 10 +- .../inputs/button-group/overview/src/index.ts | 2 +- .../button-group/selection/src/index.css | 19 +-- .../button-group/selection/src/index.ts | 2 +- .../inputs/button-group/size/src/index.css | 6 +- samples/inputs/button-group/size/src/index.ts | 2 +- .../inputs/button-group/styling/src/index.css | 30 +---- .../inputs/button-group/styling/src/index.ts | 2 +- samples/inputs/button/size/src/index.ts | 2 +- samples/inputs/combo/features/src/index.css | 9 +- samples/inputs/combo/selection/src/index.css | 7 +- samples/inputs/combo/simplified/src/index.css | 9 +- samples/inputs/combo/styling/src/index.css | 33 +---- samples/inputs/combo/templates/src/index.css | 12 +- samples/inputs/combo/templates/src/index.ts | 1 - .../date-time-input/step-up-down/src/index.ts | 4 +- .../inputs/icon-button/styling/src/index.css | 2 +- .../inputs/icon-button/variant/src/index.ts | 1 - samples/inputs/input/size/src/index.ts | 4 +- .../mask-input/applying-mask/.prettierrc | 2 +- .../mask-input/applying-mask/src/index.css | 2 +- .../mask-input/applying-mask/tsconfig.json | 2 +- .../inputs/mask-input/overview/.prettierrc | 2 +- .../inputs/mask-input/overview/src/index.css | 2 +- .../inputs/mask-input/overview/tsconfig.json | 2 +- .../inputs/mask-input/value-modes/.prettierrc | 2 +- .../mask-input/value-modes/src/index.css | 2 +- .../mask-input/value-modes/tsconfig.json | 2 +- samples/inputs/radio/styling/src/index.css | 11 +- samples/inputs/rating/basic/src/index.css | 5 +- .../rating/single-selection/src/index.css | 6 +- samples/inputs/rating/styling/src/index.css | 28 +--- .../form-integration/sandbox.config.json | 1 + .../textarea/form-integration/src/index.css | 6 +- .../textarea/form-integration/tsconfig.json | 33 +++-- .../form-integration/webpack.config.js | 118 +++++++++-------- .../textarea/overview/sandbox.config.json | 1 + .../inputs/textarea/overview/src/index.css | 2 +- .../inputs/textarea/overview/tsconfig.json | 33 +++-- .../textarea/overview/webpack.config.js | 118 +++++++++-------- .../textarea/resize/sandbox.config.json | 1 + samples/inputs/textarea/resize/src/index.css | 2 +- samples/inputs/textarea/resize/tsconfig.json | 33 +++-- .../inputs/textarea/resize/webpack.config.js | 118 +++++++++-------- .../inputs/textarea/slots/sandbox.config.json | 1 + samples/inputs/textarea/slots/src/index.css | 2 +- samples/inputs/textarea/slots/tsconfig.json | 33 +++-- .../inputs/textarea/slots/webpack.config.js | 118 +++++++++-------- .../textarea/styling/sandbox.config.json | 1 + samples/inputs/textarea/styling/src/index.css | 2 +- samples/inputs/textarea/styling/tsconfig.json | 33 +++-- .../inputs/textarea/styling/webpack.config.js | 118 +++++++++-------- samples/layouts/avatar/image/src/index.ts | 2 +- samples/layouts/card/integration/.prettierrc | 2 +- .../layouts/card/integration/src/index.css | 2 +- samples/layouts/card/integration/src/index.ts | 6 +- .../layouts/card/integration/tsconfig.json | 2 +- .../layouts/carousel/animations/src/index.css | 49 +------ .../layouts/carousel/components/src/index.css | 28 +--- .../layouts/carousel/overview/src/index.css | 31 +---- .../layouts/carousel/thumbnail/src/index.css | 16 +-- samples/layouts/divider/middle/src/index.ts | 2 +- samples/layouts/divider/vertical/src/index.ts | 2 +- .../add-content-runtime/src/index.ts | 15 +-- .../contained-in-boundaries/src/index.ts | 2 +- .../customize-buttons/.prettierrc | 2 +- .../customize-buttons/sandbox.config.json | 1 + .../customize-buttons/src/index.css | 2 +- .../customize-buttons/tsconfig.json | 2 +- .../embedding-frames/package.json | 2 +- .../dock-manager/focus-panes/src/index.ts | 4 +- .../hide-pane-headers/src/index.ts | 2 +- .../dock-manager/hiding-panes/package.json | 2 +- .../dock-manager/hiding-panes/src/index.ts | 2 +- .../dock-manager/overview/package.json | 2 +- .../dock-manager/proximity-dock/src/index.ts | 2 +- .../layouts/dock-manager/styling/package.json | 2 +- .../layouts/dock-manager/styling/src/index.ts | 4 +- .../toggle-inner-dock/src/index.ts | 4 +- .../dock-manager/updating-panes/package.json | 8 +- .../layouts/icon/sizing/sandbox.config.json | 3 +- samples/layouts/icon/sizing/tsconfig.json | 2 +- .../layouts/icon/styling/sandbox.config.json | 3 +- samples/layouts/icon/styling/src/index.css | 7 +- samples/layouts/icon/styling/tsconfig.json | 2 +- .../layouts/stepper/animations/src/index.css | 16 +-- samples/layouts/stepper/linear/src/index.ts | 6 +- samples/layouts/stepper/overview/src/index.ts | 2 +- .../layouts/tabs/prefix-suffix/src/index.css | 10 +- samples/layouts/tabs/scrolling/src/index.ts | 2 +- .../geo-map/binding-data-csv/package.json | 6 +- .../binding-data-json-points/package.json | 6 +- .../geo-map/binding-data-model/package.json | 6 +- .../geo-map/binding-data-model/src/index.ts | 2 +- .../binding-multiple-shapes/package.json | 6 +- .../binding-multiple-sources/package.json | 6 +- .../geo-map/binding-shp-points/package.json | 6 +- .../geo-map/binding-shp-polygons/package.json | 6 +- .../geo-map/binding-shp-polygons/src/index.ts | 2 +- .../binding-shp-polylines/package.json | 6 +- .../binding-shp-polylines/src/index.ts | 2 +- .../maps/geo-map/custom-tooltips/package.json | 6 +- .../geo-map/display-all-imagery/package.json | 6 +- .../geo-map/display-all-imagery/src/index.ts | 15 +-- .../geo-map/display-bing-imagery/package.json | 6 +- .../geo-map/display-esri-imagery/package.json | 6 +- .../geo-map/display-heat-imagery/package.json | 6 +- .../geo-map/display-osm-imagery/package.json | 6 +- .../maps/geo-map/marker-template/package.json | 6 +- samples/maps/geo-map/marker-type/package.json | 6 +- samples/maps/geo-map/navigation/package.json | 6 +- samples/maps/geo-map/navigation/src/index.ts | 1 - samples/maps/geo-map/overview/package.json | 6 +- .../maps/geo-map/shape-styling/package.json | 6 +- .../maps/geo-map/synchronization/package.json | 6 +- .../geo-map/triangulating-data/package.json | 6 +- .../type-scatter-area-series/package.json | 6 +- .../type-scatter-area-series/src/index.ts | 2 +- .../type-scatter-bubble-series/package.json | 6 +- .../type-scatter-bubble-series/src/index.ts | 2 +- .../type-scatter-contour-series/package.json | 6 +- .../type-scatter-contour-series/src/index.ts | 2 +- .../type-scatter-density-series/package.json | 6 +- .../type-scatter-symbol-series/package.json | 6 +- .../type-scatter-symbol-series/src/index.ts | 2 +- .../type-shape-polygon-series/package.json | 6 +- .../type-shape-polygon-series/src/index.ts | 2 +- .../type-shape-polyline-series/package.json | 6 +- .../type-shape-polyline-series/src/index.ts | 2 +- .../menus/nav-drawer/add-mini/src/index.ts | 6 +- .../add-positions-navbar/src/index.ts | 3 +- samples/menus/nav-drawer/styling/src/index.ts | 2 +- .../banner/banner-sample-1/src/index.ts | 2 +- .../notifications/toast/styling/src/index.css | 2 +- .../date-picker/dialog-mode/src/index.ts | 2 +- .../scheduling/date-picker/form/src/index.ts | 4 +- .../date-picker/format/src/index.ts | 2 +- .../date-picker/overview/src/index.ts | 2 +- .../date-picker/styling/src/index.ts | 2 +- 3003 files changed, 10126 insertions(+), 20424 deletions(-) diff --git a/browser/public/index.html b/browser/public/index.html index e2c3eb2761..0b6ffd7f9d 100644 --- a/browser/public/index.html +++ b/browser/public/index.html @@ -316,6 +316,14 @@ + + @@ -459,6 +467,7 @@ Cell Editing Styling Cell Selection Mode Cell Selection Style + Change Icons Custom Clipboard Operations Column Auto Sizing Column Collapsible Groups @@ -501,6 +510,7 @@ Editing Columns Editing Events Editing Excel Style + Editing Excel Style Custom Editing Lifecycle Excel Exporting Excel Style Filtering Sample1 @@ -949,9 +959,9 @@
@@ -1091,7 +1101,7 @@
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/index.html b/samples/charts/category-chart/annotations-final-value/index.html index e308946cc0..360de60843 100644 --- a/samples/charts/category-chart/annotations-final-value/index.html +++ b/samples/charts/category-chart/annotations-final-value/index.html @@ -54,7 +54,8 @@ final-value-annotations-precision="0" crosshairs-annotation-y-axis-precision="0" y-axis-maximum-value="35" - y-axis-label-location="OutsideRight"> + y-axis-label-location="OutsideRight" + is-transition-in-enabled="false"> diff --git a/samples/charts/category-chart/annotations-final-value/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/index.html b/samples/charts/category-chart/annotations-highlighting/index.html index 5ec0811292..a1ec555068 100644 --- a/samples/charts/category-chart/annotations-highlighting/index.html +++ b/samples/charts/category-chart/annotations-highlighting/index.html @@ -57,7 +57,8 @@ highlighting-behavior="NearestItemsAndSeries" y-axis-maximum-value="35" y-axis-label-location="OutsideRight" - tool-tip-type="None"> + tool-tip-type="None" + is-transition-in-enabled="false"> diff --git a/samples/charts/category-chart/annotations-highlighting/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/index.html b/samples/charts/category-chart/axis-gridlines/index.html index 321f19187d..3075dff4d8 100644 --- a/samples/charts/category-chart/axis-gridlines/index.html +++ b/samples/charts/category-chart/axis-gridlines/index.html @@ -25,6 +25,28 @@ is-wrapping-enabled="true" name="propertyEditorPanel1" id="propertyEditorPanel1"> + + + + { return { entry: isLegacy ? [ - path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), - 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/index.html b/samples/charts/category-chart/highlighting-behavior/index.html index 29388c215d..1c62dcd469 100644 --- a/samples/charts/category-chart/highlighting-behavior/index.html +++ b/samples/charts/category-chart/highlighting-behavior/index.html @@ -45,7 +45,8 @@ highlighting-mode="Brighten" highlighting-behavior="DirectlyOver" tool-tip-type="None" - crosshairs-display-mode="None"> + crosshairs-display-mode="None" + is-transition-in-enabled="false"> diff --git a/samples/charts/category-chart/highlighting-behavior/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/index.html b/samples/charts/category-chart/highlighting-mode/index.html index b67469a622..bb0acc25c6 100644 --- a/samples/charts/category-chart/highlighting-mode/index.html +++ b/samples/charts/category-chart/highlighting-mode/index.html @@ -44,7 +44,8 @@ is-vertical-zoom-enabled="false" highlighting-mode="BrightenSpecific" tool-tip-type="None" - crosshairs-display-mode="None"> + crosshairs-display-mode="None" + is-transition-in-enabled="false"> diff --git a/samples/charts/category-chart/highlighting-mode/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/index.html b/samples/charts/category-chart/legend-highlighting/index.html index 6ba290621a..205a63f877 100644 --- a/samples/charts/category-chart/legend-highlighting/index.html +++ b/samples/charts/category-chart/legend-highlighting/index.html @@ -42,7 +42,8 @@ is-horizontal-zoom-enabled="false" is-vertical-zoom-enabled="false" highlighting-mode="Brighten" - legend-highlighting-mode="MatchSeries"> + legend-highlighting-mode="MatchSeries" + is-transition-in-enabled="false"> diff --git a/samples/charts/category-chart/legend-highlighting/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/dashboard-tile/chart-dashboard/.prettierrc b/samples/charts/dashboard-tile/chart-dashboard/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/chart-dashboard/index.html b/samples/charts/dashboard-tile/chart-dashboard/index.html new file mode 100644 index 0000000000..218865596c --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/index.html @@ -0,0 +1,34 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json new file mode 100644 index 0000000000..1038979b3d --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -0,0 +1,57 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-core": "5.1.1-beta.0", + "igniteui-webcomponents-dashboards": "5.1.1-beta.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } +} diff --git a/samples/charts/dashboard-tile/chart-dashboard/sandbox.config.json b/samples/charts/dashboard-tile/chart-dashboard/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/OlympicMedalsTopCountries.ts b/samples/charts/dashboard-tile/chart-dashboard/src/OlympicMedalsTopCountries.ts new file mode 100644 index 0000000000..d47a868bd9 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/OlympicMedalsTopCountries.ts @@ -0,0 +1,64 @@ +export class OlympicMedalsTopCountriesItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public america: number; + public china: number; + public russia: number; + +} +export class OlympicMedalsTopCountries extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OlympicMedalsTopCountriesItem( + { + year: `1996`, + america: 148, + china: 110, + russia: 95 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2000`, + america: 142, + china: 115, + russia: 91 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2004`, + america: 134, + china: 121, + russia: 86 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2008`, + america: 131, + china: 129, + russia: 65 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2012`, + america: 135, + china: 115, + russia: 77 + }), + new OlympicMedalsTopCountriesItem( + { + year: `2016`, + america: 146, + china: 112, + russia: 88 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/index.css b/samples/charts/dashboard-tile/chart-dashboard/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/dashboard-tile/chart-dashboard/src/index.ts b/samples/charts/dashboard-tile/chart-dashboard/src/index.ts new file mode 100644 index 0000000000..2b49de8a23 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/src/index.ts @@ -0,0 +1,44 @@ +import { IgcDashboardTileModule, IgcDataChartDashboardTileModule, IgcGeographicMapDashboardTileModule, IgcLinearGaugeDashboardTileModule, IgcPieChartDashboardTileModule, IgcRadialGaugeDashboardTileModule } from 'igniteui-webcomponents-dashboards'; +import { IgcDashboardTileComponent } from 'igniteui-webcomponents-dashboards'; +import { OlympicMedalsTopCountriesItem, OlympicMedalsTopCountries } from './OlympicMedalsTopCountries'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcDashboardTileModule, + IgcDataChartDashboardTileModule, + IgcGeographicMapDashboardTileModule, + IgcLinearGaugeDashboardTileModule, + IgcPieChartDashboardTileModule, + IgcRadialGaugeDashboardTileModule +); + +export class Sample { + + private dashboard: IgcDashboardTileComponent + private _bind: () => void; + + constructor() { + var dashboard = this.dashboard = document.getElementById('dashboard') as IgcDashboardTileComponent; + + this._bind = () => { + dashboard.dataSource = this.olympicMedalsTopCountries; + } + this._bind(); + + } + + private _olympicMedalsTopCountries: OlympicMedalsTopCountries = null; + public get olympicMedalsTopCountries(): OlympicMedalsTopCountries { + if (this._olympicMedalsTopCountries == null) + { + this._olympicMedalsTopCountries = new OlympicMedalsTopCountries(); + } + return this._olympicMedalsTopCountries; + } + +} + +new Sample(); diff --git a/samples/charts/dashboard-tile/chart-dashboard/tsconfig.json b/samples/charts/dashboard-tile/chart-dashboard/tsconfig.json new file mode 100644 index 0000000000..a15284fdc2 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/tsconfig.json @@ -0,0 +1,40 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/chart-dashboard/tslint.json b/samples/charts/dashboard-tile/chart-dashboard/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/tslint.json @@ -0,0 +1,54 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "member-ordering": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-trailing-whitespace": false, + "no-var": false, + "no-var-requires": false, + "no-var-keyword": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "no-console": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-var-requires": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "ordered-imports": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/charts/dashboard-tile/chart-dashboard/webpack.config.js b/samples/charts/dashboard-tile/chart-dashboard/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/charts/dashboard-tile/chart-dashboard/webpack.config.js @@ -0,0 +1,103 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/charts/dashboard-tile/gauge-dashboard/.prettierrc b/samples/charts/dashboard-tile/gauge-dashboard/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/index.html b/samples/charts/dashboard-tile/gauge-dashboard/index.html new file mode 100644 index 0000000000..4ca17dbd1e --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/index.html @@ -0,0 +1,35 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json new file mode 100644 index 0000000000..1038979b3d --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -0,0 +1,57 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-core": "5.1.1-beta.0", + "igniteui-webcomponents-dashboards": "5.1.1-beta.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } +} diff --git a/samples/charts/dashboard-tile/gauge-dashboard/sandbox.config.json b/samples/charts/dashboard-tile/gauge-dashboard/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/index.css b/samples/charts/dashboard-tile/gauge-dashboard/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/index.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/index.ts new file mode 100644 index 0000000000..f5e0a13c9d --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/index.ts @@ -0,0 +1,38 @@ +import { IgcDashboardTileModule, IgcDataChartDashboardTileModule, IgcGeographicMapDashboardTileModule, IgcLinearGaugeDashboardTileModule, IgcPieChartDashboardTileModule, IgcRadialGaugeDashboardTileModule } from 'igniteui-webcomponents-dashboards'; +import { IgcDashboardTileComponent } from 'igniteui-webcomponents-dashboards'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcDashboardTileModule, + IgcDataChartDashboardTileModule, + IgcGeographicMapDashboardTileModule, + IgcLinearGaugeDashboardTileModule, + IgcPieChartDashboardTileModule, + IgcRadialGaugeDashboardTileModule +); + +export class Sample { + + private dashboard: IgcDashboardTileComponent + + constructor() { + var dashboard = this.dashboard = document.getElementById('dashboard') as IgcDashboardTileComponent; + + this.dashboardTileGaugeOnInit(); + + } + + + public dashboardTileGaugeOnInit(): void { + + var target = this.dashboard; + + target.dataSource = 40; + } + +} + +new Sample(); diff --git a/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.json b/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.json new file mode 100644 index 0000000000..a15284fdc2 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/tsconfig.json @@ -0,0 +1,40 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/tslint.json b/samples/charts/dashboard-tile/gauge-dashboard/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/tslint.json @@ -0,0 +1,54 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "member-ordering": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-trailing-whitespace": false, + "no-var": false, + "no-var-requires": false, + "no-var-keyword": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "no-console": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-var-requires": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "ordered-imports": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/charts/dashboard-tile/gauge-dashboard/webpack.config.js b/samples/charts/dashboard-tile/gauge-dashboard/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/webpack.config.js @@ -0,0 +1,103 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/charts/dashboard-tile/map-dashboard/.prettierrc b/samples/charts/dashboard-tile/map-dashboard/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/index.html b/samples/charts/dashboard-tile/map-dashboard/index.html new file mode 100644 index 0000000000..918bbc32f5 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/index.html @@ -0,0 +1,35 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json new file mode 100644 index 0000000000..1038979b3d --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -0,0 +1,57 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-core": "5.1.1-beta.0", + "igniteui-webcomponents-dashboards": "5.1.1-beta.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } +} diff --git a/samples/charts/dashboard-tile/map-dashboard/sandbox.config.json b/samples/charts/dashboard-tile/map-dashboard/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/src/WorldCities.ts b/samples/charts/dashboard-tile/map-dashboard/src/WorldCities.ts new file mode 100644 index 0000000000..7ffffb7ab3 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/WorldCities.ts @@ -0,0 +1,5478 @@ +export class WorldCitiesItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public capital: boolean; + public population: number; + public y: number; + public x: number; + public country: string; + public name: string; + +} +export class WorldCities extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new WorldCitiesItem( + { + capital: true, + population: 23.62, + y: 35.68, + x: 139.81, + country: `Japan`, + name: `Tokyo` + }), + new WorldCitiesItem( + { + capital: false, + population: 16.47, + y: 40.75, + x: -74.1, + country: `US`, + name: `New York` + }), + new WorldCitiesItem( + { + capital: true, + population: 15.85, + y: 37.54, + x: 126.94, + country: `South Korea`, + name: `Seoul` + }), + new WorldCitiesItem( + { + capital: false, + population: 15.18, + y: -23.58, + x: -46.62, + country: `Brazil`, + name: `Sao Paulo` + }), + new WorldCitiesItem( + { + capital: false, + population: 15.04, + y: 34.64, + x: 135.52, + country: `Japan`, + name: `Osaka` + }), + new WorldCitiesItem( + { + capital: true, + population: 14.1, + y: 19.43, + x: -99.13, + country: `Mexico`, + name: `Mexico City` + }), + new WorldCitiesItem( + { + capital: true, + population: 13.1, + y: 55.75, + x: 37.7, + country: `Russia`, + name: `Moscow` + }), + new WorldCitiesItem( + { + capital: false, + population: 11.1, + y: 22.54, + x: 88.33, + country: `India`, + name: `Calcutta` + }), + new WorldCitiesItem( + { + capital: true, + population: 11.1, + y: 51.49, + x: -0.18, + country: `UK`, + name: `London` + }), + new WorldCitiesItem( + { + capital: true, + population: 10.75, + y: -34.67, + x: -58.41, + country: `Argentina`, + name: `Buenos Aires` + }), + new WorldCitiesItem( + { + capital: false, + population: 10.15, + y: -22.72, + x: -43.46, + country: `Brazil`, + name: `Rio de Janeiro` + }), + new WorldCitiesItem( + { + capital: false, + population: 9.95, + y: 19.05, + x: 73.17, + country: `India`, + name: `Bombay` + }), + new WorldCitiesItem( + { + capital: true, + population: 9.78, + y: 48.88, + x: 2.43, + country: `France`, + name: `Paris` + }), + new WorldCitiesItem( + { + capital: false, + population: 9.76, + y: 34, + x: -118.25, + country: `US`, + name: `Los Angeles` + }), + new WorldCitiesItem( + { + capital: false, + population: 9.41, + y: 24.98, + x: 121.53, + country: `Taiwan`, + name: `Chingmei` + }), + new WorldCitiesItem( + { + capital: true, + population: 9.3, + y: 30.08, + x: 31.25, + country: `Egypt`, + name: `Cairo` + }), + new WorldCitiesItem( + { + capital: false, + population: 9.3, + y: 31.25, + x: 121.47, + country: `China`, + name: `Shanghai` + }), + new WorldCitiesItem( + { + capital: true, + population: 8.6, + y: -6.29, + x: 106.76, + country: `Indonesia`, + name: `Jakarta` + }), + new WorldCitiesItem( + { + capital: false, + population: 7.72, + y: 41.83, + x: -87.64, + country: `US`, + name: `Chicago` + }), + new WorldCitiesItem( + { + capital: false, + population: 7.2, + y: 28.53, + x: 77.22, + country: `India`, + name: `Delhi` + }), + new WorldCitiesItem( + { + capital: true, + population: 6.45, + y: 13.75, + x: 100.55, + country: `Thailand`, + name: `Bangkok` + }), + new WorldCitiesItem( + { + capital: true, + population: 6.45, + y: 39.91, + x: 116.39, + country: `China`, + name: `Beijing` + }), + new WorldCitiesItem( + { + capital: true, + population: 6.4, + y: 35.77, + x: 51.45, + country: `Iran`, + name: `Tehran` + }), + new WorldCitiesItem( + { + capital: true, + population: 6.13, + y: 25.04, + x: 121.51, + country: `Taiwan`, + name: `Taipei` + }), + new WorldCitiesItem( + { + capital: false, + population: 5.83, + y: 59.95, + x: 30.45, + country: `Russia`, + name: `Saint Petersburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 5.75, + y: 41.07, + x: 29.01, + country: `Turkey`, + name: `Istanbul` + }), + new WorldCitiesItem( + { + capital: true, + population: 5.47, + y: 14.55, + x: 121.17, + country: `Philippines`, + name: `Manila` + }), + new WorldCitiesItem( + { + capital: true, + population: 5.4, + y: 22.43, + x: 114.15, + country: `UK`, + name: `Hong Kong` + }), + new WorldCitiesItem( + { + capital: false, + population: 5.3, + y: 24.85, + x: 67.03, + country: `Pakistan`, + name: `Karachi` + }), + new WorldCitiesItem( + { + capital: false, + population: 5.21, + y: 39.93, + x: -75.22, + country: `US`, + name: `Philadelphia` + }), + new WorldCitiesItem( + { + capital: true, + population: 5.06, + y: 52.52, + x: 13.33, + country: `Germany`, + name: `Berlin` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.88, + y: 39.13, + x: 117.19, + country: `China`, + name: `Tianjin` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.8, + y: 35.15, + x: 136.92, + country: `Japan`, + name: `Nagoya` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.69, + y: 42.39, + x: -83.08, + country: `US`, + name: `Detroit` + }), + new WorldCitiesItem( + { + capital: true, + population: 4.65, + y: 40.44, + x: -3.69, + country: `Spain`, + name: `Madrid` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.47, + y: 13.06, + x: 80.25, + country: `India`, + name: `Madras` + }), + new WorldCitiesItem( + { + capital: true, + population: 4.34, + y: -12.07, + x: -76.82, + country: `Peru`, + name: `Lima` + }), + new WorldCitiesItem( + { + capital: true, + population: 4.26, + y: 4.63, + x: -74.08, + country: `Colombia`, + name: `Bogota` + }), + new WorldCitiesItem( + { + capital: true, + population: 4.1, + y: -33.48, + x: -70.65, + country: `Chile`, + name: `Santiago` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.05, + y: 37.73, + x: -122.31, + country: `US`, + name: `San Francisco` + }), + new WorldCitiesItem( + { + capital: false, + population: 4.04, + y: 41.53, + x: 2.17, + country: `Spain`, + name: `BarceXa` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.97, + y: 42.38, + x: -71.1, + country: `US`, + name: `Boston` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.87, + y: 51.35, + x: 7.12, + country: `Germany`, + name: `Essen` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.84, + y: 33.33, + x: 44.4, + country: `Iraq`, + name: `Baghdad` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.84, + y: 41.8, + x: 123.38, + country: `China`, + name: `Shenyang` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.8, + y: 6.45, + x: 3.3, + country: `Nigeria`, + name: `Lagos` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.8, + y: 35.16, + x: 129.05, + country: `South Korea`, + name: `Pusan` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.75, + y: 45.47, + x: 9.19, + country: `Italy`, + name: `Milano` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.65, + y: -26.18, + x: 28, + country: `South Africa`, + name: `Johannesburg` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.6, + y: 10.5, + x: -66.9, + country: `Venezuela`, + name: `Caracas` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.49, + y: 30.57, + x: 114.28, + country: `China`, + name: `Wuhan` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.43, + y: 23.71, + x: 90.41, + country: `Bangladesh`, + name: `Dhaka` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.43, + y: 43.72, + x: -79.41, + country: `Canada`, + name: `Toronto` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.37, + y: -33.89, + x: 151.03, + country: `Australia`, + name: `Sydney` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.35, + y: 31.07, + x: 29.98, + country: `Egypt`, + name: `Alexandria` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.22, + y: 38.89, + x: -76.95, + country: `US`, + name: `Washington D.C.` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.17, + y: 41.88, + x: 12.52, + country: `Italy`, + name: `Roma` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.1, + y: 10.76, + x: 106.66, + country: `Vietnam`, + name: `Ho Chi Minh City` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.05, + y: 23.1, + x: 113.29, + country: `China`, + name: `Guangzhou` + }), + new WorldCitiesItem( + { + capital: true, + population: 3.03, + y: 38.12, + x: 23.65, + country: `Greece`, + name: `Athens` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.02, + y: 1.23, + x: 104.18, + country: `Singapore`, + name: `Singapore` + }), + new WorldCitiesItem( + { + capital: false, + population: 3.02, + y: 31.55, + x: 74.34, + country: `Pakistan`, + name: `Lahore` + }), + new WorldCitiesItem( + { + capital: true, + population: 3, + y: -4.39, + x: 15.47, + country: `Zaire`, + name: `Kinshasa` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.99, + y: 35.44, + x: 139.62, + country: `Japan`, + name: `Yokohama` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.95, + y: -19.85, + x: -43.91, + country: `Brazil`, + name: `Belo Horizonte` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.95, + y: 12.97, + x: 77.59, + country: `India`, + name: `Bangalore` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.92, + y: 45.54, + x: -73.65, + country: `Canada`, + name: `Montreal` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.9, + y: 50.45, + x: 30.5, + country: `Ukraine`, + name: `Kiev` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.88, + y: 40.83, + x: 14.27, + country: `Italy`, + name: `Napoli` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.83, + y: -37.85, + x: 145.08, + country: `Australia`, + name: `Melbourne` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.83, + y: 25.83, + x: -80.27, + country: `US`, + name: `Miami` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.8, + y: 16.87, + x: 96.12, + country: `Burma`, + name: `Rangoon` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.77, + y: 53.48, + x: -2.26, + country: `UK`, + name: `Manchester` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.75, + y: 17.39, + x: 78.49, + country: `India`, + name: `Hyderabad` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.75, + y: 29.77, + x: -95.41, + country: `US`, + name: `Houston` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.73, + y: 32.76, + x: -96.66, + country: `US`, + name: `Dallas` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.67, + y: 45.76, + x: 126.62, + country: `China`, + name: `Harbin` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.67, + y: 52.49, + x: -1.86, + country: `UK`, + name: `Birmingham` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.63, + y: -8.09, + x: -34.91, + country: `Brazil`, + name: `Recife` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.6, + y: -30.04, + x: -51.21, + country: `Brazil`, + name: `Porto Alegre` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.56, + y: 47.51, + x: 19.09, + country: `Hungary`, + name: `Budapest` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.55, + y: 36.6, + x: 2.99, + country: `Algeria`, + name: `Algiers` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.48, + y: 33.54, + x: -7.53, + country: `Morocco`, + name: `Casablanca` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.45, + y: 29.54, + x: 106.52, + country: `China`, + name: `Chongqing` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.4, + y: 23.04, + x: 72.57, + country: `India`, + name: `Ahmadabad` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.4, + y: 39.93, + x: 32.85, + country: `Turkey`, + name: `Ankara` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.38, + y: 50.84, + x: 4.37, + country: `Belgium`, + name: `Bruxelles` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.33, + y: 41.25, + x: 69.35, + country: `Uzbekistan`, + name: `Toshkent` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.33, + y: 20.67, + x: -103.34, + country: `Mexico`, + name: `Guadalajara` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.32, + y: 52.24, + x: 21.01, + country: `Poland`, + name: `Warsaw` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.29, + y: 32.05, + x: 118.77, + country: `China`, + name: `Nanjing` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.25, + y: 38.73, + x: -9.13, + country: `Portugal`, + name: `Lisboa` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.25, + y: 44.43, + x: 26.12, + country: `Romania`, + name: `Bucharest` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.23, + y: 53.57, + x: 10.03, + country: `Germany`, + name: `Hamburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.22, + y: 40.5, + x: -80, + country: `US`, + name: `Pittsburgh` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.22, + y: 41.39, + x: -81.73, + country: `US`, + name: `Cleveland` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.21, + y: 35.86, + x: 128.59, + country: `South Korea`, + name: `Taegu` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.2, + y: 38.64, + x: -90.34, + country: `US`, + name: `St. Louis` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.2, + y: 48.04, + x: 37.74, + country: `Ukraine`, + name: `Donets'k` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.13, + y: 23.05, + x: -82.42, + country: `Cuba`, + name: `Havana` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.1, + y: 32.76, + x: -117.13, + country: `US`, + name: `San Diego` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.1, + y: 6.24, + x: -75.59, + country: `Colombia`, + name: `Medellin` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.08, + y: 47.59, + x: -122.32, + country: `US`, + name: `Seattle` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.05, + y: -12.6, + x: -38.48, + country: `Brazil`, + name: `Salvador` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.05, + y: 7.02, + x: 80.09, + country: `Sri Lanka`, + name: `Colombo` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.05, + y: 34.27, + x: 108.88, + country: `China`, + name: `Xian` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.03, + y: -7.4, + x: 112.68, + country: `Indonesia`, + name: `Surabaja` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.02, + y: 25.68, + x: -100.32, + country: `Mexico`, + name: `Monterrey` + }), + new WorldCitiesItem( + { + capital: true, + population: 2.02, + y: 40.32, + x: 49.82, + country: `Azerbaijan`, + name: `Baku` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.02, + y: 56.29, + x: 43.94, + country: `Russia`, + name: `Nizhniy Novgorod` + }), + new WorldCitiesItem( + { + capital: false, + population: 2.01, + y: 44.92, + x: -93.31, + country: `US`, + name: `Minneapolis` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.96, + y: 33.8, + x: -84.35, + country: `US`, + name: `Atlanta` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.96, + y: 39.32, + x: -76.62, + country: `US`, + name: `Baltimore` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.96, + y: 48.14, + x: 11.54, + country: `Germany`, + name: `Munich` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.95, + y: 5.32, + x: -4.02, + country: `Ivory Coast`, + name: `Abidjan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.94, + y: 49.99, + x: 36.21, + country: `Ukraine`, + name: `Kharkov` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.9, + y: 43.06, + x: 141.35, + country: `Japan`, + name: `Sapporo` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.88, + y: 26.46, + x: 80.32, + country: `India`, + name: `Kanpur` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.88, + y: 48.2, + x: 16.32, + country: `Austria`, + name: `Vienna` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.87, + y: 30.47, + x: 30.85, + country: `Egypt`, + name: `Giza` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.86, + y: 52.37, + x: 4.89, + country: `Netherlands`, + name: `Amsterdam` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.85, + y: 33.52, + x: 36.31, + country: `Syria`, + name: `Damascus` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.85, + y: 50.13, + x: 8.67, + country: `Germany`, + name: `Frankfurt am Main` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.84, + y: 22.67, + x: 120.34, + country: `Taiwan`, + name: `Kao-Hsiung` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.82, + y: -3.78, + x: -38.59, + country: `Brazil`, + name: `Fortaleza` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.81, + y: 30.67, + x: 104.07, + country: `China`, + name: `Chengdu` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.8, + y: -6.91, + x: 107.61, + country: `Indonesia`, + name: `Bandung` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.8, + y: 55.86, + x: -4.27, + country: `UK`, + name: `Glasgow` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.79, + y: -33.8, + x: 18.69, + country: `South Africa`, + name: `Cape Town` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.77, + y: 18.4, + x: -66.08, + country: `Puerto Rico`, + name: `San Juan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.77, + y: 18.54, + x: 73.85, + country: `India`, + name: `Pune` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.76, + y: 50.94, + x: 6.93, + country: `Germany`, + name: `Koln` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.75, + y: 33.31, + x: 130.32, + country: `Japan`, + name: `Fukuoka` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.74, + y: 43.88, + x: 125.31, + country: `China`, + name: `Changchung` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.7, + y: -25.43, + x: -49.28, + country: `Brazil`, + name: `Curitiba` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.69, + y: 55.72, + x: 12.55, + country: `Denmark`, + name: `Kobenhavn` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.68, + y: 33.78, + x: 35.66, + country: `Lebanon`, + name: `Beirut` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.68, + y: 39.03, + x: 121.6, + country: `China`, + name: `Dalian` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.67, + y: 31.92, + x: 34.86, + country: `Israel`, + name: `Tel Aviv-Yafo` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.66, + y: 37.89, + x: 112.55, + country: `China`, + name: `Taiyuan` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.65, + y: 53.9, + x: 27.58, + country: `Belarus`, + name: `Minsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.62, + y: 56.85, + x: 60.61, + country: `Russia`, + name: `Yekaterinburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.6, + y: 48.42, + x: 35.14, + country: `Ukraine`, + name: `Dnepropetrovsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.6, + y: 37.59, + x: 126.77, + country: `South Korea`, + name: `Inch\`on` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.6, + y: 39.03, + x: 125.76, + country: `North Korea`, + name: `Pyongyang` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.6, + y: 55.03, + x: 82.94, + country: `Russia`, + name: `Novosibirsk` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.57, + y: -15.79, + x: -47.9, + country: `Brazil`, + name: `Brasilia` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.57, + y: 34.38, + x: 132.44, + country: `Japan`, + name: `Hiroshima` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.55, + y: -34.92, + x: -56.17, + country: `Uruguay`, + name: `Montevideo` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.55, + y: 38.44, + x: 27.21, + country: `Turkey`, + name: `Izmir` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.55, + y: -29.84, + x: 30.94, + country: `South Africa`, + name: `Durban` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.55, + y: 45.07, + x: 7.67, + country: `Italy`, + name: `Torino` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.54, + y: 53.81, + x: -1.5, + country: `UK`, + name: `Leeds` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.52, + y: 53.42, + x: -2.77, + country: `UK`, + name: `Liverpool` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.52, + y: 33.68, + x: 130.8, + country: `Japan`, + name: `Kita Kyushu` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.5, + y: 9.03, + x: 38.7, + country: `Ethiopia`, + name: `Adis Abeba` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.5, + y: 21.03, + x: 105.82, + country: `Vietnam`, + name: `Hanoi` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.5, + y: 53.14, + x: 50.1, + country: `Russia`, + name: `Samara` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.48, + y: 3.15, + x: 101.71, + country: `Malaysia`, + name: `Kuala Lumpur` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.48, + y: 33.51, + x: -112.11, + country: `US`, + name: `Phoenix` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.48, + y: 35.01, + x: 135.75, + country: `Japan`, + name: `Kyoto` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.48, + y: 39.15, + x: -84.48, + country: `US`, + name: `Cincinnati` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.48, + y: 42.9, + x: -78.85, + country: `US`, + name: `Buffalo` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.46, + y: -9, + x: 13.46, + country: `Angola`, + name: `Luanda` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.46, + y: 36.29, + x: 59.6, + country: `Iran`, + name: `Mashhad` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.46, + y: 36.66, + x: 116.97, + country: `China`, + name: `Jinan` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.46, + y: 41.72, + x: 44.78, + country: `Georgia`, + name: `Tbilisi` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.45, + y: 59.24, + x: 18.08, + country: `Sweden`, + name: `Stockholm` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.43, + y: 14.63, + x: -16.85, + country: `Senegal`, + name: `Dakar` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.41, + y: 39.75, + x: -105.07, + country: `US`, + name: `Denver` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.41, + y: 34.66, + x: 135.18, + country: `Japan`, + name: `Kobe` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.4, + y: 3.46, + x: -76.52, + country: `Colombia`, + name: `Cali` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.4, + y: 14.62, + x: -90.52, + country: `Guatemala`, + name: `Guatemala` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.4, + y: 44.8, + x: 20.41, + country: `Serbia`, + name: `Belgrade` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.39, + y: 22.48, + x: 91.83, + country: `Bangladesh`, + name: `Chittagong` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.38, + y: 49.27, + x: -122.96, + country: `Canada`, + name: `Vancouver` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.38, + y: 29.19, + x: 48, + country: `Kuwait`, + name: `Al Kuwayt` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.38, + y: 43.07, + x: -87.99, + country: `US`, + name: `Milwaukee` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.37, + y: 3.59, + x: 98.68, + country: `Indonesia`, + name: `Medan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.36, + y: 48.71, + x: 44.48, + country: `Russia`, + name: `Volgograd` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.33, + y: 14.65, + x: 121.03, + country: `Philippines`, + name: `Quezon City` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.32, + y: 50.11, + x: 14.46, + country: `Czechia`, + name: `Prague` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.32, + y: 55.15, + x: 61.39, + country: `Russia`, + name: `Chelyabinsk` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.31, + y: 18.5, + x: -69.91, + country: `Dominican Rp`, + name: `Santo Domingo` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.31, + y: 40.21, + x: 44.53, + country: `Armenia`, + name: `Yerevan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.3, + y: 21.62, + x: 39.37, + country: `Saudi Arabia`, + name: `Jiddah` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.3, + y: -6.82, + x: 39.25, + country: `Tanzania`, + name: `Dar es Salaam` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.3, + y: 21.16, + x: 79.09, + country: `India`, + name: `Nagpur` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.3, + y: 41.12, + x: 122.98, + country: `China`, + name: `Anshan` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.29, + y: -1.17, + x: 36.83, + country: `Kenya`, + name: `Nairobi` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.28, + y: 25.05, + x: 102.7, + country: `China`, + name: `Kunming` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 36.15, + x: 120.43, + country: `China`, + name: `Qingdao` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 30.25, + x: 120.17, + country: `China`, + name: `Hangzhou` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 36.11, + x: 103.6, + country: `China`, + name: `Lanzhou` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 38.99, + x: -94.63, + country: `US`, + name: `Kansas City` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 39.47, + x: -0.37, + country: `Spain`, + name: `Valencia` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 41.86, + x: 123.91, + country: `China`, + name: `Fushun` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.27, + y: 45.75, + x: 4.86, + country: `France`, + name: `Lyon` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.25, + y: 24.65, + x: 46.77, + country: `Saudi Arabia`, + name: `Ar Riyad` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.25, + y: -2.2, + x: -79.91, + country: `Ecuador`, + name: `Guayaquil` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.25, + y: 5.56, + x: -0.2, + country: `Ghana`, + name: `Accra` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.25, + y: 31.95, + x: 35.93, + country: `Jordan`, + name: `Amman` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.23, + y: 41.15, + x: -8.49, + country: `Portugal`, + name: `Porto` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.23, + y: 43.3, + x: 5.38, + country: `France`, + name: `Marseille` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.23, + y: 45.44, + x: -122.64, + country: `US`, + name: `Portland` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.23, + y: 36.82, + x: 10.17, + country: `Tunisia`, + name: `Tunis` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.22, + y: 36.22, + x: 37.16, + country: `Syria`, + name: `Aleppo` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.21, + y: 42.71, + x: 23.33, + country: `Bulgaria`, + name: `Sofia` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.2, + y: -1.61, + x: -48.32, + country: `Brazil`, + name: `Belem` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.19, + y: 28.2, + x: 112.97, + country: `China`, + name: `Changsha` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.19, + y: 29.96, + x: -90.1, + country: `US`, + name: `New Orleans` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.19, + y: 38.08, + x: 114.56, + country: `China`, + name: `Shijiazhuang` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.19, + y: 43.26, + x: 76.91, + country: `Kazakhstan`, + name: `Almaty` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.19, + y: 46.57, + x: 30.68, + country: `Ukraine`, + name: `Odessa` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.18, + y: 34.53, + x: 69.14, + country: `Afghanistan`, + name: `Kabul` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.18, + y: 55.06, + x: 73.25, + country: `Russia`, + name: `Omsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.17, + y: 34.76, + x: 113.64, + country: `China`, + name: `Zhengzhou` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.17, + y: 43.85, + x: 126.57, + country: `China`, + name: `Jilin` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.17, + y: 47.23, + x: 39.69, + country: `Russia`, + name: `Rostov-na-Donu` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.16, + y: 58, + x: 56.23, + country: `Russia`, + name: `Perm'` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.15, + y: -27.45, + x: 153.03, + country: `Australia`, + name: `Brisbane` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.15, + y: 47.34, + x: 123.96, + country: `China`, + name: `Qiqihar` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.14, + y: 11.01, + x: -74.68, + country: `Colombia`, + name: `Barranquilla` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.14, + y: 7.38, + x: 3.9, + country: `Nigeria`, + name: `Ibadan` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.14, + y: 53.34, + x: -6.26, + country: `Ireland`, + name: `Dublin` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.14, + y: 55.73, + x: 49.15, + country: `Russia`, + name: `Kazan'` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.12, + y: 40.65, + x: 109.98, + country: `China`, + name: `Baotou` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.11, + y: 51.93, + x: 4.49, + country: `Netherlands`, + name: `Rotterdam` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.1, + y: 31.41, + x: 73.08, + country: `Pakistan`, + name: `Faisalabad` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.1, + y: 51.21, + x: 4.43, + country: `Belgium`, + name: `Antwerp` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.1, + y: 54.82, + x: 56.1, + country: `Russia`, + name: `Ufa` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.09, + y: 35.5, + x: 139.73, + country: `Japan`, + name: `Kawasaki` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.07, + y: -31.32, + x: -64.18, + country: `Argentina`, + name: `Cordoba` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.07, + y: -25.96, + x: 32.57, + country: `Mozambique`, + name: `Maputo` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.06, + y: -23.95, + x: -46.31, + country: `Brazil`, + name: `Santos` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.06, + y: 26.85, + x: 80.92, + country: `India`, + name: `Lucknow` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.06, + y: 39.62, + x: 118.18, + country: `China`, + name: `Tangshan` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.06, + y: 51.78, + x: 19.48, + country: `Poland`, + name: `Lodz` + }), + new WorldCitiesItem( + { + capital: true, + population: 1.05, + y: -0.23, + x: -78.52, + country: `Ecuador`, + name: `Quito` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.05, + y: 19.05, + x: -98.19, + country: `Mexico`, + name: `Puebla de Zaragoza` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.04, + y: 31.78, + x: -106.45, + country: `US`, + name: `El Paso` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.04, + y: -32.94, + x: -60.66, + country: `Argentina`, + name: `Rosario` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.04, + y: 43.78, + x: 87.59, + country: `China`, + name: `Urumqi` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.03, + y: 4.14, + x: 9.71, + country: `Cameroon`, + name: `Douala` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.03, + y: 28.67, + x: 115.89, + country: `China`, + name: `Nanchang` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.02, + y: -7.03, + x: 110.44, + country: `Indonesia`, + name: `Semarang` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.02, + y: 25.61, + x: 85.14, + country: `India`, + name: `Patna` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.02, + y: 26.91, + x: 75.8, + country: `India`, + name: `Jaipur` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.02, + y: 50.63, + x: 3.06, + country: `France`, + name: `Lille` + }), + new WorldCitiesItem( + { + capital: false, + population: 1.01, + y: 26.57, + x: 106.7, + country: `China`, + name: `Guiyang` + }), + new WorldCitiesItem( + { + capital: true, + population: 1, + y: 56.88, + x: 24.05, + country: `Latvia`, + name: `Riga` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.99, + y: -31.98, + x: 115.92, + country: `Australia`, + name: `Perth` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.99, + y: 32.75, + x: 13.21, + country: `Libya`, + name: `Tripoli` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.99, + y: -16.73, + x: -49.25, + country: `Brazil`, + name: `Goiania` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.99, + y: -16.5, + x: -68.15, + country: `Bolivia`, + name: `La Paz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.99, + y: 32.65, + x: 51.68, + country: `Iran`, + name: `Esfahan` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.98, + y: 33.92, + x: -6.75, + country: `Morocco`, + name: `Rabat` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.98, + y: -34.92, + x: 138.87, + country: `Australia`, + name: `Adelaide` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.98, + y: 43.28, + x: -2.97, + country: `Spain`, + name: `Bilbao` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.97, + y: 29.43, + x: -98.52, + country: `US`, + name: `San Antonio` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.97, + y: 38.08, + x: 46.29, + country: `Iran`, + name: `Tabriz` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.96, + y: -25.73, + x: 28.22, + country: `South Africa`, + name: `Pretoria` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.96, + y: 9.91, + x: 78.12, + country: `India`, + name: `Madurai` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.96, + y: 40.04, + x: -82.99, + country: `US`, + name: `Columbus` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.94, + y: 37.37, + x: -5.97, + country: `Spain`, + name: `Sevilla` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.93, + y: 25.28, + x: 82.96, + country: `India`, + name: `Benares` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.92, + y: 15.55, + x: 32.53, + country: `Sudan`, + name: `Khartoum` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.92, + y: 13.7, + x: -89.2, + country: `El Salvador`, + name: `San Salvador` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.91, + y: 54.37, + x: 18.62, + country: `Poland`, + name: `Gdansk` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.9, + y: 60.2, + x: 24.98, + country: `Finland`, + name: `Helsinki` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.89, + y: -17.83, + x: 31.02, + country: `Zimbabwe`, + name: `Harare` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.89, + y: 10.65, + x: -71.64, + country: `Venezuela`, + name: `Maracaibo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.89, + y: 26.07, + x: 119.3, + country: `China`, + name: `Fuzhou` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.88, + y: 18.53, + x: -72.34, + country: `Haiti`, + name: `Port-au-Prince` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.87, + y: 38.57, + x: -121.42, + country: `US`, + name: `Sacramento` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.85, + y: 29.63, + x: 52.57, + country: `Iran`, + name: `Shiraz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.85, + y: -36.89, + x: 174.8, + country: `New Zealand`, + name: `Auckland` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.85, + y: 35.11, + x: -90, + country: `US`, + name: `Memphis` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.84, + y: 33.61, + x: 73.04, + country: `Pakistan`, + name: `Rawalpindi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.83, + y: 36.79, + x: 118.06, + country: `China`, + name: `Zibo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.83, + y: 50.06, + x: 19.95, + country: `Poland`, + name: `Krakow` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.82, + y: 43.21, + x: -77.64, + country: `US`, + name: `Rochester` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.82, + y: 45.37, + x: -75.65, + country: `Canada`, + name: `Ottawa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.81, + y: 44.46, + x: 8.92, + country: `Italy`, + name: `Genova` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.81, + y: -3.12, + x: -60.01, + country: `Brazil`, + name: `Manaus` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.8, + y: 9.52, + x: -12.8, + country: `Guinea`, + name: `Conakry` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.8, + y: 25.38, + x: 68.37, + country: `Pakistan`, + name: `Hyderabad` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.8, + y: 36.88, + x: -76.27, + country: `US`, + name: `Norfolk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.8, + y: 53.08, + x: 8.86, + country: `Germany`, + name: `Bremen` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.79, + y: 53.57, + x: -113.27, + country: `Canada`, + name: `Edmonton` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.79, + y: -3, + x: 104.83, + country: `Indonesia`, + name: `Palembang` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.79, + y: 49.84, + x: 24.03, + country: `Ukraine`, + name: `Lvov` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.78, + y: 22.38, + x: 114.23, + country: `UK`, + name: `Kowloon` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.78, + y: 37, + x: 35.32, + country: `Turkey`, + name: `Adana` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.77, + y: 51.9, + x: 4.3, + country: `Netherlands`, + name: `The Hague` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.77, + y: 18.02, + x: -76.8, + country: `Jamaica`, + name: `Kingston` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.76, + y: 21.32, + x: -157.81, + country: `US`, + name: `Honolulu` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.75, + y: 50.62, + x: 5.57, + country: `Belgium`, + name: `Liege` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.74, + y: 34.67, + x: 112.36, + country: `China`, + name: `Luoyang` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.74, + y: 35.49, + x: -97.53, + country: `US`, + name: `Oklahoma City` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.72, + y: 38.13, + x: 13.4, + country: `Italy`, + name: `Palermo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.72, + y: 59.93, + x: 10.72, + country: `Norway`, + name: `Oslo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: 40.63, + x: 22.8, + country: `Greece`, + name: `ThessaXiki` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: 57.75, + x: 12, + country: `Sweden`, + name: `Goteborg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: -5.19, + x: 119.72, + country: `Indonesia`, + name: `Vjuag Padang` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: 24.14, + x: 120.67, + country: `Taiwan`, + name: `T\`ai-chung` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.71, + y: 53.37, + x: -1.46, + country: `UK`, + name: `Sheffield` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.7, + y: -25.22, + x: -57.67, + country: `Paraguay`, + name: `Asuncion` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.7, + y: 45.81, + x: 15.96, + country: `Croatia`, + name: `Zagreb` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.7, + y: 11.56, + x: 104.91, + country: `Cambodia`, + name: `Phnom Penh` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.7, + y: 51.35, + x: 12.4, + country: `Germany`, + name: `Leipzig` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.69, + y: 9.99, + x: 76.52, + country: `India`, + name: `Cochin` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.69, + y: -33.88, + x: 25.48, + country: `South Africa`, + name: `Port Elizabeth` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.69, + y: 54.59, + x: -5.91, + country: `UK`, + name: `Belfast` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.68, + y: -32.9, + x: -71.3, + country: `Chile`, + name: `Valparaiso` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.68, + y: -36.88, + x: -72.85, + country: `Chile`, + name: `Concepcion` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.68, + y: 12.15, + x: -86.27, + country: `Nicaragua`, + name: `Managua` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.68, + y: 40.69, + x: -111.89, + country: `US`, + name: `Salt Lake City` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.67, + y: 47, + x: 28.83, + country: `Moldova`, + name: `Kishinev` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.67, + y: 9.93, + x: -84.08, + country: `Costa Rica`, + name: `San Jose` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.67, + y: 51.03, + x: -114.05, + country: `Canada`, + name: `Calgary` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.67, + y: 51.05, + x: 13.71, + country: `Germany`, + name: `Dresden` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.66, + y: 23.17, + x: 120.23, + country: `Taiwan`, + name: `T\`ai-nan` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.66, + y: -18.87, + x: 47.5, + country: `Madagascar`, + name: `Antananarivo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.65, + y: 43.13, + x: 131.96, + country: `Russia`, + name: `Vladivostok` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.65, + y: -32.9, + x: -68.83, + country: `Argentina`, + name: `Mendoza` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.65, + y: 3.87, + x: 11.51, + country: `Cameroon`, + name: `Yaounde` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.65, + y: 12.65, + x: -7.99, + country: `Mali`, + name: `Bamako` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.65, + y: 22.84, + x: 89.56, + country: `Bangladesh`, + name: `Khulna` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.64, + y: 30.33, + x: -81.66, + country: `US`, + name: `Jacksonville` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.64, + y: 43.78, + x: 11.21, + country: `Italy`, + name: `Firenze` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.64, + y: 44.84, + x: -0.6, + country: `France`, + name: `Bordeaux` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.64, + y: 51.12, + x: 17.04, + country: `Poland`, + name: `Wroclaw` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 37.31, + x: -121.85, + country: `US`, + name: `San Jose` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.63, + y: 8.95, + x: -79.4, + country: `Panama`, + name: `Panama` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 35.75, + x: -0.52, + country: `Algeria`, + name: `Oran` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 51.5, + x: -3.15, + country: `UK`, + name: `Cardiff` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 55.88, + x: -3.3, + country: `UK`, + name: `Edinburgh` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 49.92, + x: -97.12, + country: `Canada`, + name: `Winnipeg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.63, + y: 52.32, + x: 104.25, + country: `Russia`, + name: `Irkutsk` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.62, + y: 42.88, + x: 74.77, + country: `Kyrgyzstan`, + name: `Frunze` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.62, + y: 10.18, + x: -68, + country: `Venezuela`, + name: `Valencia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.62, + y: 30.5, + x: 47.76, + country: `Iraq`, + name: `Al Basra` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.61, + y: 49.88, + x: 73.2, + country: `Kazakhstan`, + name: `Karaganda` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: 48.53, + x: 135.07, + country: `Russia`, + name: `Khabarovsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: 17.75, + x: 83.33, + country: `India`, + name: `Vishakhapatnam` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: -2.5, + x: -44.43, + country: `Brazil`, + name: `Sao Luis` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: 53.7, + x: 87.17, + country: `Russia`, + name: `Novokuznetsk` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.6, + y: 2.04, + x: 45.34, + country: `Somalia`, + name: `Muqdisho` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.6, + y: 46.8, + x: -71.24, + country: `Canada`, + name: `Quebec` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.59, + y: 28, + x: -82.59, + country: `US`, + name: `Tampa` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.59, + y: 38.63, + x: 68.9, + country: `Tajikistan`, + name: `Dushanfe` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.59, + y: -4.29, + x: 15.29, + country: `Congo`, + name: `Brazzaville` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.59, + y: 31.63, + x: 74.87, + country: `India`, + name: `Amritsar` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.58, + y: 54.69, + x: 25.28, + country: `Lithuania`, + name: `Vilnius` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.57, + y: 36.34, + x: 43.14, + country: `Iraq`, + name: `Mosul` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.57, + y: 41.65, + x: -0.88, + country: `Spain`, + name: `Zaragoza` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.57, + y: 50.73, + x: 7.1, + country: `Germany`, + name: `Bonn` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.57, + y: 51.51, + x: 7.47, + country: `Germany`, + name: `Dortmund` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.55, + y: 14.1, + x: -87.2, + country: `Honduras`, + name: `Tegucigalpa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.55, + y: 21.43, + x: 39.81, + country: `Saudi Arabia`, + name: `Mecca` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.55, + y: 47.93, + x: 106.91, + country: `Mongolia`, + name: `Ulaanbaatar` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.54, + y: -15.43, + x: 28.17, + country: `Zambia`, + name: `Lusaka` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: -11.68, + x: 27.55, + country: `Zaire`, + name: `Lumumbashi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: 11.92, + x: 8.52, + country: `Nigeria`, + name: `Kano` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: 31.15, + x: -8, + country: `Morocco`, + name: `Marrakech` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: 34.04, + x: -5, + country: `Morocco`, + name: `Fes` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.54, + y: 43.6, + x: 1.44, + country: `France`, + name: `Toulouse` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.53, + y: 15.62, + x: 32.48, + country: `Sudan`, + name: `Omdurman` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.53, + y: 8.38, + x: -12.91, + country: `Sierra Leone`, + name: `Freetown` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.53, + y: 21.98, + x: 96.08, + country: `Burma`, + name: `Mandalay` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.52, + y: 51.49, + x: 6.78, + country: `Germany`, + name: `Duisburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.51, + y: 46.25, + x: 48, + country: `Russia`, + name: `Astrakhan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.51, + y: -5.78, + x: -35.25, + country: `Brazil`, + name: `Natal` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.5, + y: 10.07, + x: -69.34, + country: `Venezuela`, + name: `Barquisimeto` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.49, + y: 5.35, + x: 100.55, + country: `Malaysia`, + name: `George Town` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.49, + y: 31.77, + x: 35.23, + country: `Israel`, + name: `Jerusalem` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.48, + y: 59.28, + x: 24.75, + country: `Estonia`, + name: `Tallinn` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.48, + y: 35.21, + x: -80.84, + country: `US`, + name: `Charlotte` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.47, + y: 6.52, + x: -10.77, + country: `Liberia`, + name: `Monrovia` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.47, + y: 4.37, + x: 18.56, + country: `Cent Af Rep`, + name: `Bangui` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.47, + y: 47.22, + x: -1.56, + country: `France`, + name: `Nantes` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.47, + y: 51.05, + x: 3.74, + country: `Belgium`, + name: `Gent` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.47, + y: 68.96, + x: 33.09, + country: `Russia`, + name: `Murmansk` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.46, + y: 0.32, + x: 32.58, + country: `Uganda`, + name: `Kampala` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.45, + y: 42, + x: 21.53, + country: `Macedonia`, + name: `Skopje` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.45, + y: 32.88, + x: 129.86, + country: `Japan`, + name: `Nagasaki` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.45, + y: -16.4, + x: -71.52, + country: `Peru`, + name: `Arequipa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.45, + y: 49.2, + x: 16.62, + country: `Czechia`, + name: `Brno` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.44, + y: 12.48, + x: -1.67, + country: `Burkina Faso`, + name: `Ouagadouou` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.44, + y: -4.02, + x: 39.67, + country: `Kenya`, + name: `Mombasa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.44, + y: 32.04, + x: 20.31, + country: `Libya`, + name: `Banghazi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.44, + y: -17.79, + x: -63.2, + country: `Bolivia`, + name: `Santa Cruz de La Sierra` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.43, + y: 48.27, + x: 17.27, + country: `Slovakia`, + name: `Bratislava` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.43, + y: 15.36, + x: 44.21, + country: `Yemen`, + name: `Sanaa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.43, + y: 22.24, + x: -97.84, + country: `Mexico`, + name: `Tampico` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.43, + y: 34.73, + x: 36.72, + country: `Syria`, + name: `Homs` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.42, + y: 45.42, + x: 12.37, + country: `Italy`, + name: `Venezia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.42, + y: 64.52, + x: 40.65, + country: `Russia`, + name: `Arkhangelsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.41, + y: -20.2, + x: 28.71, + country: `Zimbabwe`, + name: `Bulawayo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.41, + y: -33, + x: 151.91, + country: `Australia`, + name: `Newcastle` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.41, + y: 7.08, + x: 125.61, + country: `Philippines`, + name: `Davao` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.4, + y: 6.28, + x: 1.35, + country: `Togo`, + name: `Lome` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.4, + y: 13.6, + x: 2.08, + country: `Niger`, + name: `Niamey` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.4, + y: 20.82, + x: -89.55, + country: `Mexico`, + name: `Merida` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.4, + y: 37.95, + x: 58.39, + country: `Turkmenistan`, + name: `Ashkhabad` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.4, + y: 48.58, + x: 7.77, + country: `France`, + name: `Strasbourg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.39, + y: 19.01, + x: -96.08, + country: `Mexico`, + name: `Veracruz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.39, + y: 28.56, + x: -105.97, + country: `Mexico`, + name: `Chihuaha` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.39, + y: 20.86, + x: 106.68, + country: `Vietnam`, + name: `Haiphong` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.38, + y: 18, + x: 102.68, + country: `Laos`, + name: `Vientiane` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.37, + y: 10.64, + x: -61.49, + country: `Trinidad`, + name: `Port of Spain` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.37, + y: 39.66, + x: 66.95, + country: `Uzbekistan`, + name: `Samarkand` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.35, + y: -41.21, + x: 175.14, + country: `New Zealand`, + name: `Wellington` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.35, + y: -7.93, + x: -79, + country: `Peru`, + name: `Trujillo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.34, + y: 43.87, + x: 18.43, + country: `Bosnia`, + name: `Sarajevo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.34, + y: 48.3, + x: 14.29, + country: `Austria`, + name: `Linz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.33, + y: 40.72, + x: -74.2, + country: `US`, + name: `Newark` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.33, + y: 29.96, + x: 32.56, + country: `Egypt`, + name: `Suez` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.33, + y: 47.06, + x: 15.43, + country: `Austria`, + name: `Graz` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.32, + y: 12.86, + x: 45.18, + country: `Yemen`, + name: `Aden` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.32, + y: -33.03, + x: 27.9, + country: `South Africa`, + name: `East Xdon` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.32, + y: -43.55, + x: 172.68, + country: `New Zealand`, + name: `Christchurch` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.32, + y: 27.71, + x: 85.31, + country: `Nepal`, + name: `Kathmandu` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.31, + y: 12.95, + x: 75.16, + country: `India`, + name: `Mangalore` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.31, + y: 34.75, + x: 10.76, + country: `Tunisia`, + name: `Sfax` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.31, + y: 25.2, + x: 51.5, + country: `Qatar`, + name: `Doha` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.3, + y: -0.92, + x: 100.48, + country: `Indonesia`, + name: `Padang` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.3, + y: 44.63, + x: -63.58, + country: `Canada`, + name: `Halifax` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.3, + y: 16.97, + x: -99.93, + country: `Mexico`, + name: `ACapulco` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.3, + y: 12.1, + x: 15.24, + country: `Chad`, + name: `N'Djamena` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.3, + y: 39.23, + x: 9.11, + country: `Italy`, + name: `Cagliari` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.3, + y: 46.95, + x: 7.45, + country: `Switzerland`, + name: `Bern` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: -19.77, + x: 35.02, + country: `Mozambique`, + name: `Beira` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: -4.64, + x: 12.06, + country: `Congo`, + name: `Pointe Noire` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: 40.75, + x: 140.67, + country: `Japan`, + name: `Aomori` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: 24.43, + x: 39.7, + country: `Saudi Arabia`, + name: `Al Madinah` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: -31.62, + x: -60.7, + country: `Argentina`, + name: `Santa Fe` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.29, + y: -5.89, + x: 22.4, + country: `Zaire`, + name: `Kananga` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.28, + y: 18.03, + x: -15.78, + country: `Mauritania`, + name: `Nouakchott` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.28, + y: 15.33, + x: 38.97, + country: `Eritrea`, + name: `Asmara` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.28, + y: 29.6, + x: 60.83, + country: `Iran`, + name: `Zahedan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.28, + y: -6.62, + x: -79.83, + country: `Peru`, + name: `Chiclayo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.28, + y: -15.55, + x: -56.05, + country: `Brazil`, + name: `Cuiaba` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.28, + y: 0.52, + x: 25.2, + country: `Zaire`, + name: `Kisangani` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.27, + y: 53.2, + x: 158.72, + country: `Russia`, + name: `Petropavloski-Kamchatskiy` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.27, + y: -3.27, + x: 29.53, + country: `Burundi`, + name: `Bujumbura` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.27, + y: -35.35, + x: 149.04, + country: `Australia`, + name: `Canberra` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.27, + y: 28.57, + x: 77.22, + country: `India`, + name: `New Delhi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.26, + y: 49.32, + x: 0.22, + country: `France`, + name: `Le Havre` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.26, + y: 48.65, + x: -123.57, + country: `Canada`, + name: `Victoria` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.26, + y: 11.88, + x: 13.26, + country: `Niger`, + name: `Maiduguri` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.26, + y: -12.04, + x: -76.84, + country: `Peru`, + name: `Callao` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.25, + y: -7.33, + x: 19, + country: `Zaire`, + name: `Kahemba` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.25, + y: 6.45, + x: 7.49, + country: `Nigeria`, + name: `Enugu` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.25, + y: 39.9, + x: 41.29, + country: `Turkey`, + name: `Erzurum` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.24, + y: 24.24, + x: 54.62, + country: `UAE`, + name: `Abu Zaby` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.24, + y: 5.93, + x: -55.23, + country: `SuriName`, + name: `Paramaribo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.24, + y: -0.5, + x: 9.49, + country: `Gabon`, + name: `Libreville` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.24, + y: 60.35, + x: 5.49, + country: `Norway`, + name: `Bergen` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.24, + y: 41.32, + x: 36.37, + country: `Turkey`, + name: `Samsun` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.24, + y: 45.7, + x: 13.93, + country: `Italy`, + name: `Trieste` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.23, + y: -13.92, + x: 33.82, + country: `Malawi`, + name: `LiXgwe` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.23, + y: 31.97, + x: 54.45, + country: `Iran`, + name: `Yazd` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.23, + y: -29.15, + x: 26.26, + country: `South Africa`, + name: `Bloemfontein` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.23, + y: -2.46, + x: -54.61, + country: `Brazil`, + name: `Santarem` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.23, + y: 46.07, + x: 14.64, + country: `Slovenia`, + name: `Ljubljana` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: 1.42, + x: 124.88, + country: `Indonesia`, + name: `Manado` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: -8.93, + x: -78.45, + country: `Peru`, + name: `Chimbote` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: -27.4, + x: -58.9, + country: `Argentina`, + name: `Resistencia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: 47.8, + x: 13.09, + country: `Austria`, + name: `Salzburg` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.22, + y: -38.73, + x: -62.27, + country: `Argentina`, + name: `Bahia Blanca` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.21, + y: -1.21, + x: 116.86, + country: `Indonesia`, + name: `Balikpapan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.21, + y: 19.62, + x: 37.22, + country: `Sudan`, + name: `Bur Sudan` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.21, + y: 41.33, + x: 19.83, + country: `Albania`, + name: `Tirane` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 7.58, + x: -72.01, + country: `Venezuela`, + name: `San Cristobal` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 34.34, + x: 36.01, + country: `Lebanon`, + name: `Tripoli` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 31.6, + x: 65.5, + country: `Afghanistan`, + name: `Qandahar` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 23.36, + x: -106.27, + country: `Mexico`, + name: `Mazatlan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: -12.73, + x: 15.78, + country: `Angola`, + name: `Huambo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: -8.75, + x: -63.9, + country: `Brazil`, + name: `Porto Velho` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.2, + y: 52.11, + x: -106.63, + country: `Canada`, + name: `Saskatoon` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.2, + y: 33.72, + x: 73.06, + country: `Pakistan`, + name: `Islamabad` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.19, + y: 6.77, + x: -58.17, + country: `Guyana`, + name: `Georgetown` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.19, + y: 24.08, + x: 32.95, + country: `Egypt`, + name: `Aswan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.19, + y: 62.01, + x: 129.83, + country: `Russia`, + name: `Yakutsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.19, + y: 50.41, + x: -104.65, + country: `Canada`, + name: `Regina` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: 61.19, + x: -149.17, + country: `US`, + name: `Anchorage` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: -23.83, + x: -70.23, + country: `Chile`, + name: `Antofagasta` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: -13.6, + x: -71.86, + country: `Peru`, + name: `Cuzco` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.18, + y: -2.12, + x: 29.99, + country: `Rwanda`, + name: `Kigali` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.18, + y: 35.17, + x: 33.39, + country: `Cyprus`, + name: `Nicosia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: -3.75, + x: -73.19, + country: `Peru`, + name: `Iquitos` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.18, + y: 47.27, + x: 11.35, + country: `Austria`, + name: `Innsbruck` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.17, + y: 69.33, + x: 88.1, + country: `Russia`, + name: `Noril\`sk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.17, + y: -43, + x: 147.5, + country: `Australia`, + name: `Hobart` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.17, + y: 50.33, + x: 110.75, + country: `Russia`, + name: `Chatanga` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.17, + y: 16.46, + x: 107.7, + country: `Vietnam`, + name: `Hue` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.16, + y: 6.6, + x: 2.63, + country: `Benin`, + name: `Porto Novo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.16, + y: 34.46, + x: 62.21, + country: `Afghanistan`, + name: `Herat` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: 16.92, + x: -96.94, + country: `Mexico`, + name: `Oaxaca` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.15, + y: -9.55, + x: 147.41, + country: `Papua N Guin`, + name: `Port Moresby` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: 38.14, + x: 21.88, + country: `Greece`, + name: `Patras` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: 39.48, + x: 76, + country: `China`, + name: `Kashi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: -12.72, + x: 13.46, + country: `Angola`, + name: `Benguela` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.15, + y: 59.57, + x: 150.78, + country: `Russia`, + name: `Magadan` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.14, + y: 64.31, + x: -21.34, + country: `Iceland`, + name: `Reykjavik` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.14, + y: 55.57, + x: 9.9, + country: `Denmark`, + name: `Odense` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.14, + y: 13.18, + x: 30.16, + country: `Sudan`, + name: `El Obeid` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.14, + y: -28.66, + x: 24.83, + country: `South Africa`, + name: `Kimberley` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.14, + y: -5.81, + x: 13.45, + country: `Zaire`, + name: `Matadi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.13, + y: 0.05, + x: 18.46, + country: `Zaire`, + name: `Mbandaka` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.13, + y: 49.74, + x: 6.27, + country: `Luxembourg`, + name: `Luxembourg` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.12, + y: -22.57, + x: 17.1, + country: `Namibia`, + name: `Windhoek` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.12, + y: 67.8, + x: 64.33, + country: `Russia`, + name: `Vorkuta` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.12, + y: 45.34, + x: -65.65, + country: `Canada`, + name: `Saint John` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.12, + y: -0.82, + x: 9.15, + country: `Gabon`, + name: `Port Gentil` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.12, + y: 11.5, + x: 43.1, + country: `Djibouti`, + name: `Djibouti` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.11, + y: -20.26, + x: -69.91, + country: `Chile`, + name: `Iquique` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.11, + y: 11.91, + x: -15.65, + country: `GuineaBissau`, + name: `Bissau` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.11, + y: -3.39, + x: 129.31, + country: `Indonesia`, + name: `Ambon` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.11, + y: -45.86, + x: 170.5, + country: `New Zealand`, + name: `Dunedin` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.11, + y: -19.3, + x: 146.83, + country: `Australia`, + name: `Townsville` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.11, + y: -29.26, + x: 27.89, + country: `Lesotho`, + name: `Maseru` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.1, + y: 46.92, + x: -122.88, + country: `US`, + name: `Olympia` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.1, + y: 13.45, + x: -16.49, + country: `Gambia`, + name: `Banjul` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.1, + y: -45.83, + x: -67.5, + country: `Argentina`, + name: `Comodoro Rivadavia` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.1, + y: -53.15, + x: -70.8, + country: `Chile`, + name: `Punte Arenas` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.1, + y: -18.23, + x: 49.41, + country: `Madagascar`, + name: `Toamasina` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.1, + y: -24.66, + x: 25.79, + country: `Botswana`, + name: `Gaborone` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.09, + y: 15.95, + x: -16.3, + country: `Senegal`, + name: `Saint Louis` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.09, + y: 27, + x: -13.18, + country: `W Sahara`, + name: `Laayoune` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.09, + y: -19.04, + x: -65.26, + country: `Bolivia`, + name: `Sucre` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.08, + y: -31.31, + x: -57.71, + country: `Uruguay`, + name: `Salto` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.08, + y: 42.5, + x: 19.4, + country: `Montenegro`, + name: `Podgorica` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.08, + y: -41.48, + x: -73, + country: `Chile`, + name: `Puerto Montt` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.08, + y: 29.65, + x: 91.13, + country: `China`, + name: `Lhasa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.07, + y: 61.15, + x: 47, + country: `Russia`, + name: `Kotlas` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.07, + y: -12.7, + x: 130.99, + country: `Australia`, + name: `Darwin` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.07, + y: 1.5, + x: 110.43, + country: `Malaysia`, + name: `Kuching` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.06, + y: -23.29, + x: 44.02, + country: `Madagascar`, + name: `Toliara` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.06, + y: -31, + x: -71.02, + country: `Chile`, + name: `Coquimbo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.06, + y: 4.93, + x: 114.97, + country: `Brunei`, + name: `Bandar Seri Begawan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.06, + y: -17.83, + x: 25.88, + country: `Zambia`, + name: `Livingstone` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.06, + y: -23.43, + x: 150.48, + country: `Australia`, + name: `Rockhampton` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.05, + y: 23.52, + x: 58.63, + country: `Oman`, + name: `Masqat` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: -4.95, + x: 30, + country: `Tanzania`, + name: `Kigoma` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: 16.96, + x: 7.98, + country: `Niger`, + name: `Agadez` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: -10.26, + x: 40.18, + country: `Tanzania`, + name: `Mtwara` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: -46.41, + x: 168.45, + country: `New Zealand`, + name: `Invercargill` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.05, + y: -6.18, + x: 35.75, + country: `Tanzania`, + name: `Dodoma` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.04, + y: 64.84, + x: -147.65, + country: `US`, + name: `Fairbanks` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.04, + y: 19.71, + x: -155.07, + country: `US`, + name: `Hilo` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.04, + y: 4.92, + x: -52.4, + country: `Fr Guiana`, + name: `Cayenne` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.04, + y: -26.3, + x: 31.19, + country: `Swaziland`, + name: `Mbabne` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.04, + y: -16.85, + x: 145.71, + country: `Australia`, + name: `Cairns` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.03, + y: 3.64, + x: 8.82, + country: `Eq Guinea`, + name: `Malabo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.03, + y: 50.28, + x: -66.4, + country: `Canada`, + name: `Sept-Iles` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.03, + y: -41.3, + x: 173.27, + country: `New Zealand`, + name: `Nelson` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.03, + y: 16.76, + x: -3.01, + country: `Mali`, + name: `Tombouctoo` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 58.39, + x: -134.13, + country: `US`, + name: `Juneau` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: -23.1, + x: 14.62, + country: `Namibia`, + name: `Walvis Bay` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 54.42, + x: -130.05, + country: `Canada`, + name: `Prince Rupert` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 20.9, + x: -16.83, + country: `Mauritania`, + name: `Nouadnibou` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 27.2, + x: 2.53, + country: `Algeria`, + name: `In Salah` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: -32.04, + x: 115.93, + country: `Australia`, + name: `Fremantle` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.02, + y: 68.35, + x: 17.3, + country: `Norway`, + name: `Narvik` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 62.52, + x: -114.06, + country: `Canada`, + name: `Yellowknife` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.01, + y: 17.12, + x: -88.8, + country: `Belize`, + name: `Belmopan` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 70.39, + x: 23.91, + country: `Norway`, + name: `Hammerfest` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.01, + y: 64.27, + x: -51.58, + country: `Greenland`, + name: `Godthab` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 60.65, + x: -135.01, + country: `Canada`, + name: `Whitehorse` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 59.33, + x: 143.25, + country: `Russia`, + name: `Okhotsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 52.05, + x: 113.58, + country: `Russia`, + name: `Chita` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 55.88, + x: 37.75, + country: `Russia`, + name: `Druzba` + }), + new WorldCitiesItem( + { + capital: false, + population: 0.01, + y: 53.31, + x: -60.55, + country: `Canada`, + name: `Goose Bay` + }), + new WorldCitiesItem( + { + capital: true, + population: 0.01, + y: 27.44, + x: 89.67, + country: `Bhutan`, + name: `Thimbu` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 78.2, + x: 15.66, + country: `Norway`, + name: `Xgyearbyen` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 30.14, + x: 9.82, + country: `Libya`, + name: `Ghadamis` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 71.7, + x: 128.75, + country: `Russia`, + name: `Tiksi` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 77.67, + x: -69, + country: `Greenland`, + name: `Thule` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 22.83, + x: 5.55, + country: `Algeria`, + name: `Tamanrasset` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 60.12, + x: -149.45, + country: `US`, + name: `Seward` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 70.53, + x: -23, + country: `Greenland`, + name: `Scoresbyund` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 66.57, + x: 66.58, + country: `Russia`, + name: `Salekhard` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 64.59, + x: -165.27, + country: `US`, + name: `Nome` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 68.27, + x: -133.67, + country: `Canada`, + name: `Inuvik` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 67.35, + x: 86.55, + country: `Russia`, + name: `Igarka` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 69.38, + x: -53.63, + country: `Greenland`, + name: `Godhavn` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 58.71, + x: -94.18, + country: `Canada`, + name: `Churchill` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 2.75, + x: -60.5, + country: `Brazil`, + name: `Boa Vista` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: -15.75, + x: 133.22, + country: `Australia`, + name: `Birdum` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 65.67, + x: -37.31, + country: `Greenland`, + name: `Angmagssalik` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 64.4, + x: 177.13, + country: `Russia`, + name: `Anadyr` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 47.81, + x: 97, + country: `Mongolia`, + name: `Uliastay` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: -15.05, + x: 40.7, + country: `Mozambique`, + name: `Mocambique` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: -51.71, + x: -69.41, + country: `Argentina`, + name: `Rio Gallegos` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 27.7, + x: -8.16, + country: `Algeria`, + name: `Tindouf` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 25.91, + x: 13.91, + country: `Libya`, + name: `Murzuq` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 21.76, + x: 31.28, + country: `Sudan`, + name: `Wadi Halfa` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: -23.63, + x: 133.93, + country: `Australia`, + name: `Alice Springs` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 46.96, + x: 142.75, + country: `Russia`, + name: `Yuzhno-Sakhalinsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 50.08, + x: 45.53, + country: `Russia`, + name: `Nikolayevsk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 67.58, + x: 133.41, + country: `Russia`, + name: `Verkhoyansk` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 54.86, + x: -67.01, + country: `Canada`, + name: `Schefferville` + }), + new WorldCitiesItem( + { + capital: false, + population: 0, + y: 51.33, + x: -80.73, + country: `Canada`, + name: `Moosonee` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/dashboard-tile/map-dashboard/src/index.css b/samples/charts/dashboard-tile/map-dashboard/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/dashboard-tile/map-dashboard/src/index.ts b/samples/charts/dashboard-tile/map-dashboard/src/index.ts new file mode 100644 index 0000000000..53a2e79d21 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/src/index.ts @@ -0,0 +1,44 @@ +import { IgcDashboardTileModule, IgcDataChartDashboardTileModule, IgcGeographicMapDashboardTileModule, IgcLinearGaugeDashboardTileModule, IgcPieChartDashboardTileModule, IgcRadialGaugeDashboardTileModule } from 'igniteui-webcomponents-dashboards'; +import { IgcDashboardTileComponent } from 'igniteui-webcomponents-dashboards'; +import { WorldCitiesItem, WorldCities } from './WorldCities'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcDashboardTileModule, + IgcDataChartDashboardTileModule, + IgcGeographicMapDashboardTileModule, + IgcLinearGaugeDashboardTileModule, + IgcPieChartDashboardTileModule, + IgcRadialGaugeDashboardTileModule +); + +export class Sample { + + private dashboard: IgcDashboardTileComponent + private _bind: () => void; + + constructor() { + var dashboard = this.dashboard = document.getElementById('dashboard') as IgcDashboardTileComponent; + + this._bind = () => { + dashboard.dataSource = this.worldCities; + } + this._bind(); + + } + + private _worldCities: WorldCities = null; + public get worldCities(): WorldCities { + if (this._worldCities == null) + { + this._worldCities = new WorldCities(); + } + return this._worldCities; + } + +} + +new Sample(); diff --git a/samples/charts/dashboard-tile/map-dashboard/tsconfig.json b/samples/charts/dashboard-tile/map-dashboard/tsconfig.json new file mode 100644 index 0000000000..a15284fdc2 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/tsconfig.json @@ -0,0 +1,40 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/tslint.json b/samples/charts/dashboard-tile/map-dashboard/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/tslint.json @@ -0,0 +1,54 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "member-ordering": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-trailing-whitespace": false, + "no-var": false, + "no-var-requires": false, + "no-var-keyword": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "no-console": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-var-requires": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "ordered-imports": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/charts/dashboard-tile/map-dashboard/webpack.config.js b/samples/charts/dashboard-tile/map-dashboard/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/charts/dashboard-tile/map-dashboard/webpack.config.js @@ -0,0 +1,103 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/charts/dashboard-tile/pie-dashboard/.prettierrc b/samples/charts/dashboard-tile/pie-dashboard/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/index.html b/samples/charts/dashboard-tile/pie-dashboard/index.html new file mode 100644 index 0000000000..218865596c --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/index.html @@ -0,0 +1,34 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json new file mode 100644 index 0000000000..1038979b3d --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -0,0 +1,57 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-core": "5.1.1-beta.0", + "igniteui-webcomponents-dashboards": "5.1.1-beta.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } +} diff --git a/samples/charts/dashboard-tile/pie-dashboard/sandbox.config.json b/samples/charts/dashboard-tile/pie-dashboard/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/EnergyGlobalDemand.ts b/samples/charts/dashboard-tile/pie-dashboard/src/EnergyGlobalDemand.ts new file mode 100644 index 0000000000..3d2ed388a0 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/index.css b/samples/charts/dashboard-tile/pie-dashboard/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/dashboard-tile/pie-dashboard/src/index.ts b/samples/charts/dashboard-tile/pie-dashboard/src/index.ts new file mode 100644 index 0000000000..58784b8353 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/src/index.ts @@ -0,0 +1,44 @@ +import { IgcDashboardTileModule, IgcDataChartDashboardTileModule, IgcGeographicMapDashboardTileModule, IgcLinearGaugeDashboardTileModule, IgcPieChartDashboardTileModule, IgcRadialGaugeDashboardTileModule } from 'igniteui-webcomponents-dashboards'; +import { IgcDashboardTileComponent } from 'igniteui-webcomponents-dashboards'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcDashboardTileModule, + IgcDataChartDashboardTileModule, + IgcGeographicMapDashboardTileModule, + IgcLinearGaugeDashboardTileModule, + IgcPieChartDashboardTileModule, + IgcRadialGaugeDashboardTileModule +); + +export class Sample { + + private dashboard: IgcDashboardTileComponent + private _bind: () => void; + + constructor() { + var dashboard = this.dashboard = document.getElementById('dashboard') as IgcDashboardTileComponent; + + this._bind = () => { + dashboard.dataSource = this.energyGlobalDemand; + } + this._bind(); + + } + + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + +} + +new Sample(); diff --git a/samples/charts/dashboard-tile/pie-dashboard/tsconfig.json b/samples/charts/dashboard-tile/pie-dashboard/tsconfig.json new file mode 100644 index 0000000000..a15284fdc2 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/tsconfig.json @@ -0,0 +1,40 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/tslint.json b/samples/charts/dashboard-tile/pie-dashboard/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/tslint.json @@ -0,0 +1,54 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "member-ordering": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-trailing-whitespace": false, + "no-var": false, + "no-var-requires": false, + "no-var-keyword": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "no-console": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-var-requires": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "ordered-imports": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/charts/dashboard-tile/pie-dashboard/webpack.config.js b/samples/charts/dashboard-tile/pie-dashboard/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/charts/dashboard-tile/pie-dashboard/webpack.config.js @@ -0,0 +1,103 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/charts/data-chart/annotations-custom/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/color-editor-support/.prettierrc b/samples/charts/toolbar/color-editor-support/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/index.html b/samples/charts/toolbar/color-editor-support/index.html new file mode 100644 index 0000000000..48c3c6603f --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/index.html @@ -0,0 +1,72 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+
+ + + + +
+
+ + +
+
+ +
+ + + + + + + + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json new file mode 100644 index 0000000000..a0d2a23fa0 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -0,0 +1,59 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-charts": "5.1.1-beta.0", + "igniteui-webcomponents-core": "5.1.1-beta.0", + "igniteui-webcomponents-inputs": "5.1.1-beta.0", + "igniteui-webcomponents-layouts": "5.1.1-beta.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } +} diff --git a/samples/charts/toolbar/color-editor-support/sandbox.config.json b/samples/charts/toolbar/color-editor-support/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/src/CountryRenewableElectricity.ts b/samples/charts/toolbar/color-editor-support/src/CountryRenewableElectricity.ts new file mode 100644 index 0000000000..b32970c46a --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/CountryRenewableElectricity.ts @@ -0,0 +1,106 @@ +export class CountryRenewableElectricityItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public year: string; + public europe: number; + public china: number; + public america: number; + +} +export class CountryRenewableElectricity extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new CountryRenewableElectricityItem( + { + year: `2009`, + europe: 34, + china: 21, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2010`, + europe: 43, + china: 26, + america: 24 + }), + new CountryRenewableElectricityItem( + { + year: `2011`, + europe: 66, + china: 29, + america: 28 + }), + new CountryRenewableElectricityItem( + { + year: `2012`, + europe: 69, + china: 32, + america: 26 + }), + new CountryRenewableElectricityItem( + { + year: `2013`, + europe: 58, + china: 47, + america: 38 + }), + new CountryRenewableElectricityItem( + { + year: `2014`, + europe: 40, + china: 46, + america: 31 + }), + new CountryRenewableElectricityItem( + { + year: `2015`, + europe: 78, + china: 50, + america: 19 + }), + new CountryRenewableElectricityItem( + { + year: `2016`, + europe: 13, + china: 90, + america: 52 + }), + new CountryRenewableElectricityItem( + { + year: `2017`, + europe: 78, + china: 132, + america: 50 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2018`, + europe: 40, + china: 134, + america: 34 + }), + new CountryRenewableElectricityItem( + { + year: `2019`, + europe: 80, + china: 96, + america: 38 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/toolbar/color-editor-support/src/index.css b/samples/charts/toolbar/color-editor-support/src/index.css new file mode 100644 index 0000000000..d2c1cccd43 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/index.css @@ -0,0 +1,21 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + +.aboveContentSplit { + display: flex; + flex-direction: row; +} +.aboveContentLeftContainer { + margin-left: 1.25rem; + display: flex; + flex-grow: 1; + justify-content: flex-start; + align-items: flex-end; +} +.aboveContentRightContainer { + margin-right: 1.25rem; + display: flex; + flex-grow: 1; + justify-content: flex-end; + align-items: flex-end; +} diff --git a/samples/charts/toolbar/color-editor-support/src/index.ts b/samples/charts/toolbar/color-editor-support/src/index.ts new file mode 100644 index 0000000000..c20111dd64 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/src/index.ts @@ -0,0 +1,87 @@ +import { IgcXIconModule } from 'igniteui-webcomponents-inputs'; +import { IgcToolbarModule, IgcToolActionComboModule, IgcToolActionColorEditorModule } from 'igniteui-webcomponents-layouts'; +import { IgcDataChartToolbarModule, IgcDataLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCategoryModule, IgcDataChartCoreModule, IgcDataChartAnnotationModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; +import { IgcToolbarComponent, IgcToolActionColorEditorComponent } from 'igniteui-webcomponents-layouts'; +import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcLineSeriesComponent } from 'igniteui-webcomponents-charts'; +import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; +import { IgcToolCommandEventArgs } from 'igniteui-webcomponents-layouts'; +import { IgcSeriesComponent } from 'igniteui-webcomponents-charts'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcXIconModule, + IgcToolbarModule, + IgcToolActionComboModule, + IgcToolActionColorEditorModule, + IgcDataChartToolbarModule, + IgcDataLegendModule, + IgcNumberAbbreviatorModule, + IgcDataChartCategoryModule, + IgcDataChartCoreModule, + IgcDataChartCategoryModule, + IgcDataChartAnnotationModule, + IgcDataChartInteractivityModule, + IgcDataChartAnnotationModule +); + +export class Sample { + + private toolbar: IgcToolbarComponent + private colorEditorTool: IgcToolActionColorEditorComponent + private chart: IgcDataChartComponent + private xAxis: IgcCategoryXAxisComponent + private yAxis: IgcNumericYAxisComponent + private lineSeries1: IgcLineSeriesComponent + private _bind: () => void; + + constructor() { + var toolbar = this.toolbar = document.getElementById('toolbar') as IgcToolbarComponent; + this.colorEditorToggleSeriesBrush = this.colorEditorToggleSeriesBrush.bind(this); + var colorEditorTool = this.colorEditorTool = document.getElementById('colorEditorTool') as IgcToolActionColorEditorComponent; + var chart = this.chart = document.getElementById('chart') as IgcDataChartComponent; + var xAxis = this.xAxis = document.getElementById('xAxis') as IgcCategoryXAxisComponent; + var yAxis = this.yAxis = document.getElementById('yAxis') as IgcNumericYAxisComponent; + var lineSeries1 = this.lineSeries1 = document.getElementById('lineSeries1') as IgcLineSeriesComponent; + + this._bind = () => { + toolbar.target = this.chart; + toolbar.onCommand = this.colorEditorToggleSeriesBrush; + xAxis.dataSource = this.countryRenewableElectricity; + lineSeries1.xAxis = this.xAxis; + lineSeries1.yAxis = this.yAxis; + lineSeries1.dataSource = this.countryRenewableElectricity; + } + this._bind(); + + } + + private _countryRenewableElectricity: CountryRenewableElectricity = null; + public get countryRenewableElectricity(): CountryRenewableElectricity { + if (this._countryRenewableElectricity == null) + { + this._countryRenewableElectricity = new CountryRenewableElectricity(); + } + return this._countryRenewableElectricity; + } + + + public colorEditorToggleSeriesBrush(sender: any, args: IgcToolCommandEventArgs): void { + var target = this.chart; + var color = args.command.argumentsList[0].value; + + switch (args.command.commandId) + { + case "ToggleSeriesBrush": + let series = target.contentSeries[0] as IgcSeriesComponent; + series.brush = color as any; + break; + } + + } + +} + +new Sample(); diff --git a/samples/charts/toolbar/color-editor-support/tsconfig.json b/samples/charts/toolbar/color-editor-support/tsconfig.json new file mode 100644 index 0000000000..a15284fdc2 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/tsconfig.json @@ -0,0 +1,40 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/tslint.json b/samples/charts/toolbar/color-editor-support/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/tslint.json @@ -0,0 +1,54 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "member-ordering": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-trailing-whitespace": false, + "no-var": false, + "no-var-requires": false, + "no-var-keyword": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "no-console": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-var-requires": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "ordered-imports": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/charts/toolbar/color-editor-support/webpack.config.js b/samples/charts/toolbar/color-editor-support/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/charts/toolbar/color-editor-support/webpack.config.js @@ -0,0 +1,103 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/charts/toolbar/custom-tool/index.html b/samples/charts/toolbar/custom-tool/index.html index c4a75877cc..6b1523b0b4 100644 --- a/samples/charts/toolbar/custom-tool/index.html +++ b/samples/charts/toolbar/custom-tool/index.html @@ -31,7 +31,9 @@ + icon-collection-name="CustomCollection" + name="CustomIconName" + id="CustomIconName"> diff --git a/samples/charts/toolbar/custom-tool/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..5781777e27 100644 --- a/samples/charts/toolbar/custom-tool/src/index.ts +++ b/samples/charts/toolbar/custom-tool/src/index.ts @@ -1,12 +1,13 @@ import { IgcLegendModule, IgcCategoryChartModule, IgcCategoryChartToolbarModule } from 'igniteui-webcomponents-charts'; import { IgcToolbarModule } from 'igniteui-webcomponents-layouts'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; -import { IgcToolbarComponent } from 'igniteui-webcomponents-layouts'; +import { IgcToolbarComponent, IgcToolActionLabelComponent } from 'igniteui-webcomponents-layouts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; -import { IgcToolActionLabelComponent, IgcToolActionComponent, IgcToolCommandEventArgs } from 'igniteui-webcomponents-layouts'; +import { IgcToolActionComponent, IgcToolCommandEventArgs } from 'igniteui-webcomponents-layouts'; + import { ModuleManager } from 'igniteui-webcomponents-core'; -import "./index.css"; +import "./index.css"; ModuleManager.register( IgcLegendModule, @@ -19,12 +20,14 @@ export class Sample { private legend: IgcLegendComponent private toolbar: IgcToolbarComponent + private customIconName: IgcToolActionLabelComponent private chart: IgcCategoryChartComponent private _bind: () => void; constructor() { var legend = this.legend = document.getElementById('legend') as IgcLegendComponent; var toolbar = this.toolbar = document.getElementById('toolbar') as IgcToolbarComponent; + var customIconName = this.customIconName = document.getElementById('CustomIconName') as IgcToolActionLabelComponent; var chart = this.chart = document.getElementById('chart') as IgcCategoryChartComponent; this._bind = () => { @@ -46,10 +49,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..22c3426cfb 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 { @@ -51,28 +51,25 @@ export class Sample { pivotValue1.member = "AmountofSale"; pivotValue1.displayName = "Amount of Sale"; pivotValue1.enabled = true; - var pivotAggregator1: IgcPivotAggregator = {} as IgcPivotAggregator; - pivotAggregator1.key = "SUM"; - pivotAggregator1.label = "Sum of Sale"; - pivotAggregator1.aggregator = this.pivotDataFlatAggregateSumSale; - - pivotValue1.aggregate = pivotAggregator1; - var pivotAggregator2: IgcPivotAggregator = {} as IgcPivotAggregator; - pivotAggregator2.key = "SUM"; - pivotAggregator2.label = "Sum of Sale"; - pivotAggregator2.aggregator = this.pivotDataFlatAggregateSumSale; - - var pivotAggregator3: IgcPivotAggregator = {} as IgcPivotAggregator; - pivotAggregator3.key = "MIN"; - pivotAggregator3.label = "Minimum of Sale"; - pivotAggregator3.aggregator = this.pivotDataFlatAggregateMinSale; - - var pivotAggregator4: IgcPivotAggregator = {} as IgcPivotAggregator; - pivotAggregator4.key = "MAX"; - pivotAggregator4.label = "Maximum of Sale"; - pivotAggregator4.aggregator = this.pivotDataFlatAggregateMaxSale; - - pivotValue1.aggregateList = [pivotAggregator2,pivotAggregator3,pivotAggregator4]; + var SumOfSale: IgcPivotAggregator = {} as IgcPivotAggregator; + SumOfSale.key = "SUM"; + SumOfSale.label = "Sum of Sale"; + SumOfSale.aggregator = this.pivotDataFlatAggregateSumSale; + SumOfSale.aggregatorName = "SUM"; + + var MinOfSale: IgcPivotAggregator = {} as IgcPivotAggregator; + MinOfSale.key = "MIN"; + MinOfSale.label = "Minimum of Sale"; + MinOfSale.aggregator = this.pivotDataFlatAggregateMinSale; + MinOfSale.aggregatorName = "MIN"; + + var MaxOfSale: IgcPivotAggregator = {} as IgcPivotAggregator; + MaxOfSale.key = "MAX"; + MaxOfSale.label = "Maximum of Sale"; + MaxOfSale.aggregatorName = "MAX"; + MaxOfSale.aggregator = this.pivotDataFlatAggregateMaxSale; + + pivotValue1.aggregateList = [SumOfSale,MinOfSale,MaxOfSale]; pivotConfiguration1.values = [pivotValue1]; @@ -80,7 +77,6 @@ export class Sample { } return this._pivotConfiguration1; } - private _bind: () => void; constructor() { @@ -91,6 +87,7 @@ export class Sample { grid.pivotConfiguration = this.pivotConfiguration1; } this._bind(); + } private _pivotDataFlat: PivotDataFlat = null; @@ -102,6 +99,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', diff --git a/samples/inputs/color-editor/overview/.prettierrc b/samples/inputs/color-editor/overview/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/inputs/color-editor/overview/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/index.html b/samples/inputs/color-editor/overview/index.html new file mode 100644 index 0000000000..67cd7538d9 --- /dev/null +++ b/samples/inputs/color-editor/overview/index.html @@ -0,0 +1,34 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json new file mode 100644 index 0000000000..7b73082624 --- /dev/null +++ b/samples/inputs/color-editor/overview/package.json @@ -0,0 +1,57 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-core": "5.1.1-beta.0", + "igniteui-webcomponents-inputs": "5.1.1-beta.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } +} diff --git a/samples/inputs/color-editor/overview/sandbox.config.json b/samples/inputs/color-editor/overview/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/inputs/color-editor/overview/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/src/index.css b/samples/inputs/color-editor/overview/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/inputs/color-editor/overview/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/inputs/color-editor/overview/src/index.ts b/samples/inputs/color-editor/overview/src/index.ts new file mode 100644 index 0000000000..ed177183e3 --- /dev/null +++ b/samples/inputs/color-editor/overview/src/index.ts @@ -0,0 +1,23 @@ +import { IgcColorEditorModule } from 'igniteui-webcomponents-inputs'; +import { IgcColorEditorComponent } from 'igniteui-webcomponents-dashboards'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcColorEditorModule +); + +export class Sample { + + private colorEditor: IgcColorEditorComponent + + constructor() { + var colorEditor = this.colorEditor = document.getElementById('colorEditor') as IgcColorEditorComponent; + + } + +} + +new Sample(); diff --git a/samples/inputs/color-editor/overview/tsconfig.json b/samples/inputs/color-editor/overview/tsconfig.json new file mode 100644 index 0000000000..a15284fdc2 --- /dev/null +++ b/samples/inputs/color-editor/overview/tsconfig.json @@ -0,0 +1,40 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/tslint.json b/samples/inputs/color-editor/overview/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/inputs/color-editor/overview/tslint.json @@ -0,0 +1,54 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "member-ordering": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-trailing-whitespace": false, + "no-var": false, + "no-var-requires": false, + "no-var-keyword": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "no-console": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-var-requires": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "ordered-imports": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/inputs/color-editor/overview/webpack.config.js b/samples/inputs/color-editor/overview/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/inputs/color-editor/overview/webpack.config.js @@ -0,0 +1,103 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; From 49812ee0d9015c16e08566187459d89e437448ec Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Fri, 13 Dec 2024 00:17:48 -0500 Subject: [PATCH 32/63] update update --- browser/public/index.html | 12 ++++ package-lock.json | 23 ++++++++ package.json | 1 + .../dashboard-tile/chart-dashboard/ReadMe.md | 56 +++++++++++++++++++ .../dashboard-tile/gauge-dashboard/ReadMe.md | 56 +++++++++++++++++++ .../dashboard-tile/map-dashboard/ReadMe.md | 56 +++++++++++++++++++ .../dashboard-tile/pie-dashboard/ReadMe.md | 56 +++++++++++++++++++ .../toolbar/color-editor-support/ReadMe.md | 56 +++++++++++++++++++ .../inputs/color-editor/overview/ReadMe.md | 56 +++++++++++++++++++ .../inputs/color-editor/overview/src/index.ts | 2 +- 10 files changed, 373 insertions(+), 1 deletion(-) create mode 100644 samples/charts/dashboard-tile/chart-dashboard/ReadMe.md create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/ReadMe.md create mode 100644 samples/charts/dashboard-tile/map-dashboard/ReadMe.md create mode 100644 samples/charts/dashboard-tile/pie-dashboard/ReadMe.md create mode 100644 samples/charts/toolbar/color-editor-support/ReadMe.md create mode 100644 samples/inputs/color-editor/overview/ReadMe.md diff --git a/browser/public/index.html b/browser/public/index.html index 0b6ffd7f9d..06f2b0fe5b 100644 --- a/browser/public/index.html +++ b/browser/public/index.html @@ -105,6 +105,13 @@ Trendline Value Lines
+ +
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 6d88483a8c..b3abb1ee94 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.ts @@ -1,6 +1,6 @@ import { IgcNumberAbbreviatorModule, IgcDataChartCoreModule, IgcDataChartScatterModule, IgcDataChartScatterCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; import { ComponentRenderer, NumberAbbreviatorDescriptionModule, DataChartCoreDescriptionModule, DataChartScatterDescriptionModule, DataChartScatterCoreDescriptionModule, DataChartInteractivityDescriptionModule, DataChartAnnotationDescriptionModule } from 'igniteui-webcomponents-core'; -import { IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcValueBrushScaleComponent } from 'igniteui-webcomponents-charts'; +import { IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcValueBrushScaleComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { WorldStatsItem, WorldStats } from './WorldStats'; import { ModuleManager } from 'igniteui-webcomponents-core'; @@ -49,6 +49,7 @@ export class Sample { } return this._valueBrushScale1; } + private dataToolTipLayer: IgcDataToolTipLayerComponent private _bind: () => void; constructor() { @@ -56,6 +57,7 @@ export class Sample { var xAxis = this.xAxis = document.getElementById('xAxis') as IgcNumericXAxisComponent; var yAxis = this.yAxis = document.getElementById('yAxis') as IgcNumericYAxisComponent; var bubbleSeries1 = this.bubbleSeries1 = document.getElementById('bubbleSeries1') as IgcBubbleSeriesComponent; + var dataToolTipLayer = this.dataToolTipLayer = document.getElementById('dataToolTipLayer') as IgcDataToolTipLayerComponent; this._bind = () => { bubbleSeries1.radiusScale = this.sizeScale1; diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/index.html b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/index.html index 83588403c3..f6aa4b72a3 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/index.html +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/index.html @@ -44,21 +44,22 @@ + title="GDP per Capita" + maximum-value="1000000" + title-left-margin="10" + is-logarithmic="true" + abbreviate-large-numbers="true"> @@ -67,14 +68,31 @@ id="bubbleSeries2" title="European Countries" x-member-path="population" - y-member-path="publicDebt" - radius-member-path="gdpPerPerson" + y-member-path="gDP" + radius-member-path="workedHours" x-member-as-legend-label="Population" - y-member-as-legend-label="Debt" - radius-member-as-legend-label="GDP" + y-member-as-legend-label="GDP" + radius-member-as-legend-label="Work Hours" marker-type="Circle" show-default-tooltip="true"> + +
diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.ts index 4640b54a4c..fd87ee72b7 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.ts @@ -1,5 +1,5 @@ import { IgcLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCoreModule, IgcDataChartScatterModule, IgcDataChartScatterCoreModule, IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; -import { IgcLegendComponent, IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent } from 'igniteui-webcomponents-charts'; +import { IgcLegendComponent, IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; import { CountryStatsAfricaItem, CountryStatsAfrica } from './CountryStatsAfrica'; import { CountryStatsEuropeItem, CountryStatsEurope } from './CountryStatsEurope'; @@ -50,6 +50,7 @@ export class Sample { } return this._sizeScale2; } + private dataToolTipLayer: IgcDataToolTipLayerComponent private _bind: () => void; constructor() { @@ -59,6 +60,7 @@ export class Sample { var yAxis = this.yAxis = document.getElementById('yAxis') as IgcNumericYAxisComponent; var bubbleSeries1 = this.bubbleSeries1 = document.getElementById('bubbleSeries1') as IgcBubbleSeriesComponent; var bubbleSeries2 = this.bubbleSeries2 = document.getElementById('bubbleSeries2') as IgcBubbleSeriesComponent; + var dataToolTipLayer = this.dataToolTipLayer = document.getElementById('dataToolTipLayer') as IgcDataToolTipLayerComponent; this._bind = () => { chart.legend = this.legend; diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/index.html b/samples/charts/data-chart/scatter-bubble-chart-single-source/index.html index aaad03223a..6035e059f5 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/index.html +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/index.html @@ -18,18 +18,19 @@
-
- Total Population of Selected Countries -
-
+ id="chart" + chart-title="Population vs. Public Debt vs. GDP" + title-top-margin="10" + title-bottom-margin="0"> @@ -37,9 +38,10 @@ name="yAxis" id="yAxis" title="Public Debt per GDP (%)" - title-left-margin="5" - is-logarithmic="false" - maximum-value="120"> + title-left-margin="10" + is-logarithmic="true" + abbreviate-large-numbers="true" + maximum-value="1000"> + id="dataToolTipLayer" + value-row-margin-top="1" + label-text-margin-top="1" + title-text-margin-top="1" + units-text-margin-top="1" + value-row-margin-bottom="1" + label-text-margin-bottom="1" + title-text-margin-bottom="1" + units-text-margin-bottom="1" + units-text-margin-right="5" + value-text-margin-left="10" + label-text-margin-left="1" + grouping-mode="Grouped" + layout-mode="Vertical" + badge-shape="Hidden" + header-row-visible="false">
diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/index.html b/samples/charts/data-chart/scatter-bubble-chart-styling/index.html index f9cb383a05..0a00926eb7 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/index.html +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/index.html @@ -18,67 +18,45 @@
-
- Total Population of Selected Countries -
- -
- - -
-
+ id="chart" + chart-title="Population vs. Public Debt vs. GDP" + title-top-margin="10" + title-bottom-margin="0"> + abbreviate-large-numbers="true" + maximum-value="1000"> - - @@ -96,9 +74,12 @@ units-text-margin-bottom="1" units-text-margin-right="5" value-text-margin-left="10" - label-text-margin-left="5" + label-text-margin-left="1" grouping-mode="Grouped" - layout-mode="Vertical"> + layout-mode="Vertical" + badge-shape="Hidden" + included-columns="X, Y, Radius" + header-row-visible="false">
diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts deleted file mode 100644 index 34e0a73da1..0000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsAfrica.ts +++ /dev/null @@ -1,431 +0,0 @@ -export class CountryStatsAfricaItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public code: string; - public population: number; - public workedHours: number; - public gDP: number; - public name: string; - -} -export class CountryStatsAfrica extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new CountryStatsAfricaItem( - { - code: `DZA`, - population: 39728000, - workedHours: 47.5, - gDP: 13725, - name: `Algeria` - }), - new CountryStatsAfricaItem( - { - code: `AGO`, - population: 27884000, - workedHours: 39.8, - gDP: 6228, - name: `Angola` - }), - new CountryStatsAfricaItem( - { - code: `BEN`, - population: 10576000, - workedHours: 43.7, - gDP: 1987, - name: `Benin` - }), - new CountryStatsAfricaItem( - { - code: `BWA`, - population: 2121000, - workedHours: 41.2, - gDP: 15357, - name: `Botswana` - }), - new CountryStatsAfricaItem( - { - code: `BFA`, - population: 18111000, - workedHours: 39.3, - gDP: 1596, - name: `Burkina Faso` - }), - new CountryStatsAfricaItem( - { - code: `BDI`, - population: 10160000, - workedHours: 36.4, - gDP: 748, - name: `Burundi` - }), - new CountryStatsAfricaItem( - { - code: `CMR`, - population: 23298000, - workedHours: 42, - gDP: 3289, - name: `Cameroon` - }), - new CountryStatsAfricaItem( - { - code: `CPV`, - population: 525000, - workedHours: 45, - gDP: 5915, - name: `Cape Verde` - }), - new CountryStatsAfricaItem( - { - code: `CAF`, - population: 4493000, - workedHours: 38, - gDP: 622, - name: `Central African Republic` - }), - new CountryStatsAfricaItem( - { - code: `TCD`, - population: 14111000, - workedHours: 40.4, - gDP: 2067, - name: `Chad` - }), - new CountryStatsAfricaItem( - { - code: `COM`, - population: 777000, - workedHours: 40.1, - gDP: 1413, - name: `Comoros` - }), - new CountryStatsAfricaItem( - { - code: `COG`, - population: 4856000, - workedHours: 38.1, - gDP: 5543, - name: `Congo` - }), - new CountryStatsAfricaItem( - { - code: `CIV`, - population: 23226000, - workedHours: 39.7, - gDP: 3242, - name: `Cote Ivoire` - }), - new CountryStatsAfricaItem( - { - code: `COD`, - population: 76245000, - workedHours: 44, - gDP: 812, - name: `Democratic Republic of Congo` - }), - new CountryStatsAfricaItem( - { - code: `EGY`, - population: 92443000, - workedHours: 39.7, - gDP: 10096, - name: `Egypt` - }), - new CountryStatsAfricaItem( - { - code: `GNQ`, - population: 1169000, - workedHours: 38.8, - gDP: 27554, - name: `Equatorial Guinea` - }), - new CountryStatsAfricaItem( - { - code: `SWZ`, - population: 1104000, - workedHours: 45.7, - gDP: 7759, - name: `Eswatini` - }), - new CountryStatsAfricaItem( - { - code: `ETH`, - population: 101000000, - workedHours: 40.1, - gDP: 1533, - name: `Ethiopia` - }), - new CountryStatsAfricaItem( - { - code: `GAB`, - population: 1948000, - workedHours: 40.5, - gDP: 16837, - name: `Gabon` - }), - new CountryStatsAfricaItem( - { - code: `GMB`, - population: 2086000, - workedHours: 40.3, - gDP: 1568, - name: `Gambia` - }), - new CountryStatsAfricaItem( - { - code: `GHA`, - population: 27849000, - workedHours: 47.6, - gDP: 3927, - name: `Ghana` - }), - new CountryStatsAfricaItem( - { - code: `GIN`, - population: 11432000, - workedHours: 43.4, - gDP: 1758, - name: `Guinea` - }), - new CountryStatsAfricaItem( - { - code: `GNB`, - population: 1737000, - workedHours: 35.1, - gDP: 1446, - name: `Guinea-Bissau` - }), - new CountryStatsAfricaItem( - { - code: `KEN`, - population: 47878000, - workedHours: 43.9, - gDP: 2836, - name: `Kenya` - }), - new CountryStatsAfricaItem( - { - code: `LSO`, - population: 2059000, - workedHours: 47.6, - gDP: 2708, - name: `Lesotho` - }), - new CountryStatsAfricaItem( - { - code: `LBR`, - population: 4472000, - workedHours: 40.3, - gDP: 785, - name: `Liberia` - }), - new CountryStatsAfricaItem( - { - code: `LBY`, - population: 6418000, - workedHours: 42.5, - gDP: 14847, - name: `Libya` - }), - new CountryStatsAfricaItem( - { - code: `MDG`, - population: 24234000, - workedHours: 40.8, - gDP: 1377, - name: `Madagascar` - }), - new CountryStatsAfricaItem( - { - code: `MWI`, - population: 16745000, - workedHours: 44.5, - gDP: 1089, - name: `Malawi` - }), - new CountryStatsAfricaItem( - { - code: `MLI`, - population: 17439000, - workedHours: 40.6, - gDP: 1919, - name: `Mali` - }), - new CountryStatsAfricaItem( - { - code: `MRT`, - population: 4046000, - workedHours: 45.9, - gDP: 3602, - name: `Mauritania` - }), - new CountryStatsAfricaItem( - { - code: `MUS`, - population: 1259000, - workedHours: 44.4, - gDP: 18864, - name: `Mauritius` - }), - new CountryStatsAfricaItem( - { - code: `MAR`, - population: 34664000, - workedHours: 39.6, - gDP: 7297, - name: `Morocco` - }), - new CountryStatsAfricaItem( - { - code: `MOZ`, - population: 27042000, - workedHours: 46.7, - gDP: 1118, - name: `Mozambique` - }), - new CountryStatsAfricaItem( - { - code: `NAM`, - population: 2315000, - workedHours: 43.1, - gDP: 9975, - name: `Namibia` - }), - new CountryStatsAfricaItem( - { - code: `NER`, - population: 20002000, - workedHours: 45, - gDP: 908, - name: `Niger` - }), - new CountryStatsAfricaItem( - { - code: `NGA`, - population: 181000000, - workedHours: 32.76, - gDP: 5671, - name: `Nigeria` - }), - new CountryStatsAfricaItem( - { - code: `RWA`, - population: 11369000, - workedHours: 46.3, - gDP: 1731, - name: `Rwanda` - }), - new CountryStatsAfricaItem( - { - code: `STP`, - population: 199000, - workedHours: 38.2, - gDP: 2948, - name: `Sao Tome` - }), - new CountryStatsAfricaItem( - { - code: `SEN`, - population: 14578000, - workedHours: 46.8, - gDP: 2294, - name: `Senegal` - }), - new CountryStatsAfricaItem( - { - code: `SYC`, - population: 95000, - workedHours: 39.8, - gDP: 24857, - name: `Seychelles` - }), - new CountryStatsAfricaItem( - { - code: `SLE`, - population: 7172000, - workedHours: 35.4, - gDP: 1314, - name: `Sierra Leone` - }), - new CountryStatsAfricaItem( - { - code: `ZAF`, - population: 55386000, - workedHours: 42.48, - gDP: 12378, - name: `South Africa` - }), - new CountryStatsAfricaItem( - { - code: `SSD`, - population: 10716000, - workedHours: 39.3, - gDP: 1875, - name: `South Sudan` - }), - new CountryStatsAfricaItem( - { - code: `SDN`, - population: 38903000, - workedHours: 36.3, - gDP: 4290, - name: `Sudan` - }), - new CountryStatsAfricaItem( - { - code: `TZA`, - population: 51483000, - workedHours: 38, - gDP: 2491, - name: `Tanzania` - }), - new CountryStatsAfricaItem( - { - code: `TGO`, - population: 7323000, - workedHours: 38.8, - gDP: 1351, - name: `Togo` - }), - new CountryStatsAfricaItem( - { - code: `TUN`, - population: 11180000, - workedHours: 35.2, - gDP: 10766, - name: `Tunisia` - }), - new CountryStatsAfricaItem( - { - code: `UGA`, - population: 38225000, - workedHours: 38.6, - gDP: 1666, - name: `Uganda` - }), - new CountryStatsAfricaItem( - { - code: `ZMB`, - population: 15879000, - workedHours: 46.6, - gDP: 3627, - name: `Zambia` - }), - new CountryStatsAfricaItem( - { - code: `ZWE`, - population: 13815000, - workedHours: 41.4, - gDP: 1912, - name: `Zimbabwe` - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts deleted file mode 100644 index d0b93024d2..0000000000 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/CountryStatsEurope.ts +++ /dev/null @@ -1,351 +0,0 @@ -export class CountryStatsEuropeItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public code: string; - public population: number; - public workedHours: number; - public gDP: number; - public name: string; - -} -export class CountryStatsEurope extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new CountryStatsEuropeItem( - { - code: `ALB`, - population: 2891000, - workedHours: 41, - gDP: 10970, - name: `Albania` - }), - new CountryStatsEuropeItem( - { - code: `AUT`, - population: 8679000, - workedHours: 30.75, - gDP: 44305, - name: `Austria` - }), - new CountryStatsEuropeItem( - { - code: `BLR`, - population: 9439000, - workedHours: 43.5, - gDP: 17230, - name: `Belarus` - }), - new CountryStatsEuropeItem( - { - code: `BEL`, - population: 11288000, - workedHours: 29.7, - gDP: 41708, - name: `Belgium` - }), - new CountryStatsEuropeItem( - { - code: `BIH`, - population: 3429000, - workedHours: 46.5, - gDP: 10932, - name: `Bosnia` - }), - new CountryStatsEuropeItem( - { - code: `BGR`, - population: 7200000, - workedHours: 31.62, - gDP: 17000, - name: `Bulgaria` - }), - new CountryStatsEuropeItem( - { - code: `HRV`, - population: 4233000, - workedHours: 35.15, - gDP: 20984, - name: `Croatia` - }), - new CountryStatsEuropeItem( - { - code: `CYP`, - population: 1161000, - workedHours: 34.42, - gDP: 30549, - name: `Cyprus` - }), - new CountryStatsEuropeItem( - { - code: `CZE`, - population: 10601000, - workedHours: 33.77, - gDP: 30605, - name: `Czechia` - }), - new CountryStatsEuropeItem( - { - code: `DNK`, - population: 5689000, - workedHours: 27.16, - gDP: 45459, - name: `Denmark` - }), - new CountryStatsEuropeItem( - { - code: `EST`, - population: 1315000, - workedHours: 35.61, - gDP: 27550, - name: `Estonia` - }), - new CountryStatsEuropeItem( - { - code: `FIN`, - population: 5481000, - workedHours: 31.48, - gDP: 38942, - name: `Finland` - }), - new CountryStatsEuropeItem( - { - code: `FRA`, - population: 64453000, - workedHours: 29.03, - gDP: 37766, - name: `France` - }), - new CountryStatsEuropeItem( - { - code: `DEU`, - population: 81787000, - workedHours: 26.31, - gDP: 43938, - name: `Germany` - }), - new CountryStatsEuropeItem( - { - code: `GRC`, - population: 10660000, - workedHours: 39.06, - gDP: 24170, - name: `Greece` - }), - new CountryStatsEuropeItem( - { - code: `HUN`, - population: 9778000, - workedHours: 36.99, - gDP: 25034, - name: `Hungary` - }), - new CountryStatsEuropeItem( - { - code: `ISL`, - population: 330000, - workedHours: 29.02, - gDP: 43048, - name: `Iceland` - }), - new CountryStatsEuropeItem( - { - code: `IRL`, - population: 4652000, - workedHours: 33.47, - gDP: 60818, - name: `Ireland` - }), - new CountryStatsEuropeItem( - { - code: `ITA`, - population: 60578000, - workedHours: 33.04, - gDP: 34302, - name: `Italy` - }), - new CountryStatsEuropeItem( - { - code: `LVA`, - population: 1998000, - workedHours: 36.57, - gDP: 23019, - name: `Latvia` - }), - new CountryStatsEuropeItem( - { - code: `LTU`, - population: 2932000, - workedHours: 35.76, - gDP: 27046, - name: `Lithuania` - }), - new CountryStatsEuropeItem( - { - code: `LUX`, - population: 567000, - workedHours: 29.25, - gDP: 94089, - name: `Luxembourg` - }), - new CountryStatsEuropeItem( - { - code: `MLT`, - population: 434000, - workedHours: 37.78, - gDP: 34087, - name: `Malta` - }), - new CountryStatsEuropeItem( - { - code: `MDA`, - population: 4071000, - workedHours: 41, - gDP: 4747, - name: `Moldova` - }), - new CountryStatsEuropeItem( - { - code: `MNE`, - population: 627000, - workedHours: 47.2, - gDP: 15290, - name: `Montenegro` - }), - new CountryStatsEuropeItem( - { - code: `NLD`, - population: 16938000, - workedHours: 27.38, - gDP: 46494, - name: `Netherlands` - }), - new CountryStatsEuropeItem( - { - code: `MKD`, - population: 2079000, - workedHours: 36.6, - gDP: 12760, - name: `North Macedonia` - }), - new CountryStatsEuropeItem( - { - code: `NOR`, - population: 5200000, - workedHours: 27.36, - gDP: 64008, - name: `Norway` - }), - new CountryStatsEuropeItem( - { - code: `POL`, - population: 38034000, - workedHours: 39.4, - gDP: 25300, - name: `Poland` - }), - new CountryStatsEuropeItem( - { - code: `PRT`, - population: 10368000, - workedHours: 36.06, - gDP: 26608, - name: `Portugal` - }), - new CountryStatsEuropeItem( - { - code: `ROU`, - population: 19925000, - workedHours: 34.34, - gDP: 20556, - name: `Romania` - }), - new CountryStatsEuropeItem( - { - code: `RUS`, - population: 145000000, - workedHours: 38.04, - gDP: 24517, - name: `Russia` - }), - new CountryStatsEuropeItem( - { - code: `SMR`, - population: 33000, - workedHours: 40.1, - gDP: 56372, - name: `San Marino` - }), - new CountryStatsEuropeItem( - { - code: `SRB`, - population: 8877000, - workedHours: 46.5, - gDP: 13278, - name: `Serbia` - }), - new CountryStatsEuropeItem( - { - code: `SVK`, - population: 5436000, - workedHours: 33.73, - gDP: 28309, - name: `Slovakia` - }), - new CountryStatsEuropeItem( - { - code: `SVN`, - population: 2071000, - workedHours: 32.46, - gDP: 29038, - name: `Slovenia` - }), - new CountryStatsEuropeItem( - { - code: `ESP`, - population: 46672000, - workedHours: 32.68, - gDP: 32291, - name: `Spain` - }), - new CountryStatsEuropeItem( - { - code: `SWE`, - population: 9765000, - workedHours: 30.96, - gDP: 45679, - name: `Sweden` - }), - new CountryStatsEuropeItem( - { - code: `CHE`, - population: 8297000, - workedHours: 30.57, - gDP: 57264, - name: `Switzerland` - }), - new CountryStatsEuropeItem( - { - code: `UKR`, - population: 44922000, - workedHours: 38.6, - gDP: 7465, - name: `Ukraine` - }), - new CountryStatsEuropeItem( - { - code: `GBR`, - population: 65860000, - workedHours: 32.1, - gDP: 38839, - name: `United Kingdom` - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts new file mode 100644 index 0000000000..2c09f68a27 --- /dev/null +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/WorldStats.ts @@ -0,0 +1,5420 @@ +export class WorldStatsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public code: string; + public name: string; + public continent: string; + public population: number; + public gdpTotal: number; + public economy: string; + public region: string; + public status: string; + public longitude: number; + public latitude: number; + public gdpPerPerson: number; + public rank: number; + public unemployment: number; + public oilProduction: number; + public birthRate: number; + public medianAge: number; + public electricity: number; + public televisions: number; + public publicDebt: number; + public internet: number; + +} +export class WorldStats extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new WorldStatsItem( + { + code: `CHN`, + name: `China`, + continent: `Asia`, + population: 1379302771, + gdpTotal: 21140000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 104.18, + latitude: 35.887, + gdpPerPerson: 15327, + rank: 1, + unemployment: 4, + oilProduction: 3725000, + birthRate: 14, + medianAge: 34, + electricity: 3256000, + televisions: 400000000, + publicDebt: 18, + internet: 253000000 + }), + new WorldStatsItem( + { + code: `IND`, + name: `India`, + continent: `Asia`, + population: 1281935911, + gdpTotal: 8721000, + economy: `Emerging`, + region: `Southern Asia`, + status: `Country`, + longitude: 78.022, + latitude: 22.665, + gdpPerPerson: 6803, + rank: 2, + unemployment: 7, + oilProduction: 810000, + birthRate: 22, + medianAge: 25, + electricity: 661600, + televisions: 63000000, + publicDebt: 58, + internet: 80000000 + }), + new WorldStatsItem( + { + code: `USA`, + name: `United States`, + continent: `North America`, + population: 326625791, + gdpTotal: 18560000, + economy: `Developed`, + region: `Northern America`, + status: `Country`, + longitude: -101.8, + latitude: 39.818, + gdpPerPerson: 56823, + rank: 3, + unemployment: 5, + oilProduction: 7460000, + birthRate: 14, + medianAge: 37, + electricity: 4062000, + televisions: 219000000, + publicDebt: 61, + internet: 223000000 + }), + new WorldStatsItem( + { + code: `IDN`, + name: `Indonesia`, + continent: `Asia`, + population: 260580739, + gdpTotal: 3028000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 102.72, + latitude: -2.698, + gdpPerPerson: 11620, + rank: 4, + unemployment: 9, + oilProduction: 837500, + birthRate: 19, + medianAge: 27, + electricity: 125900, + televisions: 13750000, + publicDebt: 34, + internet: 13000000 + }), + new WorldStatsItem( + { + code: `BRA`, + name: `Brazil`, + continent: `South America`, + population: 207353391, + gdpTotal: 3081000, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -48.88, + latitude: -12.89, + gdpPerPerson: 14859, + rank: 5, + unemployment: 9, + oilProduction: 1797000, + birthRate: 19, + medianAge: 28, + electricity: 396400, + televisions: 36500000, + publicDebt: 45, + internet: 50000000 + }), + new WorldStatsItem( + { + code: `PAK`, + name: `Pakistan`, + continent: `Asia`, + population: 204924861, + gdpTotal: 988200, + economy: `Emerging`, + region: `Southern Asia`, + status: `Country`, + longitude: 67.624, + latitude: 28.421, + gdpPerPerson: 4822, + rank: 6, + unemployment: 6, + oilProduction: 62000, + birthRate: 28, + medianAge: 21, + electricity: 89820, + televisions: 3100000, + publicDebt: 51, + internet: 17500000 + }), + new WorldStatsItem( + { + code: `NGA`, + name: `Nigeria`, + continent: `Africa`, + population: 190632261, + gdpTotal: 1089000, + economy: `Emerging`, + region: `Western Africa`, + status: `Country`, + longitude: 8.657, + latitude: 9.075, + gdpPerPerson: 5713, + rank: 7, + unemployment: 5, + oilProduction: 2166000, + birthRate: 37, + medianAge: 19, + electricity: 22530, + televisions: 6900000, + publicDebt: 14, + internet: 10000000 + }), + new WorldStatsItem( + { + code: `BGD`, + name: `Bangladesh`, + continent: `Asia`, + population: 157826578, + gdpTotal: 628400, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 89.935, + latitude: 24.474, + gdpPerPerson: 3982, + rank: 8, + unemployment: 3, + oilProduction: 6746, + birthRate: 29, + medianAge: 23, + electricity: 21350, + televisions: 770000, + publicDebt: 37, + internet: 500000 + }), + new WorldStatsItem( + { + code: `RUS`, + name: `Russia`, + continent: `Europe`, + population: 142257519, + gdpTotal: 3745000, + economy: `Emerging`, + region: `Eastern Europe`, + status: `Country`, + longitude: 42.379, + latitude: 56.974, + gdpPerPerson: 26325, + rank: 9, + unemployment: 6, + oilProduction: 9870000, + birthRate: 11, + medianAge: 38, + electricity: 1000000, + televisions: 60500000, + publicDebt: 6, + internet: 30000000 + }), + new WorldStatsItem( + { + code: `JPN`, + name: `Japan`, + continent: `Asia`, + population: 126451398, + gdpTotal: 4932000, + economy: `Developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 138.48, + latitude: 36.519, + gdpPerPerson: 39003, + rank: 10, + unemployment: 4, + oilProduction: 125000, + birthRate: 8, + medianAge: 44, + electricity: 1025000, + televisions: 86500000, + publicDebt: 170, + internet: 88110000 + }), + new WorldStatsItem( + { + code: `MEX`, + name: `Mexico`, + continent: `North America`, + population: 124574795, + gdpTotal: 2307000, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -102.5, + latitude: 23.63, + gdpPerPerson: 18519, + rank: 11, + unemployment: 4, + oilProduction: 3083000, + birthRate: 20, + medianAge: 26, + electricity: 222400, + televisions: 25600000, + publicDebt: 23, + internet: 22812000 + }), + new WorldStatsItem( + { + code: `ETH`, + name: `Ethiopia`, + continent: `Africa`, + population: 105350020, + gdpTotal: 174700, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 40.489, + latitude: 9.154, + gdpPerPerson: 1658, + rank: 12, + unemployment: 5, + oilProduction: 1, + birthRate: 25, + medianAge: 52, + electricity: 60942, + televisions: 66893500, + publicDebt: 45, + internet: 291000 + }), + new WorldStatsItem( + { + code: `PHL`, + name: `Philippines`, + continent: `Asia`, + population: 104256076, + gdpTotal: 801900, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 121.4, + latitude: 16.78, + gdpPerPerson: 7692, + rank: 13, + unemployment: 7, + oilProduction: 0, + birthRate: 26, + medianAge: 22, + electricity: 53670, + televisions: 3700000, + publicDebt: 56, + internet: 5300000 + }), + new WorldStatsItem( + { + code: `EGY`, + name: `Egypt`, + continent: `Africa`, + population: 97041072, + gdpTotal: 1105000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 30.787, + latitude: 26.825, + gdpPerPerson: 11387, + rank: 14, + unemployment: 9, + oilProduction: 665000, + birthRate: 22, + medianAge: 25, + electricity: 102500, + televisions: 7700000, + publicDebt: 106, + internet: 8620000 + }), + new WorldStatsItem( + { + code: `VNM`, + name: `Vietnam`, + continent: `Asia`, + population: 96160163, + gdpTotal: 594900, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 108.46, + latitude: 13.711, + gdpPerPerson: 6187, + rank: 15, + unemployment: 4, + oilProduction: 324000, + birthRate: 16, + medianAge: 27, + electricity: 59010, + televisions: 3570000, + publicDebt: 42, + internet: 17870000 + }), + new WorldStatsItem( + { + code: `COD`, + name: `Dem. Rep. Congo`, + continent: `Africa`, + population: 83301151, + gdpTotal: 66010, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 21.738, + latitude: -4.071, + gdpPerPerson: 792, + rank: 16, + unemployment: 3, + oilProduction: 4, + birthRate: 13, + medianAge: 41, + electricity: 48913, + televisions: 55942436, + publicDebt: 16, + internet: 8903936 + }), + new WorldStatsItem( + { + code: `IRN`, + name: `Iran`, + continent: `Asia`, + population: 82021564, + gdpTotal: 1459000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 53.664, + latitude: 32.435, + gdpPerPerson: 17788, + rank: 17, + unemployment: 12, + oilProduction: 3956000, + birthRate: 17, + medianAge: 26, + electricity: 170400, + televisions: 4610000, + publicDebt: 17, + internet: 23000000 + }), + new WorldStatsItem( + { + code: `TUR`, + name: `Turkey`, + continent: `Asia`, + population: 80845215, + gdpTotal: 1670000, + economy: `Emerging`, + region: `Middle East`, + status: `Country`, + longitude: 35.243, + latitude: 38.962, + gdpPerPerson: 20657, + rank: 18, + unemployment: 10, + oilProduction: 45460, + birthRate: 16, + medianAge: 29, + electricity: 154200, + televisions: 20900000, + publicDebt: 39, + internet: 13150000 + }), + new WorldStatsItem( + { + code: `DEU`, + name: `Germany`, + continent: `Europe`, + population: 80594017, + gdpTotal: 3979000, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 11.43, + latitude: 52.237, + gdpPerPerson: 49371, + rank: 19, + unemployment: 9, + oilProduction: 141700, + birthRate: 8, + medianAge: 43, + electricity: 579400, + televisions: 51400000, + publicDebt: 65, + internet: 42500000 + }), + new WorldStatsItem( + { + code: `THA`, + name: `Thailand`, + continent: `Asia`, + population: 68414135, + gdpTotal: 1161000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 100.65, + latitude: 15.345, + gdpPerPerson: 16970, + rank: 20, + unemployment: 1, + oilProduction: 310000, + birthRate: 14, + medianAge: 33, + electricity: 124600, + televisions: 15190000, + publicDebt: 38, + internet: 13416000 + }), + new WorldStatsItem( + { + code: `FRA`, + name: `France`, + continent: `Europe`, + population: 67106161, + gdpTotal: 2699000, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 2.267, + latitude: 46.645, + gdpPerPerson: 40220, + rank: 21, + unemployment: 12, + oilProduction: 1, + birthRate: 24, + medianAge: 48, + electricity: 63711, + televisions: 43156970, + publicDebt: 11, + internet: 7012454 + }), + new WorldStatsItem( + { + code: `GBR`, + name: `United Kingdom`, + continent: `Europe`, + population: 64769452, + gdpTotal: 2788000, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -1.233, + latitude: 52.242, + gdpPerPerson: 43045, + rank: 22, + unemployment: 5, + oilProduction: 1636000, + birthRate: 11, + medianAge: 40, + electricity: 372600, + televisions: 30500000, + publicDebt: 44, + internet: 40200000 + }), + new WorldStatsItem( + { + code: `ITA`, + name: `Italy`, + continent: `Europe`, + population: 62137802, + gdpTotal: 2221000, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 15.701, + latitude: 40.885, + gdpPerPerson: 35743, + rank: 23, + unemployment: 6, + oilProduction: 164800, + birthRate: 8, + medianAge: 43, + electricity: 278500, + televisions: 30300000, + publicDebt: 104, + internet: 32000000 + }), + new WorldStatsItem( + { + code: `MMR`, + name: `Myanmar`, + continent: `Asia`, + population: 55123814, + gdpTotal: 311100, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 96.028, + latitude: 21.509, + gdpPerPerson: 5644, + rank: 24, + unemployment: 13, + oilProduction: 4, + birthRate: 24, + medianAge: 37, + electricity: 26955, + televisions: 39322205, + publicDebt: 18, + internet: 30207772 + }), + new WorldStatsItem( + { + code: `ZAF`, + name: `South Africa`, + continent: `Africa`, + population: 54841552, + gdpTotal: 739100, + economy: `Emerging`, + region: `Southern Africa`, + status: `Country`, + longitude: 22.489, + latitude: -32.4, + gdpPerPerson: 13477, + rank: 25, + unemployment: 24, + oilProduction: 200000, + birthRate: 20, + medianAge: 24, + electricity: 264000, + televisions: 6000000, + publicDebt: 31, + internet: 5100000 + }), + new WorldStatsItem( + { + code: `TZA`, + name: `Tanzania`, + continent: `Africa`, + population: 53950935, + gdpTotal: 150600, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 34.894, + latitude: -6.356, + gdpPerPerson: 2791, + rank: 26, + unemployment: 6, + oilProduction: 3, + birthRate: 9, + medianAge: 34, + electricity: 10186, + televisions: 35987980, + publicDebt: 20, + internet: 400000 + }), + new WorldStatsItem( + { + code: `KOR`, + name: `South Korea`, + continent: `Asia`, + population: 51181299, + gdpTotal: 1929000, + economy: `Emerging`, + region: `Eastern Asia`, + status: `Country`, + longitude: 128.29, + latitude: 36.399, + gdpPerPerson: 37690, + rank: 27, + unemployment: 3, + oilProduction: 17050, + birthRate: 9, + medianAge: 37, + electricity: 403200, + televisions: 15900000, + publicDebt: 28, + internet: 35590000 + }), + new WorldStatsItem( + { + code: `ESP`, + name: `Spain`, + continent: `Europe`, + population: 48958159, + gdpTotal: 1690000, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: -2.892, + latitude: 40.569, + gdpPerPerson: 34519, + rank: 28, + unemployment: 8, + oilProduction: 29350, + birthRate: 10, + medianAge: 41, + electricity: 270300, + televisions: 16200000, + publicDebt: 36, + internet: 19690000 + }), + new WorldStatsItem( + { + code: `COL`, + name: `Colombia`, + continent: `South America`, + population: 47698524, + gdpTotal: 688000, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -72.95, + latitude: 4.099, + gdpPerPerson: 14424, + rank: 29, + unemployment: 11, + oilProduction: 531300, + birthRate: 20, + medianAge: 27, + electricity: 50470, + televisions: 4590000, + publicDebt: 53, + internet: 12100000 + }), + new WorldStatsItem( + { + code: `KEN`, + name: `Kenya`, + continent: `Africa`, + population: 47615739, + gdpTotal: 152700, + economy: `Emerging`, + region: `Eastern Africa`, + status: `Country`, + longitude: 37.929, + latitude: 0.4, + gdpPerPerson: 3207, + rank: 30, + unemployment: 40, + oilProduction: 0, + birthRate: 38, + medianAge: 19, + electricity: 5502, + televisions: 730000, + publicDebt: 49, + internet: 3000000 + }), + new WorldStatsItem( + { + code: `ARG`, + name: `Argentina`, + continent: `South America`, + population: 44293293, + gdpTotal: 879400, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -64.84, + latitude: -33.07, + gdpPerPerson: 19854, + rank: 31, + unemployment: 9, + oilProduction: 730000, + birthRate: 18, + medianAge: 30, + electricity: 101100, + televisions: 7950000, + publicDebt: 56, + internet: 9309000 + }), + new WorldStatsItem( + { + code: `UKR`, + name: `Ukraine`, + continent: `Europe`, + population: 44033874, + gdpTotal: 352600, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 30.86, + latitude: 49.723, + gdpPerPerson: 8007, + rank: 32, + unemployment: 2, + oilProduction: 90400, + birthRate: 10, + medianAge: 39, + electricity: 192100, + televisions: 18050000, + publicDebt: 12, + internet: 10000000 + }), + new WorldStatsItem( + { + code: `DZA`, + name: `Algeria`, + continent: `Africa`, + population: 40969443, + gdpTotal: 609400, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 1.642, + latitude: 28.04, + gdpPerPerson: 14875, + rank: 33, + unemployment: 12, + oilProduction: 1358000, + birthRate: 17, + medianAge: 26, + electricity: 31910, + televisions: 3100000, + publicDebt: 18, + internet: 3500000 + }), + new WorldStatsItem( + { + code: `UGA`, + name: `Uganda`, + continent: `Africa`, + population: 39570125, + gdpTotal: 84930, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 32.27, + latitude: 1.375, + gdpPerPerson: 2146, + rank: 34, + unemployment: 10, + oilProduction: 1, + birthRate: 10, + medianAge: 32, + electricity: 35388, + televisions: 27867123, + publicDebt: 21, + internet: 2000000 + }), + new WorldStatsItem( + { + code: `IRQ`, + name: `Iraq`, + continent: `Asia`, + population: 39192111, + gdpTotal: 596700, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 43.66, + latitude: 33.218, + gdpPerPerson: 15225, + rank: 35, + unemployment: 6, + oilProduction: 0, + birthRate: 20, + medianAge: 44, + electricity: 48545, + televisions: 13178804, + publicDebt: 40, + internet: 9538092 + }), + new WorldStatsItem( + { + code: `POL`, + name: `Poland`, + continent: `Europe`, + population: 38476269, + gdpTotal: 1052000, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 20.073, + latitude: 52.374, + gdpPerPerson: 27342, + rank: 36, + unemployment: 13, + oilProduction: 0, + birthRate: 10, + medianAge: 38, + electricity: 146200, + televisions: 13050000, + publicDebt: 43, + internet: 16000000 + }), + new WorldStatsItem( + { + code: `SDN`, + name: `Sudan`, + continent: `Africa`, + population: 37345935, + gdpTotal: 176300, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 30.217, + latitude: 15.434, + gdpPerPerson: 4721, + rank: 37, + unemployment: 19, + oilProduction: 484500, + birthRate: 34, + medianAge: 19, + electricity: 3944, + televisions: 2380000, + publicDebt: 106, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `CAN`, + name: `Canada`, + continent: `North America`, + population: 35623680, + gdpTotal: 1674000, + economy: `Developed`, + region: `Northern America`, + status: `Country`, + longitude: -108, + latitude: 55.855, + gdpPerPerson: 46991, + rank: 38, + unemployment: 6, + oilProduction: 3310000, + birthRate: 10, + medianAge: 40, + electricity: 609600, + televisions: 21500000, + publicDebt: 64, + internet: 28000000 + }), + new WorldStatsItem( + { + code: `AFG`, + name: `Afghanistan`, + continent: `Asia`, + population: 34124811, + gdpTotal: 64080, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 66.041, + latitude: 33.977, + gdpPerPerson: 1878, + rank: 39, + unemployment: 9, + oilProduction: 2, + birthRate: 15, + medianAge: 39, + electricity: 64532, + televisions: 15374294, + publicDebt: 25, + internet: 18662148 + }), + new WorldStatsItem( + { + code: `MAR`, + name: `Morocco`, + continent: `Africa`, + population: 33986655, + gdpTotal: 282800, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: -5.707, + latitude: 32.104, + gdpPerPerson: 8321, + rank: 40, + unemployment: 10, + oilProduction: 300, + birthRate: 21, + medianAge: 25, + electricity: 21370, + televisions: 3100000, + publicDebt: 67, + internet: 7300000 + }), + new WorldStatsItem( + { + code: `MYS`, + name: `Malaysia`, + continent: `Asia`, + population: 31381992, + gdpTotal: 863000, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 101.72, + latitude: 4.89, + gdpPerPerson: 27500, + rank: 41, + unemployment: 3, + oilProduction: 757500, + birthRate: 22, + medianAge: 25, + electricity: 82360, + televisions: 10800000, + publicDebt: 42, + internet: 15868000 + }), + new WorldStatsItem( + { + code: `VEN`, + name: `Venezuela`, + continent: `South America`, + population: 31304016, + gdpTotal: 468600, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -64.78, + latitude: 6.695, + gdpPerPerson: 14969, + rank: 42, + unemployment: 9, + oilProduction: 2398000, + birthRate: 21, + medianAge: 25, + electricity: 99200, + televisions: 4100000, + publicDebt: 19, + internet: 5720000 + }), + new WorldStatsItem( + { + code: `PER`, + name: `Peru`, + continent: `South America`, + population: 31036656, + gdpTotal: 410400, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -73.82, + latitude: -12.89, + gdpPerPerson: 13223, + rank: 43, + unemployment: 7, + oilProduction: 119000, + birthRate: 20, + medianAge: 26, + electricity: 24970, + televisions: 3060000, + publicDebt: 29, + internet: 7636000 + }), + new WorldStatsItem( + { + code: `UZB`, + name: `Uzbekistan`, + continent: `Asia`, + population: 29748859, + gdpTotal: 202300, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 63.288, + latitude: 42.338, + gdpPerPerson: 6800, + rank: 44, + unemployment: 1, + oilProduction: 109400, + birthRate: 18, + medianAge: 24, + electricity: 49000, + televisions: 6400000, + publicDebt: 19, + internet: 1200000 + }), + new WorldStatsItem( + { + code: `NPL`, + name: `Nepal`, + continent: `Asia`, + population: 29384297, + gdpTotal: 71520, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 82.328, + latitude: 28.843, + gdpPerPerson: 2434, + rank: 45, + unemployment: 5, + oilProduction: 3, + birthRate: 18, + medianAge: 34, + electricity: 68842, + televisions: 21075997, + publicDebt: 16, + internet: 7780693 + }), + new WorldStatsItem( + { + code: `AGO`, + name: `Angola`, + continent: `Africa`, + population: 29310273, + gdpTotal: 189000, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 18.097, + latitude: -12.37, + gdpPerPerson: 6448, + rank: 46, + unemployment: 14, + oilProduction: 0, + birthRate: 15, + medianAge: 38, + electricity: 25890, + televisions: 21283158, + publicDebt: 12, + internet: 100000 + }), + new WorldStatsItem( + { + code: `SAU`, + name: `Saudi Arabia`, + continent: `Asia`, + population: 28571770, + gdpTotal: 1731000, + economy: `Developed`, + region: `Middle East`, + status: `Country`, + longitude: 45.129, + latitude: 24.248, + gdpPerPerson: 60584, + rank: 47, + unemployment: 13, + oilProduction: 11000000, + birthRate: 29, + medianAge: 22, + electricity: 165600, + televisions: 5100000, + publicDebt: 24, + internet: 6200000 + }), + new WorldStatsItem( + { + code: `YEM`, + name: `Yemen`, + continent: `Asia`, + population: 28036829, + gdpTotal: 73450, + economy: `Least developed`, + region: `Middle East`, + status: `Country`, + longitude: 48.53, + latitude: 15.658, + gdpPerPerson: 2620, + rank: 48, + unemployment: 35, + oilProduction: 339200, + birthRate: 42, + medianAge: 17, + electricity: 4456, + televisions: 470000, + publicDebt: 34, + internet: 320000 + }), + new WorldStatsItem( + { + code: `GHA`, + name: `Ghana`, + continent: `Africa`, + population: 27499924, + gdpTotal: 120800, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -0.893, + latitude: 8.607, + gdpPerPerson: 4393, + rank: 49, + unemployment: 11, + oilProduction: 700, + birthRate: 29, + medianAge: 20, + electricity: 7042, + televisions: 1900000, + publicDebt: 59, + internet: 650000 + }), + new WorldStatsItem( + { + code: `MOZ`, + name: `Mozambique`, + continent: `Africa`, + population: 26573706, + gdpTotal: 35010, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 38.075, + latitude: -15.41, + gdpPerPerson: 1317, + rank: 50, + unemployment: 21, + oilProduction: 0, + birthRate: 38, + medianAge: 17, + electricity: 13170, + televisions: 67600, + publicDebt: 22, + internet: 200000 + }), + new WorldStatsItem( + { + code: `PRK`, + name: `North Korea`, + continent: `Asia`, + population: 25248140, + gdpTotal: 40000, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 127.01, + latitude: 40.333, + gdpPerPerson: 1584, + rank: 51, + unemployment: 13, + oilProduction: 0, + birthRate: 23, + medianAge: 55, + electricity: 35619, + televisions: 16501842, + publicDebt: 30, + internet: 2340760 + }), + new WorldStatsItem( + { + code: `MDG`, + name: `Madagascar`, + continent: `Africa`, + population: 25054161, + gdpTotal: 36860, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 46.87, + latitude: -18.82, + gdpPerPerson: 1471, + rank: 52, + unemployment: 15, + oilProduction: 0, + birthRate: 20, + medianAge: 36, + electricity: 86068, + televisions: 9470858, + publicDebt: 31, + internet: 1407981 + }), + new WorldStatsItem( + { + code: `CMR`, + name: `Cameroon`, + continent: `Africa`, + population: 24994885, + gdpTotal: 77240, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 12.451, + latitude: 4.365, + gdpPerPerson: 3090, + rank: 53, + unemployment: 30, + oilProduction: 85300, + birthRate: 35, + medianAge: 19, + electricity: 4090, + televisions: 450000, + publicDebt: 16, + internet: 370000 + }), + new WorldStatsItem( + { + code: `CIV`, + name: `Ivory Coast`, + continent: `Africa`, + population: 24184810, + gdpTotal: 87120, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -5.555, + latitude: 7.538, + gdpPerPerson: 3602, + rank: 54, + unemployment: 3, + oilProduction: 1, + birthRate: 17, + medianAge: 55, + electricity: 49302, + televisions: 9034402, + publicDebt: 75, + internet: 300000 + }), + new WorldStatsItem( + { + code: `TWN`, + name: `Taiwan`, + continent: `Asia`, + population: 23508428, + gdpTotal: 1127000, + economy: `Developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 120.96, + latitude: 23.636, + gdpPerPerson: 47940, + rank: 55, + unemployment: 4, + oilProduction: 600, + birthRate: 9, + medianAge: 36, + electricity: 235000, + televisions: 8800000, + publicDebt: 28, + internet: 14760000 + }), + new WorldStatsItem( + { + code: `AUS`, + name: `Australia`, + continent: `Oceania`, + population: 23232413, + gdpTotal: 1189000, + economy: `Developed`, + region: `Australia`, + status: `Country`, + longitude: 135.87, + latitude: -25.63, + gdpPerPerson: 51178, + rank: 56, + unemployment: 4, + oilProduction: 540000, + birthRate: 13, + medianAge: 37, + electricity: 236700, + televisions: 10150000, + publicDebt: 16, + internet: 11240000 + }), + new WorldStatsItem( + { + code: `LKA`, + name: `Sri Lanka`, + continent: `Asia`, + population: 22409381, + gdpTotal: 236700, + economy: `Developing`, + region: `Southern Asia`, + status: `Country`, + longitude: 80.792, + latitude: 7.881, + gdpPerPerson: 10563, + rank: 57, + unemployment: 6, + oilProduction: 0, + birthRate: 17, + medianAge: 30, + electricity: 8411, + televisions: 1530000, + publicDebt: 86, + internet: 771700 + }), + new WorldStatsItem( + { + code: `ROU`, + name: `Romania`, + continent: `Europe`, + population: 21529967, + gdpTotal: 441000, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 24.974, + latitude: 45.967, + gdpPerPerson: 20483, + rank: 58, + unemployment: 4, + oilProduction: 115000, + birthRate: 11, + medianAge: 37, + electricity: 60520, + televisions: 5250000, + publicDebt: 13, + internet: 12000000 + }), + new WorldStatsItem( + { + code: `BFA`, + name: `Burkina Faso`, + continent: `Africa`, + population: 20107509, + gdpTotal: 32990, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -1.567, + latitude: 12.251, + gdpPerPerson: 1641, + rank: 59, + unemployment: 4, + oilProduction: 5, + birthRate: 21, + medianAge: 30, + electricity: 82658, + televisions: 7478745, + publicDebt: 14, + internet: 5896530 + }), + new WorldStatsItem( + { + code: `NER`, + name: `Niger`, + continent: `Africa`, + population: 19245344, + gdpTotal: 20150, + economy: `Least developed`, + region: `Northern Africa`, + status: `Country`, + longitude: 10.845, + latitude: 17.92, + gdpPerPerson: 1047, + rank: 60, + unemployment: 9, + oilProduction: 5, + birthRate: 18, + medianAge: 53, + electricity: 10652, + televisions: 8203307, + publicDebt: 17, + internet: 157021 + }), + new WorldStatsItem( + { + code: `MWI`, + name: `Malawi`, + continent: `Africa`, + population: 19196246, + gdpTotal: 21200, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 34.282, + latitude: -13.26, + gdpPerPerson: 1104, + rank: 61, + unemployment: 12, + oilProduction: 3, + birthRate: 12, + medianAge: 51, + electricity: 20676, + televisions: 4938675, + publicDebt: 51, + internet: 139500 + }), + new WorldStatsItem( + { + code: `KAZ`, + name: `Kazakhstan`, + continent: `Asia`, + population: 18556698, + gdpTotal: 460700, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 66.966, + latitude: 47.999, + gdpPerPerson: 24827, + rank: 62, + unemployment: 7, + oilProduction: 1355000, + birthRate: 16, + medianAge: 29, + electricity: 76340, + televisions: 3880000, + publicDebt: 8, + internet: 1901000 + }), + new WorldStatsItem( + { + code: `SYR`, + name: `Syria`, + continent: `Asia`, + population: 18028549, + gdpTotal: 50280, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 39.062, + latitude: 34.807, + gdpPerPerson: 2789, + rank: 63, + unemployment: 9, + oilProduction: 379000, + birthRate: 27, + medianAge: 21, + electricity: 153200, + televisions: 1050000, + publicDebt: 38, + internet: 3470000 + }), + new WorldStatsItem( + { + code: `MLI`, + name: `Mali`, + continent: `Africa`, + population: 17885245, + gdpTotal: 38090, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -1.496, + latitude: 17.867, + gdpPerPerson: 2130, + rank: 64, + unemployment: 4, + oilProduction: 4, + birthRate: 21, + medianAge: 46, + electricity: 72483, + televisions: 4783188, + publicDebt: 38, + internet: 8619386 + }), + new WorldStatsItem( + { + code: `CHL`, + name: `Chile`, + continent: `South America`, + population: 17789267, + gdpTotal: 436100, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -69.11, + latitude: -23.36, + gdpPerPerson: 24515, + rank: 65, + unemployment: 7, + oilProduction: 15100, + birthRate: 15, + medianAge: 31, + electricity: 47600, + televisions: 3150000, + publicDebt: 4, + internet: 557000 + }), + new WorldStatsItem( + { + code: `NLD`, + name: `Netherlands`, + continent: `Europe`, + population: 17084719, + gdpTotal: 870800, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 6.272, + latitude: 52.971, + gdpPerPerson: 50970, + rank: 66, + unemployment: 5, + oilProduction: 76000, + birthRate: 11, + medianAge: 40, + electricity: 94340, + televisions: 8100000, + publicDebt: 46, + internet: 15000000 + }), + new WorldStatsItem( + { + code: `ECU`, + name: `Ecuador`, + continent: `South America`, + population: 16290913, + gdpTotal: 182400, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -77.98, + latitude: -1.291, + gdpPerPerson: 11196, + rank: 67, + unemployment: 9, + oilProduction: 511100, + birthRate: 22, + medianAge: 24, + electricity: 12940, + televisions: 2500000, + publicDebt: 33, + internet: 1549000 + }), + new WorldStatsItem( + { + code: `KHM`, + name: `Cambodia`, + continent: `Asia`, + population: 16204486, + gdpTotal: 58940, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 104.96, + latitude: 12.558, + gdpPerPerson: 3637, + rank: 68, + unemployment: 15, + oilProduction: 1, + birthRate: 17, + medianAge: 50, + electricity: 45509, + televisions: 2489832, + publicDebt: 22, + internet: 11512560 + }), + new WorldStatsItem( + { + code: `ZMB`, + name: `Zambia`, + continent: `Africa`, + population: 15972000, + gdpTotal: 65170, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 26.301, + latitude: -14.3, + gdpPerPerson: 4080, + rank: 69, + unemployment: 50, + oilProduction: 150, + birthRate: 41, + medianAge: 17, + electricity: 8850, + televisions: 277000, + publicDebt: 28, + internet: 500000 + }), + new WorldStatsItem( + { + code: `GTM`, + name: `Guatemala`, + continent: `North America`, + population: 15460732, + gdpTotal: 131800, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -90.4, + latitude: 15.225, + gdpPerPerson: 8525, + rank: 70, + unemployment: 3, + oilProduction: 13000, + birthRate: 29, + medianAge: 19, + electricity: 7281, + televisions: 1323000, + publicDebt: 21, + internet: 1320000 + }), + new WorldStatsItem( + { + code: `SEN`, + name: `Senegal`, + continent: `Africa`, + population: 14668522, + gdpTotal: 39720, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -14.76, + latitude: 15.47, + gdpPerPerson: 2708, + rank: 71, + unemployment: 48, + oilProduction: 0, + birthRate: 37, + medianAge: 19, + electricity: 2159, + televisions: 361000, + publicDebt: 23, + internet: 820000 + }), + new WorldStatsItem( + { + code: `ZWE`, + name: `Zimbabwe`, + continent: `Africa`, + population: 13805084, + gdpTotal: 28330, + economy: `Emerging`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.115, + latitude: -19.02, + gdpPerPerson: 2052, + rank: 72, + unemployment: 80, + oilProduction: 0, + birthRate: 32, + medianAge: 18, + electricity: 9950, + televisions: 370000, + publicDebt: 218, + internet: 1351000 + }), + new WorldStatsItem( + { + code: `SSD`, + name: `South Sudan`, + continent: `Africa`, + population: 13026129, + gdpTotal: 20880, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.708, + latitude: 7.857, + gdpPerPerson: 1603, + rank: 73, + unemployment: 11, + oilProduction: 5, + birthRate: 8, + medianAge: 43, + electricity: 41476, + televisions: 7716253, + publicDebt: 41, + internet: 4569804 + }), + new WorldStatsItem( + { + code: `GIN`, + name: `Guinea`, + continent: `Africa`, + population: 12413867, + gdpTotal: 16080, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -9.522, + latitude: 10.478, + gdpPerPerson: 1295, + rank: 74, + unemployment: 15, + oilProduction: 4, + birthRate: 5, + medianAge: 49, + electricity: 15826, + televisions: 6262180, + publicDebt: 32, + internet: 6439493 + }), + new WorldStatsItem( + { + code: `TCD`, + name: `Chad`, + continent: `Africa`, + population: 12075985, + gdpTotal: 30590, + economy: `Least developed`, + region: `Northern Africa`, + status: `Country`, + longitude: 18.716, + latitude: 15.46, + gdpPerPerson: 2533, + rank: 75, + unemployment: 15, + oilProduction: 2, + birthRate: 25, + medianAge: 46, + electricity: 57747, + televisions: 8629897, + publicDebt: 33, + internet: 6531943 + }), + new WorldStatsItem( + { + code: `RWA`, + name: `Rwanda`, + continent: `Africa`, + population: 11901484, + gdpTotal: 21970, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.867, + latitude: -1.936, + gdpPerPerson: 1846, + rank: 76, + unemployment: 14, + oilProduction: 0, + birthRate: 23, + medianAge: 51, + electricity: 51710, + televisions: 1363647, + publicDebt: 36, + internet: 2425128 + }), + new WorldStatsItem( + { + code: `BEL`, + name: `Belgium`, + continent: `Europe`, + population: 11491346, + gdpTotal: 508600, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 4.605, + latitude: 50.911, + gdpPerPerson: 44259, + rank: 77, + unemployment: 8, + oilProduction: 9000, + birthRate: 10, + medianAge: 41, + electricity: 80840, + televisions: 4720000, + publicDebt: 85, + internet: 5220000 + }), + new WorldStatsItem( + { + code: `BDI`, + name: `Burundi`, + continent: `Africa`, + population: 11466756, + gdpTotal: 7892, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 29.913, + latitude: -3.384, + gdpPerPerson: 688, + rank: 78, + unemployment: 12, + oilProduction: 3, + birthRate: 16, + medianAge: 35, + electricity: 43850, + televisions: 2920735, + publicDebt: 20, + internet: 3908915 + }), + new WorldStatsItem( + { + code: `TUN`, + name: `Tunisia`, + continent: `Africa`, + population: 11403800, + gdpTotal: 130800, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 9.516, + latitude: 33.785, + gdpPerPerson: 11470, + rank: 79, + unemployment: 14, + oilProduction: 76900, + birthRate: 16, + medianAge: 29, + electricity: 12850, + televisions: 920000, + publicDebt: 55, + internet: 1722000 + }), + new WorldStatsItem( + { + code: `CUB`, + name: `Cuba`, + continent: `North America`, + population: 11147407, + gdpTotal: 132900, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -80.54, + latitude: 22.567, + gdpPerPerson: 11922, + rank: 80, + unemployment: 2, + oilProduction: 58300, + birthRate: 11, + medianAge: 37, + electricity: 16450, + televisions: 2640000, + publicDebt: 37, + internet: 1310000 + }), + new WorldStatsItem( + { + code: `BOL`, + name: `Bolivia`, + continent: `South America`, + population: 11138234, + gdpTotal: 78350, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -63.57, + latitude: -16.3, + gdpPerPerson: 7034, + rank: 81, + unemployment: 8, + oilProduction: 46470, + birthRate: 22, + medianAge: 23, + electricity: 5293, + televisions: 900000, + publicDebt: 46, + internet: 1000000 + }), + new WorldStatsItem( + { + code: `BEN`, + name: `Benin`, + continent: `Africa`, + population: 11038805, + gdpTotal: 24310, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: 2.704, + latitude: 10.535, + gdpPerPerson: 2202, + rank: 82, + unemployment: 2, + oilProduction: 0, + birthRate: 25, + medianAge: 40, + electricity: 13145, + televisions: 7167916, + publicDebt: 34, + internet: 8520122 + }), + new WorldStatsItem( + { + code: `PRT`, + name: `Portugal`, + continent: `Europe`, + population: 10839514, + gdpTotal: 297100, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: -7.757, + latitude: 40.815, + gdpPerPerson: 27409, + rank: 83, + unemployment: 8, + oilProduction: 9500, + birthRate: 10, + medianAge: 39, + electricity: 49040, + televisions: 3310000, + publicDebt: 64, + internet: 3549000 + }), + new WorldStatsItem( + { + code: `GRC`, + name: `Greece`, + continent: `Europe`, + population: 10768477, + gdpTotal: 290500, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 21.871, + latitude: 39.558, + gdpPerPerson: 26977, + rank: 84, + unemployment: 8, + oilProduction: 5687, + birthRate: 10, + medianAge: 42, + electricity: 56130, + televisions: 2540000, + publicDebt: 90, + internet: 2540000 + }), + new WorldStatsItem( + { + code: `DOM`, + name: `Dominican Republic`, + continent: `North America`, + population: 10734247, + gdpTotal: 161900, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -70.17, + latitude: 18.775, + gdpPerPerson: 15083, + rank: 85, + unemployment: 16, + oilProduction: 12, + birthRate: 23, + medianAge: 25, + electricity: 12220, + televisions: 770000, + publicDebt: 41, + internet: 1677000 + }), + new WorldStatsItem( + { + code: `CZE`, + name: `Czechia`, + continent: `Europe`, + population: 10674723, + gdpTotal: 350900, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 15.461, + latitude: 49.807, + gdpPerPerson: 32872, + rank: 86, + unemployment: 7, + oilProduction: 18030, + birthRate: 9, + medianAge: 40, + electricity: 77380, + televisions: 3405834, + publicDebt: 26, + internet: 4400000 + }), + new WorldStatsItem( + { + code: `HTI`, + name: `Haiti`, + continent: `North America`, + population: 10646714, + gdpTotal: 19340, + economy: `Least developed`, + region: `Central America`, + status: `Country`, + longitude: -72.23, + latitude: 19.342, + gdpPerPerson: 1817, + rank: 87, + unemployment: 15, + oilProduction: 2, + birthRate: 9, + medianAge: 52, + electricity: 12871, + televisions: 4329511, + publicDebt: 25, + internet: 4777792 + }), + new WorldStatsItem( + { + code: `JOR`, + name: `Jordan`, + continent: `Asia`, + population: 10248069, + gdpTotal: 86190, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 38.125, + latitude: 32.309, + gdpPerPerson: 8410, + rank: 88, + unemployment: 14, + oilProduction: 0, + birthRate: 20, + medianAge: 24, + electricity: 9074, + televisions: 500000, + publicDebt: 72, + internet: 1127000 + }), + new WorldStatsItem( + { + code: `AZE`, + name: `Azerbaijan`, + continent: `Asia`, + population: 9961396, + gdpTotal: 167900, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 48.401, + latitude: 40.344, + gdpPerPerson: 16855, + rank: 89, + unemployment: 1, + oilProduction: 934700, + birthRate: 18, + medianAge: 28, + electricity: 23800, + televisions: 170000, + publicDebt: 7, + internet: 1036000 + }), + new WorldStatsItem( + { + code: `SWE`, + name: `Sweden`, + continent: `Europe`, + population: 9960487, + gdpTotal: 498100, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 17.594, + latitude: 64.621, + gdpPerPerson: 50008, + rank: 90, + unemployment: 6, + oilProduction: 2350, + birthRate: 10, + medianAge: 41, + electricity: 153200, + televisions: 4600000, + publicDebt: 42, + internet: 7000000 + }), + new WorldStatsItem( + { + code: `HUN`, + name: `Hungary`, + continent: `Europe`, + population: 9850845, + gdpTotal: 267600, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 19.485, + latitude: 47.153, + gdpPerPerson: 27165, + rank: 91, + unemployment: 7, + oilProduction: 42180, + birthRate: 10, + medianAge: 39, + electricity: 33690, + televisions: 4420000, + publicDebt: 67, + internet: 4200000 + }), + new WorldStatsItem( + { + code: `BLR`, + name: `Belarus`, + continent: `Europe`, + population: 9549747, + gdpTotal: 165400, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 27.943, + latitude: 53.705, + gdpPerPerson: 17320, + rank: 92, + unemployment: 15, + oilProduction: 5, + birthRate: 7, + medianAge: 33, + electricity: 84070, + televisions: 3348094, + publicDebt: 6, + internet: 3754027 + }), + new WorldStatsItem( + { + code: `HND`, + name: `Honduras`, + continent: `North America`, + population: 9038741, + gdpTotal: 43190, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -86.74, + latitude: 14.889, + gdpPerPerson: 4778, + rank: 93, + unemployment: 28, + oilProduction: 0, + birthRate: 27, + medianAge: 20, + electricity: 5339, + televisions: 570000, + publicDebt: 24, + internet: 344100 + }), + new WorldStatsItem( + { + code: `AUT`, + name: `Austria`, + continent: `Europe`, + population: 8754413, + gdpTotal: 416600, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 14.987, + latitude: 47.624, + gdpPerPerson: 47587, + rank: 94, + unemployment: 4, + oilProduction: 23320, + birthRate: 9, + medianAge: 42, + electricity: 61020, + televisions: 10150000, + publicDebt: 59, + internet: 4277000 + }), + new WorldStatsItem( + { + code: `TJK`, + name: `Tajikistan`, + continent: `Asia`, + population: 8468555, + gdpTotal: 25810, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 71.234, + latitude: 38.86, + gdpPerPerson: 3048, + rank: 95, + unemployment: 11, + oilProduction: 5, + birthRate: 8, + medianAge: 44, + electricity: 56534, + televisions: 6542566, + publicDebt: 44, + internet: 4521889 + }), + new WorldStatsItem( + { + code: `ISR`, + name: `Israel`, + continent: `Asia`, + population: 8299706, + gdpTotal: 297000, + economy: `Developed`, + region: `Middle East`, + status: `Country`, + longitude: 34.977, + latitude: 30.748, + gdpPerPerson: 35784, + rank: 96, + unemployment: 7, + oilProduction: 100, + birthRate: 20, + medianAge: 29, + electricity: 46850, + televisions: 1690000, + publicDebt: 81, + internet: 2000000 + }), + new WorldStatsItem( + { + code: `CHE`, + name: `Switzerland`, + continent: `Europe`, + population: 8236303, + gdpTotal: 496300, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 7.865, + latitude: 46.729, + gdpPerPerson: 60258, + rank: 97, + unemployment: 3, + oilProduction: 3202, + birthRate: 10, + medianAge: 41, + electricity: 56100, + televisions: 3310000, + publicDebt: 44, + internet: 4610000 + }), + new WorldStatsItem( + { + code: `TGO`, + name: `Togo`, + continent: `Africa`, + population: 7965055, + gdpTotal: 11610, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: 1.146, + latitude: 6.799, + gdpPerPerson: 1458, + rank: 98, + unemployment: 3, + oilProduction: 4, + birthRate: 9, + medianAge: 37, + electricity: 28181, + televisions: 2309082, + publicDebt: 41, + internet: 789456 + }), + new WorldStatsItem( + { + code: `SOM`, + name: `Somalia`, + continent: `Africa`, + population: 7531386, + gdpTotal: 4719, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 44.134, + latitude: 3.077, + gdpPerPerson: 627, + rank: 99, + unemployment: 2, + oilProduction: 4, + birthRate: 12, + medianAge: 50, + electricity: 29272, + televisions: 1648650, + publicDebt: 22, + internet: 3227211 + }), + new WorldStatsItem( + { + code: `HKG`, + name: `Hong Kong`, + continent: `Asia`, + population: 7191503, + gdpTotal: 427400, + economy: `Developing`, + region: `Eastern Asia`, + status: `Dependency`, + longitude: 114.08, + latitude: 22.38, + gdpPerPerson: 59431, + rank: 100, + unemployment: 3, + oilProduction: 0, + birthRate: 8, + medianAge: 55, + electricity: 86792, + televisions: 4084025, + publicDebt: 35, + internet: 3907543 + }), + new WorldStatsItem( + { + code: `LAO`, + name: `Laos`, + continent: `Asia`, + population: 7126706, + gdpTotal: 40960, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 102.36, + latitude: 20.171, + gdpPerPerson: 5747, + rank: 101, + unemployment: 8, + oilProduction: 0, + birthRate: 6, + medianAge: 34, + electricity: 7093, + televisions: 4503172, + publicDebt: 19, + internet: 5426041 + }), + new WorldStatsItem( + { + code: `SRB`, + name: `Serbia`, + continent: `Europe`, + population: 7111024, + gdpTotal: 101800, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 20.908, + latitude: 44.206, + gdpPerPerson: 14316, + rank: 102, + unemployment: 5, + oilProduction: 4, + birthRate: 13, + medianAge: 48, + electricity: 30150, + televisions: 1316607, + publicDebt: 17, + internet: 4104775 + }), + new WorldStatsItem( + { + code: `BGR`, + name: `Bulgaria`, + continent: `Europe`, + population: 7101510, + gdpTotal: 143100, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 25.465, + latitude: 42.741, + gdpPerPerson: 20151, + rank: 103, + unemployment: 8, + oilProduction: 3661, + birthRate: 10, + medianAge: 41, + electricity: 45700, + televisions: 3310000, + publicDebt: 11, + internet: 1899000 + }), + new WorldStatsItem( + { + code: `PRY`, + name: `Paraguay`, + continent: `South America`, + population: 6943739, + gdpTotal: 64670, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -58.44, + latitude: -23.42, + gdpPerPerson: 9313, + rank: 104, + unemployment: 6, + oilProduction: 0, + birthRate: 28, + medianAge: 22, + electricity: 70000, + televisions: 990000, + publicDebt: 27, + internet: 280000 + }), + new WorldStatsItem( + { + code: `PNG`, + name: `Papua New Guinea`, + continent: `Oceania`, + population: 6909701, + gdpTotal: 28020, + economy: `Developing`, + region: `Melanesia`, + status: `Country`, + longitude: 143.62, + latitude: -5.836, + gdpPerPerson: 4055, + rank: 105, + unemployment: 2, + oilProduction: 47800, + birthRate: 28, + medianAge: 22, + electricity: 3698, + televisions: 59841, + publicDebt: 40, + internet: 110000 + }), + new WorldStatsItem( + { + code: `LBY`, + name: `Libya`, + continent: `Africa`, + population: 6653210, + gdpTotal: 90890, + economy: `Developing`, + region: `Northern Africa`, + status: `Country`, + longitude: 17.23, + latitude: 26.339, + gdpPerPerson: 13661, + rank: 106, + unemployment: 30, + oilProduction: 1712000, + birthRate: 26, + medianAge: 24, + electricity: 21150, + televisions: 730000, + publicDebt: 5, + internet: 260000 + }), + new WorldStatsItem( + { + code: `LBN`, + name: `Lebanon`, + continent: `Asia`, + population: 6229794, + gdpTotal: 85160, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 36.042, + latitude: 34.168, + gdpPerPerson: 13670, + rank: 107, + unemployment: 20, + oilProduction: 0, + birthRate: 18, + medianAge: 29, + electricity: 9183, + televisions: 1180000, + publicDebt: 187, + internet: 950000 + }), + new WorldStatsItem( + { + code: `SLV`, + name: `El Salvador`, + continent: `North America`, + population: 6172011, + gdpTotal: 54790, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -88.91, + latitude: 13.798, + gdpPerPerson: 8877, + rank: 108, + unemployment: 6, + oilProduction: 0, + birthRate: 26, + medianAge: 22, + electricity: 5316, + televisions: 600000, + publicDebt: 37, + internet: 700000 + }), + new WorldStatsItem( + { + code: `SLE`, + name: `Sierra Leone`, + continent: `Africa`, + population: 6163195, + gdpTotal: 10640, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -11.78, + latitude: 8.452, + gdpPerPerson: 1726, + rank: 109, + unemployment: 14, + oilProduction: 4, + birthRate: 6, + medianAge: 37, + electricity: 37412, + televisions: 2727270, + publicDebt: 6, + internet: 223239 + }), + new WorldStatsItem( + { + code: `ARE`, + name: `United Arab Emirates`, + continent: `Asia`, + population: 6072475, + gdpTotal: 667200, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 54.192, + latitude: 23.795, + gdpPerPerson: 109873, + rank: 110, + unemployment: 2, + oilProduction: 2510000, + birthRate: 16, + medianAge: 30, + electricity: 57060, + televisions: 310000, + publicDebt: 21, + internet: 2300000 + }), + new WorldStatsItem( + { + code: `NIC`, + name: `Nicaragua`, + continent: `North America`, + population: 6025951, + gdpTotal: 33550, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -85.09, + latitude: 12.523, + gdpPerPerson: 5568, + rank: 111, + unemployment: 5, + oilProduction: 0, + birthRate: 24, + medianAge: 22, + electricity: 2778, + televisions: 320000, + publicDebt: 63, + internet: 155000 + }), + new WorldStatsItem( + { + code: `ERI`, + name: `Eritrea`, + continent: `Africa`, + population: 5918919, + gdpTotal: 9169, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 39.772, + latitude: 15.191, + gdpPerPerson: 1549, + rank: 112, + unemployment: 9, + oilProduction: 5, + birthRate: 17, + medianAge: 54, + electricity: 67474, + televisions: 2078077, + publicDebt: 41, + internet: 1067843 + }), + new WorldStatsItem( + { + code: `SGP`, + name: `Singapore`, + continent: `Asia`, + population: 5888926, + gdpTotal: 487900, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 103.82, + latitude: 1.356, + gdpPerPerson: 82850, + rank: 113, + unemployment: 2, + oilProduction: 9836, + birthRate: 9, + medianAge: 38, + electricity: 39440, + televisions: 1330000, + publicDebt: 96, + internet: 3105000 + }), + new WorldStatsItem( + { + code: `KGZ`, + name: `Kyrgyzstan`, + continent: `Asia`, + population: 5789122, + gdpTotal: 21010, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 74.738, + latitude: 41.224, + gdpPerPerson: 3629, + rank: 114, + unemployment: 12, + oilProduction: 1, + birthRate: 21, + medianAge: 42, + electricity: 16640, + televisions: 2101152, + publicDebt: 15, + internet: 738896 + }), + new WorldStatsItem( + { + code: `CAF`, + name: `Central African Republic`, + continent: `Africa`, + population: 5625118, + gdpTotal: 3206, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 20.917, + latitude: 6.633, + gdpPerPerson: 570, + rank: 115, + unemployment: 8, + oilProduction: 5, + birthRate: 13, + medianAge: 32, + electricity: 71424, + televisions: 635931, + publicDebt: 29, + internet: 1933873 + }), + new WorldStatsItem( + { + code: `DNK`, + name: `Denmark`, + continent: `Europe`, + population: 5605948, + gdpTotal: 264800, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 9.348, + latitude: 56.13, + gdpPerPerson: 47236, + rank: 116, + unemployment: 3, + oilProduction: 342000, + birthRate: 11, + medianAge: 40, + electricity: 43350, + televisions: 3121000, + publicDebt: 26, + internet: 3500000 + }), + new WorldStatsItem( + { + code: `FIN`, + name: `Finland`, + continent: `Europe`, + population: 5491218, + gdpTotal: 224137, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 25.988, + latitude: 61.841, + gdpPerPerson: 40817, + rank: 117, + unemployment: 7, + oilProduction: 8951, + birthRate: 10, + medianAge: 42, + electricity: 73470, + televisions: 3200000, + publicDebt: 36, + internet: 3600000 + }), + new WorldStatsItem( + { + code: `SVK`, + name: `Slovakia`, + continent: `Europe`, + population: 5445829, + gdpTotal: 168800, + economy: `Developed`, + region: `Eastern Europe`, + status: `Country`, + longitude: 18.877, + latitude: 48.702, + gdpPerPerson: 30996, + rank: 118, + unemployment: 8, + oilProduction: 12840, + birthRate: 11, + medianAge: 37, + electricity: 29890, + televisions: 2620000, + publicDebt: 36, + internet: 2350000 + }), + new WorldStatsItem( + { + code: `TKM`, + name: `Turkmenistan`, + continent: `Asia`, + population: 5351277, + gdpTotal: 94720, + economy: `Developing`, + region: `Central Asia`, + status: `Country`, + longitude: 59.562, + latitude: 38.975, + gdpPerPerson: 17700, + rank: 119, + unemployment: 11, + oilProduction: 4, + birthRate: 11, + medianAge: 43, + electricity: 91281, + televisions: 2935468, + publicDebt: 17, + internet: 3203210 + }), + new WorldStatsItem( + { + code: `NOR`, + name: `Norway`, + continent: `Europe`, + population: 5320045, + gdpTotal: 364700, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 9.66, + latitude: 60.712, + gdpPerPerson: 68552, + rank: 120, + unemployment: 3, + oilProduction: 2560000, + birthRate: 11, + medianAge: 39, + electricity: 135800, + televisions: 2030000, + publicDebt: 83, + internet: 3800000 + }), + new WorldStatsItem( + { + code: `IRL`, + name: `Ireland`, + continent: `Europe`, + population: 5011102, + gdpTotal: 322000, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -8.209, + latitude: 53.42, + gdpPerPerson: 64257, + rank: 121, + unemployment: 5, + oilProduction: 0, + birthRate: 14, + medianAge: 35, + electricity: 24130, + televisions: 1820000, + publicDebt: 25, + internet: 1708000 + }), + new WorldStatsItem( + { + code: `COG`, + name: `Congo`, + continent: `Africa`, + population: 4954674, + gdpTotal: 30270, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 16.264, + latitude: -0.07, + gdpPerPerson: 6109, + rank: 122, + unemployment: 13, + oilProduction: 4, + birthRate: 11, + medianAge: 52, + electricity: 83556, + televisions: 1560800, + publicDebt: 6, + internet: 2650237 + }), + new WorldStatsItem( + { + code: `CRI`, + name: `Costa Rica`, + continent: `North America`, + population: 4930258, + gdpTotal: 79260, + economy: `Emerging`, + region: `Central America`, + status: `Country`, + longitude: -83.91, + latitude: 9.92, + gdpPerPerson: 16076, + rank: 123, + unemployment: 5, + oilProduction: 0, + birthRate: 18, + medianAge: 27, + electricity: 8349, + televisions: 525000, + publicDebt: 47, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `GEO`, + name: `Georgia`, + continent: `Asia`, + population: 4926330, + gdpTotal: 37270, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 43.257, + latitude: 42.162, + gdpPerPerson: 7565, + rank: 124, + unemployment: 15, + oilProduction: 5, + birthRate: 10, + medianAge: 43, + electricity: 44936, + televisions: 2728128, + publicDebt: 29, + internet: 3844448 + }), + new WorldStatsItem( + { + code: `LBR`, + name: `Liberia`, + continent: `Africa`, + population: 4689021, + gdpTotal: 3881, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -9.454, + latitude: 6.445, + gdpPerPerson: 828, + rank: 125, + unemployment: 4, + oilProduction: 0, + birthRate: 8, + medianAge: 35, + electricity: 89626, + televisions: 3065112, + publicDebt: 38, + internet: 1475304 + }), + new WorldStatsItem( + { + code: `PSE`, + name: `Palestine`, + continent: `Asia`, + population: 4543126, + gdpTotal: 21221, + economy: `Developing`, + region: `Middle East`, + status: `Disputed`, + longitude: 35.347, + latitude: 32.031, + gdpPerPerson: 4671, + rank: 126, + unemployment: 9, + oilProduction: 1, + birthRate: 10, + medianAge: 48, + electricity: 45973, + televisions: 2774033, + publicDebt: 16, + internet: 1718915 + }), + new WorldStatsItem( + { + code: `NZL`, + name: `New Zealand`, + continent: `Oceania`, + population: 4510327, + gdpTotal: 174800, + economy: `Developed`, + region: `Australia`, + status: `Country`, + longitude: 169.42, + latitude: -44.86, + gdpPerPerson: 38756, + rank: 127, + unemployment: 4, + oilProduction: 25880, + birthRate: 14, + medianAge: 36, + electricity: 42060, + televisions: 1926000, + publicDebt: 21, + internet: 3360000 + }), + new WorldStatsItem( + { + code: `HRV`, + name: `Croatia`, + continent: `Europe`, + population: 4292095, + gdpTotal: 94240, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 16.847, + latitude: 45.674, + gdpPerPerson: 21957, + rank: 128, + unemployment: 12, + oilProduction: 17100, + birthRate: 10, + medianAge: 41, + electricity: 11990, + televisions: 1220000, + publicDebt: 48, + internet: 1995000 + }), + new WorldStatsItem( + { + code: `BIH`, + name: `Bosnia`, + continent: `Europe`, + population: 3856181, + gdpTotal: 42530, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 17.66, + latitude: 43.918, + gdpPerPerson: 11029, + rank: 129, + unemployment: 46, + oilProduction: 0, + birthRate: 9, + medianAge: 39, + electricity: 12220, + televisions: 0, + publicDebt: 34, + internet: 1055000 + }), + new WorldStatsItem( + { + code: `MRT`, + name: `Mauritania`, + continent: `Africa`, + population: 3758571, + gdpTotal: 16710, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -8.89, + latitude: 20.387, + gdpPerPerson: 4446, + rank: 130, + unemployment: 9, + oilProduction: 5, + birthRate: 25, + medianAge: 50, + electricity: 15176, + televisions: 2558125, + publicDebt: 29, + internet: 2098221 + }), + new WorldStatsItem( + { + code: `PAN`, + name: `Panama`, + continent: `North America`, + population: 3753142, + gdpTotal: 93120, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -81.17, + latitude: 8.457, + gdpPerPerson: 24811, + rank: 131, + unemployment: 6, + oilProduction: 0, + birthRate: 21, + medianAge: 27, + electricity: 5661, + televisions: 510000, + publicDebt: 53, + internet: 525200 + }), + new WorldStatsItem( + { + code: `SOL`, + name: `Somaliland`, + continent: `Africa`, + population: 3500000, + gdpTotal: 12250, + economy: `Developing`, + region: `Eastern Africa`, + status: `Indeterminate`, + longitude: 45.798, + latitude: 9.748, + gdpPerPerson: 3500, + rank: 132, + unemployment: 1, + oilProduction: 4, + birthRate: 13, + medianAge: 43, + electricity: 73247, + televisions: 2235408, + publicDebt: 21, + internet: 1300238 + }), + new WorldStatsItem( + { + code: `MDA`, + name: `Moldova`, + continent: `Europe`, + population: 3474121, + gdpTotal: 18540, + economy: `Developing`, + region: `Eastern Europe`, + status: `Country`, + longitude: 28.552, + latitude: 47.515, + gdpPerPerson: 5337, + rank: 133, + unemployment: 2, + oilProduction: 0, + birthRate: 11, + medianAge: 34, + electricity: 3881, + televisions: 1260000, + publicDebt: 23, + internet: 700000 + }), + new WorldStatsItem( + { + code: `OMN`, + name: `Oman`, + continent: `Asia`, + population: 3424386, + gdpTotal: 173100, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 57.563, + latitude: 22.014, + gdpPerPerson: 50549, + rank: 134, + unemployment: 15, + oilProduction: 710800, + birthRate: 35, + medianAge: 19, + electricity: 11890, + televisions: 1600000, + publicDebt: 4, + internet: 340000 + }), + new WorldStatsItem( + { + code: `URY`, + name: `Uruguay`, + continent: `South America`, + population: 3360148, + gdpTotal: 73250, + economy: `Emerging`, + region: `South America`, + status: `Country`, + longitude: -55.78, + latitude: -32.51, + gdpPerPerson: 21800, + rank: 135, + unemployment: 9, + oilProduction: 27830, + birthRate: 14, + medianAge: 33, + electricity: 9200, + televisions: 782000, + publicDebt: 65, + internet: 968000 + }), + new WorldStatsItem( + { + code: `PRI`, + name: `Puerto Rico`, + continent: `North America`, + population: 3351827, + gdpTotal: 131000, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -66.61, + latitude: 18.235, + gdpPerPerson: 39083, + rank: 136, + unemployment: 5, + oilProduction: 3, + birthRate: 11, + medianAge: 32, + electricity: 19677, + televisions: 1917997, + publicDebt: 25, + internet: 608062 + }), + new WorldStatsItem( + { + code: `MNG`, + name: `Mongolia`, + continent: `Asia`, + population: 3068243, + gdpTotal: 37000, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 103.82, + latitude: 46.856, + gdpPerPerson: 12059, + rank: 137, + unemployment: 4, + oilProduction: 1, + birthRate: 7, + medianAge: 35, + electricity: 3875, + televisions: 1726758, + publicDebt: 17, + internet: 562546 + }), + new WorldStatsItem( + { + code: `ALB`, + name: `Albania`, + continent: `Europe`, + population: 3047987, + gdpTotal: 33900, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 19.964, + latitude: 40.759, + gdpPerPerson: 11122, + rank: 138, + unemployment: 13, + oilProduction: 7006, + birthRate: 15, + medianAge: 30, + electricity: 5385, + televisions: 700000, + publicDebt: 51, + internet: 471200 + }), + new WorldStatsItem( + { + code: `ARM`, + name: `Armenia`, + continent: `Asia`, + population: 3045191, + gdpTotal: 26300, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 44.646, + latitude: 40.618, + gdpPerPerson: 8637, + rank: 139, + unemployment: 4, + oilProduction: 4, + birthRate: 14, + medianAge: 39, + electricity: 71042, + televisions: 2390201, + publicDebt: 9, + internet: 488333 + }), + new WorldStatsItem( + { + code: `JAM`, + name: `Jamaica`, + continent: `North America`, + population: 2990561, + gdpTotal: 25390, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -77.27, + latitude: 18.119, + gdpPerPerson: 8490, + rank: 140, + unemployment: 10, + oilProduction: 0, + birthRate: 20, + medianAge: 23, + electricity: 6985, + televisions: 460000, + publicDebt: 127, + internet: 1500000 + }), + new WorldStatsItem( + { + code: `KWT`, + name: `Kuwait`, + continent: `Asia`, + population: 2875422, + gdpTotal: 301100, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 47.487, + latitude: 29.315, + gdpPerPerson: 104715, + rank: 141, + unemployment: 2, + oilProduction: 2440000, + birthRate: 22, + medianAge: 26, + electricity: 41110, + televisions: 875000, + publicDebt: 10, + internet: 900000 + }), + new WorldStatsItem( + { + code: `LTU`, + name: `Lithuania`, + continent: `Europe`, + population: 2823859, + gdpTotal: 85620, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 23.838, + latitude: 55.152, + gdpPerPerson: 30320, + rank: 142, + unemployment: 4, + oilProduction: 13160, + birthRate: 9, + medianAge: 39, + electricity: 13480, + televisions: 1700000, + publicDebt: 17, + internet: 1330000 + }), + new WorldStatsItem( + { + code: `NAM`, + name: `Namibia`, + continent: `Africa`, + population: 2484780, + gdpTotal: 25990, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 16.944, + latitude: -20.52, + gdpPerPerson: 10460, + rank: 143, + unemployment: 5, + oilProduction: 0, + birthRate: 23, + medianAge: 21, + electricity: 1688, + televisions: 60000, + publicDebt: 22, + internet: 101000 + }), + new WorldStatsItem( + { + code: `QAT`, + name: `Qatar`, + continent: `Asia`, + population: 2314307, + gdpTotal: 334500, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 51.182, + latitude: 25.359, + gdpPerPerson: 144536, + rank: 144, + unemployment: 1, + oilProduction: 797500, + birthRate: 16, + medianAge: 31, + electricity: 13540, + televisions: 230000, + publicDebt: 11, + internet: 351000 + }), + new WorldStatsItem( + { + code: `BWA`, + name: `Botswana`, + continent: `Africa`, + population: 2214858, + gdpTotal: 35900, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 24.671, + latitude: -22.32, + gdpPerPerson: 16209, + rank: 145, + unemployment: 8, + oilProduction: 0, + birthRate: 23, + medianAge: 21, + electricity: 912, + televisions: 31000, + publicDebt: 5, + internet: 80000 + }), + new WorldStatsItem( + { + code: `MKD`, + name: `North Macedonia`, + continent: `Europe`, + population: 2103721, + gdpTotal: 29520, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 21.727, + latitude: 41.604, + gdpPerPerson: 14032, + rank: 146, + unemployment: 35, + oilProduction: 0, + birthRate: 12, + medianAge: 35, + electricity: 6051, + televisions: 510000, + publicDebt: 31, + internet: 685000 + }), + new WorldStatsItem( + { + code: `GMB`, + name: `Gambia`, + continent: `Africa`, + population: 2051363, + gdpTotal: 3387, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -15.32, + latitude: 13.438, + gdpPerPerson: 1651, + rank: 147, + unemployment: 7, + oilProduction: 1, + birthRate: 11, + medianAge: 37, + electricity: 9769, + televisions: 1486289, + publicDebt: 30, + internet: 187890 + }), + new WorldStatsItem( + { + code: `SVN`, + name: `Slovenia`, + continent: `Europe`, + population: 1972126, + gdpTotal: 68350, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 14.947, + latitude: 46.146, + gdpPerPerson: 34658, + rank: 148, + unemployment: 8, + oilProduction: 5, + birthRate: 9, + medianAge: 41, + electricity: 14900, + televisions: 710000, + publicDebt: 24, + internet: 1300000 + }), + new WorldStatsItem( + { + code: `LSO`, + name: `Lesotho`, + continent: `Africa`, + population: 1958042, + gdpTotal: 6019, + economy: `Least developed`, + region: `Southern Africa`, + status: `Country`, + longitude: 28.221, + latitude: -29.61, + gdpPerPerson: 3074, + rank: 149, + unemployment: 12, + oilProduction: 2, + birthRate: 8, + medianAge: 32, + electricity: 20229, + televisions: 1457517, + publicDebt: 14, + internet: 1375222 + }), + new WorldStatsItem( + { + code: `LVA`, + name: `Latvia`, + continent: `Europe`, + population: 1944643, + gdpTotal: 50650, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 26.505, + latitude: 56.755, + gdpPerPerson: 26046, + rank: 150, + unemployment: 6, + oilProduction: 0, + birthRate: 10, + medianAge: 40, + electricity: 4778, + televisions: 1220000, + publicDebt: 7, + internet: 1770000 + }), + new WorldStatsItem( + { + code: `RKS`, + name: `Kosovo`, + continent: `Europe`, + population: 1895250, + gdpTotal: 18490, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 20.891, + latitude: 42.557, + gdpPerPerson: 9756, + rank: 151, + unemployment: 12, + oilProduction: 0, + birthRate: 8, + medianAge: 55, + electricity: 14878, + televisions: 1287863, + publicDebt: 20, + internet: 1422193 + }), + new WorldStatsItem( + { + code: `GNB`, + name: `Guinea-Bissau`, + continent: `Africa`, + population: 1792338, + gdpTotal: 2851, + economy: `Least developed`, + region: `Western Africa`, + status: `Country`, + longitude: -14.59, + latitude: 11.942, + gdpPerPerson: 1591, + rank: 152, + unemployment: 5, + oilProduction: 5, + birthRate: 5, + medianAge: 55, + electricity: 74684, + televisions: 1427462, + publicDebt: 8, + internet: 365000 + }), + new WorldStatsItem( + { + code: `GAB`, + name: `Gabon`, + continent: `Africa`, + population: 1772255, + gdpTotal: 35980, + economy: `Developing`, + region: `Middle Africa`, + status: `Country`, + longitude: 11.592, + latitude: -0.807, + gdpPerPerson: 20302, + rank: 153, + unemployment: 21, + oilProduction: 240000, + birthRate: 36, + medianAge: 19, + electricity: 1520, + televisions: 63000, + publicDebt: 53, + internet: 145000 + }), + new WorldStatsItem( + { + code: `SWZ`, + name: `Eswatini`, + continent: `Africa`, + population: 1467152, + gdpTotal: 11060, + economy: `Developing`, + region: `Southern Africa`, + status: `Country`, + longitude: 31.45, + latitude: -26.52, + gdpPerPerson: 7538, + rank: 154, + unemployment: 6, + oilProduction: 3, + birthRate: 17, + medianAge: 39, + electricity: 72804, + televisions: 229393, + publicDebt: 5, + internet: 427760 + }), + new WorldStatsItem( + { + code: `BHR`, + name: `Bahrain`, + continent: `Asia`, + population: 1410942, + gdpTotal: 66370, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 50.535, + latitude: 26.027, + gdpPerPerson: 47039, + rank: 155, + unemployment: 15, + oilProduction: 184300, + birthRate: 17, + medianAge: 30, + electricity: 8187, + televisions: 275000, + publicDebt: 31, + internet: 250000 + }), + new WorldStatsItem( + { + code: `MUS`, + name: `Mauritius`, + continent: `Africa`, + population: 1356388, + gdpTotal: 25850, + economy: `Developing`, + region: `Eastern Africa`, + status: `Country`, + longitude: 57.555, + latitude: -20.25, + gdpPerPerson: 19058, + rank: 156, + unemployment: 9, + oilProduction: 0, + birthRate: 15, + medianAge: 32, + electricity: 2350, + televisions: 258000, + publicDebt: 63, + internet: 340000 + }), + new WorldStatsItem( + { + code: `TLS`, + name: `Timor-Leste`, + continent: `Asia`, + population: 1291358, + gdpTotal: 4975, + economy: `Least developed`, + region: `Eastern Asia`, + status: `Country`, + longitude: 125.66, + latitude: -8.826, + gdpPerPerson: 3853, + rank: 157, + unemployment: 8, + oilProduction: 5, + birthRate: 18, + medianAge: 48, + electricity: 84061, + televisions: 416260, + publicDebt: 25, + internet: 267437 + }), + new WorldStatsItem( + { + code: `EST`, + name: `Estonia`, + continent: `Europe`, + population: 1251581, + gdpTotal: 38700, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: 25.441, + latitude: 58.845, + gdpPerPerson: 30921, + rank: 158, + unemployment: 5, + oilProduction: 6930, + birthRate: 10, + medianAge: 40, + electricity: 9599, + televisions: 605000, + publicDebt: 3, + internet: 780000 + }), + new WorldStatsItem( + { + code: `CYP`, + name: `Cyprus`, + continent: `Asia`, + population: 1221549, + gdpTotal: 29260, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 33.176, + latitude: 34.876, + gdpPerPerson: 23953, + rank: 159, + unemployment: 4, + oilProduction: 0, + birthRate: 13, + medianAge: 35, + electricity: 4618, + televisions: 0, + publicDebt: 60, + internet: 380000 + }), + new WorldStatsItem( + { + code: `TTO`, + name: `Trinidad and Tobago`, + continent: `North America`, + population: 1218208, + gdpTotal: 43570, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.21, + latitude: 10.352, + gdpPerPerson: 35766, + rank: 160, + unemployment: 4, + oilProduction: 5, + birthRate: 15, + medianAge: 47, + electricity: 58959, + televisions: 359389, + publicDebt: 29, + internet: 152416 + }), + new WorldStatsItem( + { + code: `FJI`, + name: `Fiji`, + continent: `Oceania`, + population: 920938, + gdpTotal: 8374, + economy: `Developing`, + region: `Melanesia`, + status: `Country`, + longitude: 177.85, + latitude: -17.75, + gdpPerPerson: 9093, + rank: 161, + unemployment: 11, + oilProduction: 5, + birthRate: 5, + medianAge: 41, + electricity: 88931, + televisions: 517580, + publicDebt: 17, + internet: 539400 + }), + new WorldStatsItem( + { + code: `DJI`, + name: `Djibouti`, + continent: `Africa`, + population: 865267, + gdpTotal: 3345, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 42.587, + latitude: 11.825, + gdpPerPerson: 3866, + rank: 162, + unemployment: 5, + oilProduction: 3, + birthRate: 17, + medianAge: 44, + electricity: 91593, + televisions: 209004, + publicDebt: 43, + internet: 476114 + }), + new WorldStatsItem( + { + code: `COM`, + name: `Comoros`, + continent: `Africa`, + population: 808080, + gdpTotal: 1259, + economy: `Least developed`, + region: `Eastern Africa`, + status: `Country`, + longitude: 43.877, + latitude: -11.86, + gdpPerPerson: 1558, + rank: 163, + unemployment: 11, + oilProduction: 3, + birthRate: 14, + medianAge: 46, + electricity: 6146, + televisions: 495921, + publicDebt: 10, + internet: 459977 + }), + new WorldStatsItem( + { + code: `GNQ`, + name: `Equatorial Guinea`, + continent: `Africa`, + population: 778358, + gdpTotal: 31770, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 10.521, + latitude: 1.763, + gdpPerPerson: 40817, + rank: 164, + unemployment: 30, + oilProduction: 385500, + birthRate: 37, + medianAge: 19, + electricity: 28, + televisions: 4000, + publicDebt: 2, + internet: 8000 + }), + new WorldStatsItem( + { + code: `BTN`, + name: `Bhutan`, + continent: `Asia`, + population: 758288, + gdpTotal: 6432, + economy: `Least developed`, + region: `Southern Asia`, + status: `Country`, + longitude: 90.411, + latitude: 27.506, + gdpPerPerson: 8482, + rank: 165, + unemployment: 3, + oilProduction: 0, + birthRate: 21, + medianAge: 24, + electricity: 2000, + televisions: 11000, + publicDebt: 81, + internet: 40000 + }), + new WorldStatsItem( + { + code: `GUY`, + name: `Guyana`, + continent: `South America`, + population: 737718, + gdpTotal: 6093, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -58.96, + latitude: 5.607, + gdpPerPerson: 8259, + rank: 166, + unemployment: 2, + oilProduction: 3, + birthRate: 9, + medianAge: 37, + electricity: 84988, + televisions: 149848, + publicDebt: 12, + internet: 134377 + }), + new WorldStatsItem( + { + code: `SLB`, + name: `Solomon Islands`, + continent: `Oceania`, + population: 647581, + gdpTotal: 1198, + economy: `Least developed`, + region: `Melanesia`, + status: `Country`, + longitude: 161.3, + latitude: -9.221, + gdpPerPerson: 1850, + rank: 167, + unemployment: 4, + oilProduction: 3, + birthRate: 18, + medianAge: 30, + electricity: 3432, + televisions: 177555, + publicDebt: 43, + internet: 478635 + }), + new WorldStatsItem( + { + code: `MNE`, + name: `Montenegro`, + continent: `Europe`, + population: 642550, + gdpTotal: 10610, + economy: `Developing`, + region: `Southern Europe`, + status: `Country`, + longitude: 19.191, + latitude: 42.814, + gdpPerPerson: 16512, + rank: 168, + unemployment: 10, + oilProduction: 2, + birthRate: 24, + medianAge: 46, + electricity: 24709, + televisions: 126756, + publicDebt: 29, + internet: 336628 + }), + new WorldStatsItem( + { + code: `ESH`, + name: `Western Sahara`, + continent: `Africa`, + population: 603253, + gdpTotal: 907, + economy: `Least developed`, + region: `Northern Africa`, + status: `Dependency`, + longitude: -12.89, + latitude: 24.231, + gdpPerPerson: 1504, + rank: 169, + unemployment: 6, + oilProduction: 1, + birthRate: 23, + medianAge: 30, + electricity: 11081, + televisions: 237857, + publicDebt: 30, + internet: 306624 + }), + new WorldStatsItem( + { + code: `MAC`, + name: `Macao`, + continent: `Asia`, + population: 601969, + gdpTotal: 63220, + economy: `Developing`, + region: `Eastern Asia`, + status: `Dependency`, + longitude: 113.51, + latitude: 22.221, + gdpPerPerson: 105022, + rank: 170, + unemployment: 10, + oilProduction: 2, + birthRate: 10, + medianAge: 47, + electricity: 77896, + televisions: 163859, + publicDebt: 18, + internet: 62728 + }), + new WorldStatsItem( + { + code: `LUX`, + name: `Luxembourg`, + continent: `Europe`, + population: 594130, + gdpTotal: 58740, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 6.109, + latitude: 49.806, + gdpPerPerson: 98867, + rank: 171, + unemployment: 4, + oilProduction: 0, + birthRate: 12, + medianAge: 39, + electricity: 3156, + televisions: 285000, + publicDebt: 6, + internet: 345000 + }), + new WorldStatsItem( + { + code: `SUR`, + name: `Suriname`, + continent: `South America`, + population: 591919, + gdpTotal: 8547, + economy: `Developing`, + region: `South America`, + status: `Country`, + longitude: -56.02, + latitude: 4.506, + gdpPerPerson: 14439, + rank: 172, + unemployment: 5, + oilProduction: 1, + birthRate: 16, + medianAge: 44, + electricity: 82658, + televisions: 69068, + publicDebt: 31, + internet: 367104 + }), + new WorldStatsItem( + { + code: `CPV`, + name: `Cabo Verde`, + continent: `Africa`, + population: 560899, + gdpTotal: 3583, + economy: `Developing`, + region: `Western Africa`, + status: `Country`, + longitude: -25.16, + latitude: 17.102, + gdpPerPerson: 6388, + rank: 173, + unemployment: 12, + oilProduction: 1, + birthRate: 12, + medianAge: 54, + electricity: 60647, + televisions: 101289, + publicDebt: 34, + internet: 40105 + }), + new WorldStatsItem( + { + code: `BRN`, + name: `Brunei`, + continent: `Asia`, + population: 443593, + gdpTotal: 33730, + economy: `Developing`, + region: `Eastern Asia`, + status: `Country`, + longitude: 114.69, + latitude: 4.523, + gdpPerPerson: 76038, + rank: 174, + unemployment: 4, + oilProduction: 0, + birthRate: 17, + medianAge: 32, + electricity: 50701, + televisions: 235042, + publicDebt: 16, + internet: 188751 + }), + new WorldStatsItem( + { + code: `MLT`, + name: `Malta`, + continent: `Europe`, + population: 416338, + gdpTotal: 16320, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 14.373, + latitude: 35.948, + gdpPerPerson: 39199, + rank: 175, + unemployment: 7, + oilProduction: 4, + birthRate: 6, + medianAge: 52, + electricity: 77444, + televisions: 282390, + publicDebt: 41, + internet: 317612 + }), + new WorldStatsItem( + { + code: `MDV`, + name: `Maldives`, + continent: `Asia`, + population: 392709, + gdpTotal: 5407, + economy: `Developing`, + region: `Southern Asia`, + status: `Country`, + longitude: 73.455, + latitude: 3.739, + gdpPerPerson: 13768, + rank: 176, + unemployment: 13, + oilProduction: 4, + birthRate: 10, + medianAge: 43, + electricity: 26004, + televisions: 156412, + publicDebt: 28, + internet: 45331 + }), + new WorldStatsItem( + { + code: `BLZ`, + name: `Belize`, + continent: `North America`, + population: 360346, + gdpTotal: 3088, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -88.51, + latitude: 17.185, + gdpPerPerson: 8570, + rank: 177, + unemployment: 4, + oilProduction: 2, + birthRate: 7, + medianAge: 36, + electricity: 57433, + televisions: 127478, + publicDebt: 36, + internet: 223855 + }), + new WorldStatsItem( + { + code: `ISL`, + name: `Iceland`, + continent: `Europe`, + population: 339747, + gdpTotal: 16150, + economy: `Developed`, + region: `Northern Europe`, + status: `Country`, + longitude: -19.01, + latitude: 64.966, + gdpPerPerson: 47535, + rank: 178, + unemployment: 1, + oilProduction: 0, + birthRate: 14, + medianAge: 35, + electricity: 8533, + televisions: 98000, + publicDebt: 28, + internet: 202300 + }), + new WorldStatsItem( + { + code: `BHS`, + name: `Bahamas`, + continent: `North America`, + population: 329988, + gdpTotal: 9066, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -78.01, + latitude: 24.761, + gdpPerPerson: 27474, + rank: 179, + unemployment: 5, + oilProduction: 2, + birthRate: 17, + medianAge: 47, + electricity: 38395, + televisions: 203588, + publicDebt: 6, + internet: 91807 + }), + new WorldStatsItem( + { + code: `FRG`, + name: `French Guiana`, + continent: `South America`, + population: 296161, + gdpTotal: 1299000, + economy: `Developed`, + region: `South America`, + status: `Dependency`, + longitude: -53.13, + latitude: 3.893, + gdpPerPerson: 4386, + rank: 180, + unemployment: 3, + oilProduction: 0, + birthRate: 15, + medianAge: 55, + electricity: 73845, + televisions: 147489, + publicDebt: 35, + internet: 209593 + }), + new WorldStatsItem( + { + code: `BRB`, + name: `Barbados`, + continent: `North America`, + population: 292336, + gdpTotal: 4804, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -59.53, + latitude: 13.19, + gdpPerPerson: 16433, + rank: 181, + unemployment: 8, + oilProduction: 3, + birthRate: 21, + medianAge: 51, + electricity: 28728, + televisions: 173392, + publicDebt: 12, + internet: 73593 + }), + new WorldStatsItem( + { + code: `PYF`, + name: `Fr. Polynesia`, + continent: `Oceania`, + population: 287881, + gdpTotal: 5490, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -143.9, + latitude: -14.82, + gdpPerPerson: 19070, + rank: 182, + unemployment: 1, + oilProduction: 4, + birthRate: 6, + medianAge: 45, + electricity: 46206, + televisions: 43757, + publicDebt: 12, + internet: 172560 + }), + new WorldStatsItem( + { + code: `VUT`, + name: `Vanuatu`, + continent: `Oceania`, + population: 282814, + gdpTotal: 723, + economy: `Least developed`, + region: `Melanesia`, + status: `Country`, + longitude: 168.21, + latitude: -16.97, + gdpPerPerson: 2556, + rank: 183, + unemployment: 11, + oilProduction: 4, + birthRate: 17, + medianAge: 39, + electricity: 50581, + televisions: 187584, + publicDebt: 42, + internet: 223352 + }), + new WorldStatsItem( + { + code: `NCL`, + name: `New Caledonia`, + continent: `Oceania`, + population: 279070, + gdpTotal: 10770, + economy: `Developing`, + region: `Melanesia`, + status: `Dependency`, + longitude: 165.26, + latitude: -21.09, + gdpPerPerson: 38592, + rank: 184, + unemployment: 10, + oilProduction: 3, + birthRate: 6, + medianAge: 49, + electricity: 18361, + televisions: 79923, + publicDebt: 45, + internet: 149003 + }), + new WorldStatsItem( + { + code: `NCP`, + name: `Northern Cyprus`, + continent: `Asia`, + population: 265100, + gdpTotal: 3600, + economy: `Developing`, + region: `Middle East`, + status: `Country`, + longitude: 33.714, + latitude: 35.257, + gdpPerPerson: 13580, + rank: 185, + unemployment: 4, + oilProduction: 5, + birthRate: 25, + medianAge: 51, + electricity: 84000, + televisions: 135551, + publicDebt: 30, + internet: 167480 + }), + new WorldStatsItem( + { + code: `STP`, + name: `Sao Tome and Principe`, + continent: `Africa`, + population: 201025, + gdpTotal: 694, + economy: `Least developed`, + region: `Middle Africa`, + status: `Country`, + longitude: 6.598, + latitude: 0.248, + gdpPerPerson: 3452, + rank: 186, + unemployment: 1, + oilProduction: 3, + birthRate: 24, + medianAge: 30, + electricity: 6691, + televisions: 65480, + publicDebt: 12, + internet: 121162 + }), + new WorldStatsItem( + { + code: `WSM`, + name: `Samoa`, + continent: `Oceania`, + population: 200108, + gdpTotal: 1046, + economy: `Least developed`, + region: `Polynesia`, + status: `Country`, + longitude: -172.1, + latitude: -13.75, + gdpPerPerson: 5227, + rank: 187, + unemployment: 3, + oilProduction: 2, + birthRate: 7, + medianAge: 46, + electricity: 50118, + televisions: 54930, + publicDebt: 42, + internet: 84739 + }), + new WorldStatsItem( + { + code: `GUM`, + name: `Guam`, + continent: `Oceania`, + population: 167358, + gdpTotal: 4882, + economy: `Developing`, + region: `Micronesia`, + status: `Dependency`, + longitude: 144.79, + latitude: 13.44, + gdpPerPerson: 29171, + rank: 188, + unemployment: 15, + oilProduction: 2, + birthRate: 24, + medianAge: 42, + electricity: 64229, + televisions: 43567, + publicDebt: 37, + internet: 121131 + }), + new WorldStatsItem( + { + code: `LCA`, + name: `Saint Lucia`, + continent: `North America`, + population: 164994, + gdpTotal: 2083, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -60.98, + latitude: 13.905, + gdpPerPerson: 12625, + rank: 189, + unemployment: 3, + oilProduction: 2, + birthRate: 14, + medianAge: 32, + electricity: 75473, + televisions: 87743, + publicDebt: 7, + internet: 64498 + }), + new WorldStatsItem( + { + code: `CUW`, + name: `Curacao`, + continent: `North America`, + population: 149648, + gdpTotal: 3128, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -68.95, + latitude: 12.213, + gdpPerPerson: 20902, + rank: 190, + unemployment: 6, + oilProduction: 1, + birthRate: 7, + medianAge: 35, + electricity: 74665, + televisions: 89830, + publicDebt: 36, + internet: 55905 + }), + new WorldStatsItem( + { + code: `ABW`, + name: `Aruba`, + continent: `North America`, + population: 115120, + gdpTotal: 2516, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -69.98, + latitude: 12.519, + gdpPerPerson: 21855, + rank: 191, + unemployment: 7, + oilProduction: 2356, + birthRate: 13, + medianAge: 38, + electricity: 770, + televisions: 20000, + publicDebt: 46, + internet: 24000 + }), + new WorldStatsItem( + { + code: `GRD`, + name: `Grenada`, + continent: `North America`, + population: 111724, + gdpTotal: 1511, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.69, + latitude: 12.123, + gdpPerPerson: 13524, + rank: 192, + unemployment: 10, + oilProduction: 0, + birthRate: 10, + medianAge: 50, + electricity: 4992, + televisions: 58674, + publicDebt: 42, + internet: 33132 + }), + new WorldStatsItem( + { + code: `KIR`, + name: `Kiribati`, + continent: `Oceania`, + population: 108145, + gdpTotal: 211, + economy: `Least developed`, + region: `Micronesia`, + status: `Country`, + longitude: -157.333, + latitude: 1.884, + gdpPerPerson: 1951, + rank: 193, + unemployment: 13, + oilProduction: 4, + birthRate: 9, + medianAge: 52, + electricity: 37081, + televisions: 52395, + publicDebt: 40, + internet: 36620 + }), + new WorldStatsItem( + { + code: `VIR`, + name: `U.S. Virgin Island`, + continent: `North America`, + population: 107268, + gdpTotal: 3792, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -64.77, + latitude: 17.77, + gdpPerPerson: 35351, + rank: 194, + unemployment: 11, + oilProduction: 2, + birthRate: 12, + medianAge: 38, + electricity: 13387, + televisions: 77187, + publicDebt: 43, + internet: 40836 + }), + new WorldStatsItem( + { + code: `TON`, + name: `Tonga`, + continent: `Oceania`, + population: 106479, + gdpTotal: 557, + economy: `Developing`, + region: `Polynesia`, + status: `Country`, + longitude: -173.9, + latitude: -18.62, + gdpPerPerson: 5231, + rank: 195, + unemployment: 4, + oilProduction: 4, + birthRate: 5, + medianAge: 33, + electricity: 88735, + televisions: 30257, + publicDebt: 25, + internet: 71756 + }), + new WorldStatsItem( + { + code: `FSM`, + name: `Micronesia`, + continent: `Oceania`, + population: 104196, + gdpTotal: 314, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 150.52, + latitude: 7.435, + gdpPerPerson: 3014, + rank: 196, + unemployment: 9, + oilProduction: 5, + birthRate: 5, + medianAge: 38, + electricity: 39068, + televisions: 45396, + publicDebt: 40, + internet: 29169 + }), + new WorldStatsItem( + { + code: `VCT`, + name: `St. Vin. and Gren.`, + continent: `North America`, + population: 102089, + gdpTotal: 1241, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.17, + latitude: 13.239, + gdpPerPerson: 12156, + rank: 197, + unemployment: 10, + oilProduction: 5, + birthRate: 7, + medianAge: 30, + electricity: 39467, + televisions: 42804, + publicDebt: 9, + internet: 66754 + }), + new WorldStatsItem( + { + code: `JEY`, + name: `Jersey`, + continent: `Europe`, + population: 98840, + gdpTotal: 5080, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -2.123, + latitude: 49.218, + gdpPerPerson: 51396, + rank: 198, + unemployment: 4, + oilProduction: 1, + birthRate: 18, + medianAge: 30, + electricity: 64261, + televisions: 52453, + publicDebt: 34, + internet: 3026 + }), + new WorldStatsItem( + { + code: `ATG`, + name: `Antigua and Barbuda`, + continent: `North America`, + population: 94731, + gdpTotal: 2171, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.79, + latitude: 17.096, + gdpPerPerson: 22918, + rank: 199, + unemployment: 3, + oilProduction: 1, + birthRate: 5, + medianAge: 36, + electricity: 35849, + televisions: 75384, + publicDebt: 32, + internet: 6170 + }), + new WorldStatsItem( + { + code: `SYC`, + name: `Seychelles`, + continent: `Africa`, + population: 93920, + gdpTotal: 2608, + economy: `Developing`, + region: `Eastern Africa`, + status: `Country`, + longitude: 55.463, + latitude: -4.672, + gdpPerPerson: 27768, + rank: 200, + unemployment: 2, + oilProduction: 0, + birthRate: 16, + medianAge: 29, + electricity: 252, + televisions: 11000, + publicDebt: 92, + internet: 32000 + }), + new WorldStatsItem( + { + code: `IMN`, + name: `Isle of Man`, + continent: `Europe`, + population: 88815, + gdpTotal: 7428, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -4.562, + latitude: 54.233, + gdpPerPerson: 83635, + rank: 201, + unemployment: 4, + oilProduction: 4, + birthRate: 14, + medianAge: 36, + electricity: 15745, + televisions: 25734, + publicDebt: 13, + internet: 2650 + }), + new WorldStatsItem( + { + code: `AND`, + name: `Andorra`, + continent: `Europe`, + population: 85702, + gdpTotal: 3327, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 1.578, + latitude: 42.539, + gdpPerPerson: 38821, + rank: 202, + unemployment: 11, + oilProduction: 3, + birthRate: 20, + medianAge: 50, + electricity: 56209, + televisions: 42797, + publicDebt: 33, + internet: 42006 + }), + new WorldStatsItem( + { + code: `MHL`, + name: `Marshall Islands`, + continent: `Oceania`, + population: 74539, + gdpTotal: 180, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 169.3, + latitude: 8.484, + gdpPerPerson: 2415, + rank: 203, + unemployment: 3, + oilProduction: 3, + birthRate: 23, + medianAge: 42, + electricity: 78832, + televisions: 15193, + publicDebt: 44, + internet: 8536 + }), + new WorldStatsItem( + { + code: `DMA`, + name: `Dominica`, + continent: `North America`, + population: 73897, + gdpTotal: 812, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -61.36, + latitude: 15.43, + gdpPerPerson: 10988, + rank: 204, + unemployment: 6, + oilProduction: 1, + birthRate: 13, + medianAge: 35, + electricity: 49809, + televisions: 17676, + publicDebt: 37, + internet: 2616 + }), + new WorldStatsItem( + { + code: `BMU`, + name: `Bermuda`, + continent: `North America`, + population: 70864, + gdpTotal: 5198, + economy: `Developed`, + region: `Northern America`, + status: `Dependency`, + longitude: -64.76, + latitude: 32.323, + gdpPerPerson: 73352, + rank: 205, + unemployment: 15, + oilProduction: 1, + birthRate: 21, + medianAge: 43, + electricity: 54728, + televisions: 16336, + publicDebt: 27, + internet: 41606 + }), + new WorldStatsItem( + { + code: `GGY`, + name: `Guernsey`, + continent: `Europe`, + population: 66502, + gdpTotal: 3465, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: -2.579, + latitude: 49.468, + gdpPerPerson: 52104, + rank: 206, + unemployment: 2, + oilProduction: 1, + birthRate: 25, + medianAge: 33, + electricity: 9806, + televisions: 24638, + publicDebt: 34, + internet: 29222 + }), + new WorldStatsItem( + { + code: `CYM`, + name: `Cayman Island`, + continent: `North America`, + population: 58441, + gdpTotal: 2507, + economy: `Emerging`, + region: `Central America`, + status: `Dependency`, + longitude: -81.25, + latitude: 19.343, + gdpPerPerson: 42898, + rank: 207, + unemployment: 12, + oilProduction: 3, + birthRate: 7, + medianAge: 35, + electricity: 70206, + televisions: 28885, + publicDebt: 21, + internet: 9332 + }), + new WorldStatsItem( + { + code: `GRL`, + name: `Greenland`, + continent: `North America`, + population: 57713, + gdpTotal: 2173, + economy: `Developed`, + region: `Northern America`, + status: `Dependency`, + longitude: -42.12, + latitude: 69.547, + gdpPerPerson: 37652, + rank: 208, + unemployment: 7, + oilProduction: 5, + birthRate: 19, + medianAge: 42, + electricity: 86090, + televisions: 43741, + publicDebt: 42, + internet: 11423 + }), + new WorldStatsItem( + { + code: `KNA`, + name: `St. Kitts and Nevis`, + continent: `North America`, + population: 52715, + gdpTotal: 1427, + economy: `Developing`, + region: `Central America`, + status: `Country`, + longitude: -62.77, + latitude: 17.351, + gdpPerPerson: 27070, + rank: 209, + unemployment: 5, + oilProduction: 2, + birthRate: 18, + medianAge: 40, + electricity: 65438, + televisions: 17719, + publicDebt: 11, + internet: 8543 + }), + new WorldStatsItem( + { + code: `TCA`, + name: `Turks and Caicos Is.`, + continent: `North America`, + population: 52570, + gdpTotal: 632, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -71.96, + latitude: 21.913, + gdpPerPerson: 12022, + rank: 210, + unemployment: 6, + oilProduction: 0, + birthRate: 13, + medianAge: 42, + electricity: 51325, + televisions: 13109, + publicDebt: 13, + internet: 24564 + }), + new WorldStatsItem( + { + code: `MNP`, + name: `N. Mariana Island`, + continent: `Oceania`, + population: 52263, + gdpTotal: 682, + economy: `Developing`, + region: `Micronesia`, + status: `Dependency`, + longitude: 145.49, + latitude: 16.459, + gdpPerPerson: 13049, + rank: 211, + unemployment: 10, + oilProduction: 1, + birthRate: 9, + medianAge: 46, + electricity: 87386, + televisions: 13049, + publicDebt: 20, + internet: 5484 + }), + new WorldStatsItem( + { + code: `ASM`, + name: `American Samoa`, + continent: `Oceania`, + population: 51504, + gdpTotal: 711, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -170.6, + latitude: -14.3, + gdpPerPerson: 13805, + rank: 212, + unemployment: 3, + oilProduction: 4, + birthRate: 13, + medianAge: 42, + electricity: 65918, + televisions: 18802, + publicDebt: 23, + internet: 14691 + }), + new WorldStatsItem( + { + code: `FRO`, + name: `Faeroe Island`, + continent: `Europe`, + population: 50730, + gdpTotal: 2001, + economy: `Developed`, + region: `Northern Europe`, + status: `Dependency`, + longitude: -6.857, + latitude: 62.178, + gdpPerPerson: 39444, + rank: 213, + unemployment: 15, + oilProduction: 2, + birthRate: 11, + medianAge: 46, + electricity: 55029, + televisions: 11762, + publicDebt: 13, + internet: 2412 + }), + new WorldStatsItem( + { + code: `SXM`, + name: `Sint Maarten`, + continent: `North America`, + population: 42083, + gdpTotal: 366, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.06, + latitude: 18.044, + gdpPerPerson: 8697, + rank: 214, + unemployment: 14, + oilProduction: 4, + birthRate: 19, + medianAge: 50, + electricity: 17166, + televisions: 8474, + publicDebt: 33, + internet: 14309 + }), + new WorldStatsItem( + { + code: `LIE`, + name: `Liechtenstein`, + continent: `Europe`, + population: 38244, + gdpTotal: 4978, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 9.545, + latitude: 47.164, + gdpPerPerson: 130164, + rank: 215, + unemployment: 11, + oilProduction: 3, + birthRate: 10, + medianAge: 55, + electricity: 80781, + televisions: 23104, + publicDebt: 21, + internet: 8159 + }), + new WorldStatsItem( + { + code: `VGB`, + name: `British Virgin Island`, + continent: `North America`, + population: 35015, + gdpTotal: 500, + economy: `Developed`, + region: `Central America`, + status: `Dependency`, + longitude: -64.6, + latitude: 18.44, + gdpPerPerson: 14280, + rank: 216, + unemployment: 13, + oilProduction: 2, + birthRate: 6, + medianAge: 51, + electricity: 47732, + televisions: 17777, + publicDebt: 7, + internet: 6238 + }), + new WorldStatsItem( + { + code: `SMR`, + name: `San Marino`, + continent: `Europe`, + population: 33537, + gdpTotal: 2023, + economy: `Developed`, + region: `Southern Europe`, + status: `Country`, + longitude: 12.456, + latitude: 43.942, + gdpPerPerson: 60321, + rank: 217, + unemployment: 10, + oilProduction: 0, + birthRate: 15, + medianAge: 48, + electricity: 21943, + televisions: 22355, + publicDebt: 34, + internet: 23505 + }), + new WorldStatsItem( + { + code: `MAF`, + name: `St. Martin`, + continent: `North America`, + population: 32125, + gdpTotal: 562, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.06, + latitude: 18.092, + gdpPerPerson: 17494, + rank: 218, + unemployment: 15, + oilProduction: 5, + birthRate: 10, + medianAge: 34, + electricity: 76791, + televisions: 17592, + publicDebt: 43, + internet: 25032 + }), + new WorldStatsItem( + { + code: `MCO`, + name: `Monaco`, + continent: `Europe`, + population: 30645, + gdpTotal: 7672, + economy: `Developed`, + region: `Western Europe`, + status: `Country`, + longitude: 7.408, + latitude: 43.751, + gdpPerPerson: 250351, + rank: 219, + unemployment: 15, + oilProduction: 5, + birthRate: 18, + medianAge: 31, + electricity: 73517, + televisions: 10057, + publicDebt: 10, + internet: 18394 + }), + new WorldStatsItem( + { + code: `ALA`, + name: `Aland Islands`, + continent: `Europe`, + population: 27153, + gdpTotal: 1563, + economy: `Developed`, + region: `Northern Europe`, + status: `Territory`, + longitude: 20.065, + latitude: 60.209, + gdpPerPerson: 57563, + rank: 220, + unemployment: 14, + oilProduction: 3, + birthRate: 15, + medianAge: 54, + electricity: 69394, + televisions: 14696, + publicDebt: 19, + internet: 2736 + }), + new WorldStatsItem( + { + code: `PLW`, + name: `Palau`, + continent: `Oceania`, + population: 21431, + gdpTotal: 276, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 134.63, + latitude: 7.532, + gdpPerPerson: 12879, + rank: 221, + unemployment: 8, + oilProduction: 1, + birthRate: 7, + medianAge: 39, + electricity: 88599, + televisions: 3019, + publicDebt: 8, + internet: 17075 + }), + new WorldStatsItem( + { + code: `AIA`, + name: `Anguilla`, + continent: `North America`, + population: 17087, + gdpTotal: 175, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -63.07, + latitude: 18.221, + gdpPerPerson: 10242, + rank: 222, + unemployment: 9, + oilProduction: 1, + birthRate: 10, + medianAge: 49, + electricity: 68590, + televisions: 10632, + publicDebt: 40, + internet: 8703 + }), + new WorldStatsItem( + { + code: `WLF`, + name: `Wallis Island`, + continent: `Oceania`, + population: 15714, + gdpTotal: 60, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -177.1, + latitude: -13.77, + gdpPerPerson: 3818, + rank: 223, + unemployment: 15, + oilProduction: 0, + birthRate: 0, + medianAge: 0, + electricity: 0, + televisions: 0, + publicDebt: 6, + internet: 900 + }), + new WorldStatsItem( + { + code: `NRU`, + name: `Nauru`, + continent: `Oceania`, + population: 9642, + gdpTotal: 151, + economy: `Developing`, + region: `Micronesia`, + status: `Country`, + longitude: 166.93, + latitude: -0.52, + gdpPerPerson: 15661, + rank: 224, + unemployment: 5, + oilProduction: 3, + birthRate: 17, + medianAge: 32, + electricity: 84092, + televisions: 1777, + publicDebt: 34, + internet: 4585 + }), + new WorldStatsItem( + { + code: `COK`, + name: `Cook Island`, + continent: `Oceania`, + population: 9290, + gdpTotal: 244, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -159.7, + latitude: -21.21, + gdpPerPerson: 26265, + rank: 225, + unemployment: 15, + oilProduction: 1, + birthRate: 6, + medianAge: 45, + electricity: 41320, + televisions: 3712, + publicDebt: 24, + internet: 3555 + }), + new WorldStatsItem( + { + code: `SHN`, + name: `Saint Helena`, + continent: `Africa`, + population: 7828, + gdpTotal: 31, + economy: `Developing`, + region: `Western Africa`, + status: `Dependency`, + longitude: -10.03, + latitude: -11.94, + gdpPerPerson: 3960, + rank: 226, + unemployment: 13, + oilProduction: 1, + birthRate: 17, + medianAge: 48, + electricity: 84435, + televisions: 3812, + publicDebt: 15, + internet: 5530 + }), + new WorldStatsItem( + { + code: `BLM`, + name: `St. Barthalemy`, + continent: `North America`, + population: 7184, + gdpTotal: 255, + economy: `Developed`, + region: `Central America`, + status: `Dependency`, + longitude: -62.83, + latitude: 17.899, + gdpPerPerson: 35496, + rank: 227, + unemployment: 14, + oilProduction: 0, + birthRate: 23, + medianAge: 46, + electricity: 36112, + televisions: 4072, + publicDebt: 27, + internet: 5097 + }), + new WorldStatsItem( + { + code: `KAS`, + name: `Siachen Glacier`, + continent: `Asia`, + population: 6000, + gdpTotal: 15, + economy: `Developing`, + region: `Southern Asia`, + status: `Territory`, + longitude: 77.283, + latitude: 35.386, + gdpPerPerson: 2500, + rank: 228, + unemployment: 7, + oilProduction: 0, + birthRate: 9, + medianAge: 55, + electricity: 62932, + televisions: 936, + publicDebt: 14, + internet: 1303 + }), + new WorldStatsItem( + { + code: `SPM`, + name: `St. Pierre and Miquelon`, + continent: `North America`, + population: 5533, + gdpTotal: 215, + economy: `Developed`, + region: `Northern America`, + status: `Territory`, + longitude: -56.26, + latitude: 46.926, + gdpPerPerson: 38858, + rank: 229, + unemployment: 13, + oilProduction: 0, + birthRate: 13, + medianAge: 42, + electricity: 61277, + televisions: 2067, + publicDebt: 18, + internet: 2924 + }), + new WorldStatsItem( + { + code: `MSR`, + name: `Montserrat`, + continent: `North America`, + population: 5292, + gdpTotal: 44, + economy: `Developing`, + region: `Central America`, + status: `Dependency`, + longitude: -62.18, + latitude: 16.745, + gdpPerPerson: 8314, + rank: 230, + unemployment: 13, + oilProduction: 1, + birthRate: 12, + medianAge: 50, + electricity: 19088, + televisions: 1964, + publicDebt: 44, + internet: 4009 + }), + new WorldStatsItem( + { + code: `IOT`, + name: `British Indian Territory`, + continent: `Asia`, + population: 4000, + gdpTotal: 160, + economy: `Developed`, + region: `Southern Asia`, + status: `Dependency`, + longitude: 72.424, + latitude: -7.328, + gdpPerPerson: 40000, + rank: 232, + unemployment: 13, + oilProduction: 0, + birthRate: 6, + medianAge: 47, + electricity: 91829, + televisions: 1510, + publicDebt: 14, + internet: 1656 + }), + new WorldStatsItem( + { + code: `FLK`, + name: `Falkland Island`, + continent: `South America`, + population: 2931, + gdpTotal: 282, + economy: `Developed`, + region: `South America`, + status: `Dependency`, + longitude: -59.46, + latitude: -51.78, + gdpPerPerson: 96213, + rank: 233, + unemployment: 3, + oilProduction: 5, + birthRate: 9, + medianAge: 36, + electricity: 68007, + televisions: 1489, + publicDebt: 22, + internet: 1335 + }), + new WorldStatsItem( + { + code: `NFK`, + name: `Norfolk Island`, + continent: `Oceania`, + population: 2210, + gdpTotal: 33, + economy: `Developing`, + region: `Australia`, + status: `Dependency`, + longitude: 167.94, + latitude: -29.05, + gdpPerPerson: 14932, + rank: 234, + unemployment: 1, + oilProduction: 0, + birthRate: 15, + medianAge: 46, + electricity: 91943, + televisions: 583, + publicDebt: 41, + internet: 1183 + }), + new WorldStatsItem( + { + code: `NIU`, + name: `Niue`, + continent: `Oceania`, + population: 1626, + gdpTotal: 10, + economy: `Developing`, + region: `Polynesia`, + status: `Dependency`, + longitude: -169.8, + latitude: -19.05, + gdpPerPerson: 6150, + rank: 235, + unemployment: 15, + oilProduction: 4, + birthRate: 17, + medianAge: 51, + electricity: 16785, + televisions: 585, + publicDebt: 31, + internet: 1247 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.ts b/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.ts index 3985fa6fab..c99ac85760 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/src/index.ts @@ -1,7 +1,6 @@ import { IgcLegendModule, IgcNumberAbbreviatorModule, IgcDataChartCoreModule, IgcDataChartScatterModule, IgcDataChartScatterCoreModule, IgcDataChartInteractivityModule, IgcDataChartAnnotationModule } from 'igniteui-webcomponents-charts'; -import { IgcLegendComponent, IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; -import { CountryStatsAfricaItem, CountryStatsAfrica } from './CountryStatsAfrica'; -import { CountryStatsEuropeItem, CountryStatsEurope } from './CountryStatsEurope'; +import { IgcDataChartComponent, IgcNumericXAxisComponent, IgcNumericYAxisComponent, IgcBubbleSeriesComponent, IgcSizeScaleComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; +import { WorldStatsItem, WorldStats } from './WorldStats'; import { ModuleManager } from 'igniteui-webcomponents-core'; @@ -19,7 +18,6 @@ ModuleManager.register( export class Sample { - private legend: IgcLegendComponent private chart: IgcDataChartComponent private xAxis: IgcNumericXAxisComponent private yAxis: IgcNumericYAxisComponent @@ -31,69 +29,39 @@ export class Sample { var sizeScale1 = new IgcSizeScaleComponent(); sizeScale1.isLogarithmic = false; sizeScale1.minimumValue = 10; - sizeScale1.maximumValue = 50; + sizeScale1.maximumValue = 80; this._sizeScale1 = sizeScale1; } return this._sizeScale1; } - private bubbleSeries2: IgcBubbleSeriesComponent - private _sizeScale2: IgcSizeScaleComponent | null = null; - public get sizeScale2(): IgcSizeScaleComponent { - if (this._sizeScale2 == null) - { - var sizeScale2 = new IgcSizeScaleComponent(); - sizeScale2.isLogarithmic = false; - sizeScale2.minimumValue = 10; - sizeScale2.maximumValue = 50; - - this._sizeScale2 = sizeScale2; - } - return this._sizeScale2; - } private dataToolTipLayer: IgcDataToolTipLayerComponent private _bind: () => void; constructor() { - var legend = this.legend = document.getElementById('legend') as IgcLegendComponent; var chart = this.chart = document.getElementById('chart') as IgcDataChartComponent; var xAxis = this.xAxis = document.getElementById('xAxis') as IgcNumericXAxisComponent; var yAxis = this.yAxis = document.getElementById('yAxis') as IgcNumericYAxisComponent; var bubbleSeries1 = this.bubbleSeries1 = document.getElementById('bubbleSeries1') as IgcBubbleSeriesComponent; - var bubbleSeries2 = this.bubbleSeries2 = document.getElementById('bubbleSeries2') as IgcBubbleSeriesComponent; var dataToolTipLayer = this.dataToolTipLayer = document.getElementById('dataToolTipLayer') as IgcDataToolTipLayerComponent; this._bind = () => { - chart.legend = this.legend; bubbleSeries1.xAxis = this.xAxis; bubbleSeries1.yAxis = this.yAxis; - bubbleSeries1.dataSource = this.countryStatsAfrica; + bubbleSeries1.dataSource = this.worldStats; bubbleSeries1.radiusScale = this.sizeScale1; - bubbleSeries2.xAxis = this.xAxis; - bubbleSeries2.yAxis = this.yAxis; - bubbleSeries2.dataSource = this.countryStatsEurope; - bubbleSeries2.radiusScale = this.sizeScale2; } this._bind(); } - private _countryStatsAfrica: CountryStatsAfrica = null; - public get countryStatsAfrica(): CountryStatsAfrica { - if (this._countryStatsAfrica == null) - { - this._countryStatsAfrica = new CountryStatsAfrica(); - } - return this._countryStatsAfrica; - } - - private _countryStatsEurope: CountryStatsEurope = null; - public get countryStatsEurope(): CountryStatsEurope { - if (this._countryStatsEurope == null) + private _worldStats: WorldStats = null; + public get worldStats(): WorldStats { + if (this._worldStats == null) { - this._countryStatsEurope = new CountryStatsEurope(); + this._worldStats = new WorldStats(); } - return this._countryStatsEurope; + return this._worldStats; } } From 5ad17ac00ae72f7fea6719322bca4a1c1e307add Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 13:48:19 -0500 Subject: [PATCH 40/63] Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.18.3 (#914) Co-authored-by: tfsbuild --- .../grids/pivot-grid/features/src/index.ts | 41 ++++++++++--------- 1 file changed, 22 insertions(+), 19 deletions(-) diff --git a/samples/grids/pivot-grid/features/src/index.ts b/samples/grids/pivot-grid/features/src/index.ts index 22c3426cfb..d88ea2c82d 100644 --- a/samples/grids/pivot-grid/features/src/index.ts +++ b/samples/grids/pivot-grid/features/src/index.ts @@ -51,25 +51,28 @@ export class Sample { pivotValue1.member = "AmountofSale"; pivotValue1.displayName = "Amount of Sale"; pivotValue1.enabled = true; - var SumOfSale: IgcPivotAggregator = {} as IgcPivotAggregator; - SumOfSale.key = "SUM"; - SumOfSale.label = "Sum of Sale"; - SumOfSale.aggregator = this.pivotDataFlatAggregateSumSale; - SumOfSale.aggregatorName = "SUM"; - - var MinOfSale: IgcPivotAggregator = {} as IgcPivotAggregator; - MinOfSale.key = "MIN"; - MinOfSale.label = "Minimum of Sale"; - MinOfSale.aggregator = this.pivotDataFlatAggregateMinSale; - MinOfSale.aggregatorName = "MIN"; - - var MaxOfSale: IgcPivotAggregator = {} as IgcPivotAggregator; - MaxOfSale.key = "MAX"; - MaxOfSale.label = "Maximum of Sale"; - MaxOfSale.aggregatorName = "MAX"; - MaxOfSale.aggregator = this.pivotDataFlatAggregateMaxSale; - - pivotValue1.aggregateList = [SumOfSale,MinOfSale,MaxOfSale]; + var pivotAggregator1: IgcPivotAggregator = {} as IgcPivotAggregator; + pivotAggregator1.key = "SUM"; + pivotAggregator1.label = "Sum of Sale"; + pivotAggregator1.aggregator = this.pivotDataFlatAggregateSumSale; + + pivotValue1.aggregate = pivotAggregator1; + var pivotAggregator2: IgcPivotAggregator = {} as IgcPivotAggregator; + pivotAggregator2.key = "SUM"; + pivotAggregator2.label = "Sum of Sale"; + pivotAggregator2.aggregator = this.pivotDataFlatAggregateSumSale; + + var pivotAggregator3: IgcPivotAggregator = {} as IgcPivotAggregator; + pivotAggregator3.key = "MIN"; + pivotAggregator3.label = "Minimum of Sale"; + pivotAggregator3.aggregator = this.pivotDataFlatAggregateMinSale; + + var pivotAggregator4: IgcPivotAggregator = {} as IgcPivotAggregator; + pivotAggregator4.key = "MAX"; + pivotAggregator4.label = "Maximum of Sale"; + pivotAggregator4.aggregator = this.pivotDataFlatAggregateMaxSale; + + pivotValue1.aggregateList = [pivotAggregator2,pivotAggregator3,pivotAggregator4]; pivotConfiguration1.values = [pivotValue1]; From a0865d2edbe9c1e5d6a4a252b69ae5f3e48e4fda Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:38:06 -0500 Subject: [PATCH 41/63] Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.18.4 (#915) Co-authored-by: tfsbuild --- .../data-chart/scatter-bubble-chart-fill-scale/src/index.ts | 6 +++--- .../scatter-bubble-chart-multiple-sources/src/index.ts | 4 ++-- .../scatter-bubble-chart-single-source/src/index.ts | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) 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 b3abb1ee94..70c7149245 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/src/index.ts @@ -29,7 +29,7 @@ export class Sample { var sizeScale1 = new IgcSizeScaleComponent(); sizeScale1.isLogarithmic = false; sizeScale1.minimumValue = 10; - sizeScale1.maximumValue = 120; + sizeScale1.maximumValue = 80; this._sizeScale1 = sizeScale1; } @@ -41,9 +41,9 @@ export class Sample { { var valueBrushScale1 = new IgcValueBrushScaleComponent(); valueBrushScale1.isLogarithmic = false; - valueBrushScale1.minimumValue = 0; + valueBrushScale1.minimumValue = 500; valueBrushScale1.maximumValue = 260000; - valueBrushScale1.brushes = ["rgba(137, 181, 250, 1)", "rgba(20, 108, 247, 1)", "rgba(82, 144, 242, 1)"]; + valueBrushScale1.brushes = ["rgba(150, 189, 250, 1)", "rgba(111, 164, 247, 1)", "rgba(82, 144, 242, 1)", "rgba(19, 94, 212, 1)"]; this._valueBrushScale1 = valueBrushScale1; } diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.ts b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.ts index fd87ee72b7..75c50b53c4 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/src/index.ts @@ -30,7 +30,7 @@ export class Sample { var sizeScale1 = new IgcSizeScaleComponent(); sizeScale1.isLogarithmic = false; sizeScale1.minimumValue = 10; - sizeScale1.maximumValue = 50; + sizeScale1.maximumValue = 80; this._sizeScale1 = sizeScale1; } @@ -44,7 +44,7 @@ export class Sample { var sizeScale2 = new IgcSizeScaleComponent(); sizeScale2.isLogarithmic = false; sizeScale2.minimumValue = 10; - sizeScale2.maximumValue = 50; + sizeScale2.maximumValue = 80; this._sizeScale2 = sizeScale2; } diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.ts b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.ts index f253007057..80ae99ee05 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.ts +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/src/index.ts @@ -28,7 +28,7 @@ export class Sample { var sizeScale1 = new IgcSizeScaleComponent(); sizeScale1.isLogarithmic = false; sizeScale1.minimumValue = 10; - sizeScale1.maximumValue = 50; + sizeScale1.maximumValue = 80; this._sizeScale1 = sizeScale1; } From ba0af454397b79a39f2e88ff0a074bb207206f2f Mon Sep 17 00:00:00 2001 From: IGvaleries Date: Thu, 19 Dec 2024 09:10:27 -0500 Subject: [PATCH 42/63] update packages for 24.2 release (#916) --- browser/tasks/gulp-samples.js | 24 +-- package-lock.json | 146 +++++++++--------- package.json | 24 +-- .../annotations-all/package.json | 8 +- .../annotations-callouts/package.json | 8 +- .../annotations-crosshairs/package.json | 8 +- .../annotations-custom/package.json | 8 +- .../annotations-final-value/package.json | 8 +- .../annotations-highlighting/package.json | 8 +- .../category-chart/annotations/package.json | 4 +- .../area-chart-multiple-sources/package.json | 4 +- .../area-chart-single-source/package.json | 4 +- .../area-chart-styling/package.json | 4 +- .../category-chart/axis-gap/package.json | 8 +- .../axis-gridlines/package.json | 8 +- .../category-chart/axis-inverted/package.json | 8 +- .../category-chart/axis-labels/package.json | 8 +- .../axis-locations/package.json | 8 +- .../category-chart/axis-options/package.json | 4 +- .../category-chart/axis-overlap/package.json | 8 +- .../category-chart/axis-range/package.json | 8 +- .../axis-tickmarks/package.json | 8 +- .../category-chart/axis-titles/package.json | 4 +- .../chart-highlight-filter/package.json | 8 +- .../package.json | 4 +- .../column-chart-single-source/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../package.json | 4 +- .../column-chart-with-tooltips/package.json | 8 +- .../custom-selection/package.json | 4 +- .../data-aggregations/package.json | 8 +- .../category-chart/data-filter/package.json | 8 +- .../package.json | 4 +- .../category-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-positioning/package.json | 8 +- .../category-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 8 +- .../high-frequency/package.json | 4 +- .../category-chart/high-volume/package.json | 4 +- .../highlighting-behavior/package.json | 8 +- .../highlighting-mode/package.json | 8 +- .../category-chart/highlighting/package.json | 4 +- .../legend-highlighting/package.json | 4 +- .../line-chart-multiple-sources/package.json | 4 +- .../line-chart-single-source/package.json | 4 +- .../line-chart-styling/package.json | 4 +- .../line-chart-with-animations/package.json | 4 +- .../line-chart-with-annotations/package.json | 4 +- .../marker-options/package.json | 8 +- .../marker-templates/package.json | 4 +- .../category-chart/overview/package.json | 4 +- .../point-chart-multiple-sources/package.json | 4 +- .../point-chart-single-source/package.json | 4 +- .../point-chart-styling/package.json | 4 +- .../selection-modes/package.json | 4 +- .../selection-multiple-modes/package.json | 8 +- .../spline-area-multiple-sources/package.json | 4 +- .../spline-area-single-source/package.json | 4 +- .../spline-area-styling/package.json | 4 +- .../spline-multiple-sources/package.json | 4 +- .../spline-single-source/package.json | 4 +- .../spline-styling/package.json | 4 +- .../category-chart/stack-columns/package.json | 4 +- .../step-area-multiple-sources/package.json | 4 +- .../step-area-single-source/package.json | 4 +- .../step-area-styling/package.json | 4 +- .../step-line-multiple-sources/package.json | 4 +- .../step-line-single-source/package.json | 4 +- .../step-line-styling/package.json | 4 +- .../tooltip-template/package.json | 4 +- .../category-chart/tooltip-types/package.json | 4 +- .../category-chart/trendline/package.json | 4 +- .../category-chart/value-lines/package.json | 8 +- .../chart-dashboard/package.json | 16 +- .../financial-dashboard/package.json | 16 +- .../gauge-dashboard/package.json | 16 +- .../dashboard-tile/map-dashboard/package.json | 16 +- .../dashboard-tile/pie-dashboard/package.json | 16 +- .../annotations-custom/package.json | 4 +- .../package.json | 4 +- .../data-chart/axis-annotations/package.json | 4 +- .../data-chart/axis-crossing/package.json | 4 +- .../axis-label-rotation/package.json | 8 +- .../data-chart/axis-locations/package.json | 4 +- .../data-chart/axis-min-max-gap/package.json | 4 +- .../data-chart/axis-settings/package.json | 4 +- .../data-chart/axis-sharing/package.json | 4 +- .../charts/data-chart/axis-types/package.json | 4 +- .../bar-chart-multiple-sources/package.json | 4 +- .../bar-chart-overlapping/package.json | 4 +- .../bar-chart-single-source/package.json | 4 +- .../data-chart/bar-chart-styling/package.json | 4 +- .../callout-layer-styling/package.json | 4 +- .../package.json | 8 +- .../package.json | 8 +- .../chart-highlight-filter/package.json | 8 +- .../data-chart/chart-navigation/package.json | 4 +- .../data-chart/chart-overview/package.json | 4 +- .../data-chart/chart-performance/package.json | 4 +- .../chart-synchronization/package.json | 4 +- .../data-chart/chart-titles/package.json | 4 +- .../data-chart/composite-chart/package.json | 4 +- .../crosshair-layer-styling/package.json | 4 +- .../custom-drawing-annotations/package.json | 8 +- .../custom-editing-data/package.json | 4 +- .../data-chart/dash-array-axes/package.json | 4 +- .../data-chart/dash-array-series/package.json | 4 +- .../dash-array-tickmarks/package.json | 4 +- .../dash-array-trendline/package.json | 4 +- .../package.json | 4 +- .../data-legend-grouping/package.json | 4 +- .../data-legend-styling/package.json | 4 +- .../data-chart/data-legend/package.json | 4 +- .../package.json | 8 +- .../data-tooltip-grouping/package.json | 8 +- .../data-tooltip-styling/package.json | 8 +- .../data-chart/data-tooltip/package.json | 4 +- .../final-value-layer-styling/package.json | 4 +- .../financial-price-series/package.json | 4 +- .../data-chart/format-specifiers/package.json | 4 +- .../charts/data-chart/legends/package.json | 4 +- .../polar-area-chart-styling/package.json | 4 +- .../data-chart/polar-area-chart/package.json | 4 +- .../data-chart/polar-chart-types/package.json | 4 +- .../data-chart/polar-line-chart/package.json | 4 +- .../polar-scatter-chart/package.json | 4 +- .../polar-spline-area-chart/package.json | 4 +- .../polar-spline-chart/package.json | 4 +- .../radial-area-chart-styling/package.json | 4 +- .../data-chart/radial-area-chart/package.json | 4 +- .../radial-chart-types/package.json | 4 +- .../package.json | 4 +- .../radial-column-chart/package.json | 4 +- .../data-chart/radial-label-mode/package.json | 8 +- .../data-chart/radial-line-chart/package.json | 4 +- .../data-chart/radial-pie-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../data-chart/range-area-chart/package.json | 4 +- .../range-column-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../scatter-bubble-chart-styling/package.json | 4 +- .../scatter-line-chart/package.json | 4 +- .../scatter-point-chart/package.json | 4 +- .../scatter-spline-chart/package.json | 4 +- .../data-chart/series-animations/package.json | 4 +- .../series-annotations/package.json | 4 +- .../data-chart/series-error-bars/package.json | 4 +- .../series-highlighting/package.json | 4 +- .../series-marker-template/package.json | 4 +- .../data-chart/series-markers/package.json | 4 +- .../data-chart/series-tooltips/package.json | 4 +- .../data-chart/series-trendlines/package.json | 4 +- .../series-value-overlay/package.json | 4 +- .../stacked-100-area-chart/package.json | 4 +- .../stacked-100-bar-chart/package.json | 4 +- .../stacked-100-column-chart/package.json | 4 +- .../stacked-100-line-chart/package.json | 4 +- .../package.json | 4 +- .../stacked-100-spline-chart/package.json | 4 +- .../stacked-area-chart/package.json | 4 +- .../data-chart/stacked-bar-chart/package.json | 4 +- .../stacked-chart-types/package.json | 4 +- .../stacked-column-chart/package.json | 4 +- .../stacked-line-chart/package.json | 4 +- .../stacked-spline-area-chart/package.json | 4 +- .../stacked-spline-chart/package.json | 4 +- .../data-chart/tooltip-template/package.json | 4 +- .../data-chart/transition-event/package.json | 8 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../type-financial-ohlc-series/package.json | 4 +- .../type-financial-overlays/package.json | 4 +- .../type-financial-series/package.json | 4 +- .../type-range-area-series/package.json | 4 +- .../type-range-column-series/package.json | 4 +- .../data-chart/type-range-series/package.json | 4 +- .../type-scatter-area-series/package.json | 4 +- .../type-scatter-bubble-series/package.json | 4 +- .../type-scatter-contour-series/package.json | 4 +- .../type-scatter-hd-series/package.json | 4 +- .../type-scatter-polygon-series/package.json | 4 +- .../type-scatter-polyline-series/package.json | 4 +- .../type-scatter-series/package.json | 4 +- .../data-chart/type-shape-series/package.json | 4 +- .../data-chart/waterfall-chart/package.json | 4 +- .../data-pie-chart/animation/package.json | 8 +- .../highlight-filter/package.json | 4 +- .../data-pie-chart/highlighting/package.json | 8 +- .../charts/data-pie-chart/legend/package.json | 8 +- .../charts/data-pie-chart/others/package.json | 8 +- .../data-pie-chart/overview/package.json | 4 +- .../data-pie-chart/selection/package.json | 8 +- .../doughnut-chart/animation/package.json | 4 +- .../doughnut-chart/explosion/package.json | 4 +- .../charts/doughnut-chart/legend/package.json | 4 +- .../doughnut-chart/overview/package.json | 4 +- .../charts/doughnut-chart/rings/package.json | 4 +- .../doughnut-chart/selection/package.json | 4 +- .../financial-chart/annotations/package.json | 4 +- .../financial-chart/axis-types/package.json | 4 +- .../package.json | 4 +- .../data-legend-styling-props/package.json | 4 +- .../financial-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-styling-props/package.json | 4 +- .../financial-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 4 +- .../high-frequency/package.json | 4 +- .../financial-chart/high-volume/package.json | 4 +- .../indicator-customization/package.json | 4 +- .../indicator-types/package.json | 4 +- .../multiple-data/package.json | 4 +- .../financial-chart/overview/package.json | 4 +- .../charts/financial-chart/panes/package.json | 4 +- .../financial-chart/performance/package.json | 4 +- .../financial-chart/scrollbars/package.json | 4 +- .../stock-index-chart/package.json | 4 +- .../financial-chart/styling/package.json | 4 +- .../financial-chart/titles/package.json | 4 +- .../tooltip-types/package.json | 4 +- .../financial-chart/trendlines/package.json | 4 +- .../financial-chart/volume-types/package.json | 4 +- .../charts/pie-chart/animation/package.json | 4 +- .../charts/pie-chart/explosion/package.json | 4 +- samples/charts/pie-chart/legend/package.json | 4 +- samples/charts/pie-chart/others/package.json | 4 +- .../charts/pie-chart/overview/package.json | 4 +- .../charts/pie-chart/selection/package.json | 4 +- samples/charts/pie-chart/styling/package.json | 4 +- .../sparkline/display-area/package.json | 4 +- .../sparkline/display-column/package.json | 4 +- .../sparkline/display-lines/package.json | 8 +- .../sparkline/display-types/package.json | 4 +- .../sparkline/display-winloss/package.json | 4 +- samples/charts/sparkline/grid/package.json | 10 +- samples/charts/sparkline/markers/package.json | 8 +- .../sparkline/normal-range/package.json | 8 +- .../charts/sparkline/trendlines/package.json | 8 +- .../sparkline/unknown-values/package.json | 8 +- .../package.json | 8 +- .../actions-built-in-data-chart/package.json | 8 +- .../toolbar/color-editor-support/package.json | 8 +- .../charts/toolbar/custom-tool/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- samples/charts/toolbar/theming/package.json | 8 +- samples/charts/tree-map/events/package.json | 4 +- .../highlighting-percent-based/package.json | 4 +- .../charts/tree-map/highlighting/package.json | 8 +- samples/charts/tree-map/layout/package.json | 8 +- samples/charts/tree-map/overview/package.json | 4 +- samples/charts/tree-map/styling/package.json | 4 +- .../charts/zoomslider/overview/package.json | 4 +- .../overview/package.json | 8 +- .../x-date-picker/date-limits/package.json | 6 +- .../x-date-picker/editing/package.json | 6 +- .../editors/x-date-picker/format/package.json | 6 +- .../x-date-picker/overview/package.json | 6 +- .../editors/x-date-picker/range/package.json | 6 +- .../operations-on-workbooks/package.json | 10 +- .../operations-on-worksheets/package.json | 4 +- .../excel/excel-library/overview/package.json | 4 +- .../working-with-cells/package.json | 4 +- .../working-with-charts/package.json | 12 +- .../working-with-sparklines/package.json | 12 +- .../excel/spreadsheet/activation/package.json | 6 +- .../spreadsheet/adapter-chart/package.json | 10 +- .../spreadsheet/adapter-combo/package.json | 10 +- .../excel/spreadsheet/clipboard/package.json | 6 +- .../excel/spreadsheet/commands/package.json | 6 +- .../conditional-formatting/package.json | 6 +- .../spreadsheet/config-options/package.json | 6 +- .../spreadsheet/data-validation/package.json | 6 +- .../spreadsheet/filter-dialog/package.json | 6 +- .../spreadsheet/format-dialog/package.json | 6 +- .../excel/spreadsheet/hyperlinks/package.json | 6 +- .../excel/spreadsheet/overview/package.json | 6 +- .../spreadsheet/sort-dialog/package.json | 6 +- .../bullet-graph/animation/package.json | 4 +- .../bullet-graph/background/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/bullet-graph/labels/package.json | 4 +- .../gauges/bullet-graph/measures/package.json | 4 +- .../gauges/bullet-graph/ranges/package.json | 4 +- .../gauges/bullet-graph/scale/package.json | 4 +- .../bullet-graph/tickmarks/package.json | 4 +- .../bullet-graph/type-filled/package.json | 4 +- .../bullet-graph/type-horizontal/package.json | 4 +- .../bullet-graph/type-reversed/package.json | 4 +- .../bullet-graph/type-segmented/package.json | 4 +- .../bullet-graph/type-vertical/package.json | 4 +- .../linear-gauge/animation/package.json | 4 +- .../gauges/linear-gauge/backing/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/linear-gauge/labels/package.json | 4 +- .../gauges/linear-gauge/needle/package.json | 4 +- .../gauges/linear-gauge/ranges/package.json | 4 +- .../gauges/linear-gauge/scale/package.json | 4 +- .../linear-gauge/tickmarks/package.json | 4 +- .../linear-gauge/type-curved/package.json | 4 +- .../linear-gauge/type-filled/package.json | 4 +- .../linear-gauge/type-horizontal/package.json | 4 +- .../type-multi-range/package.json | 4 +- .../type-multi-scale/package.json | 4 +- .../linear-gauge/type-segmented/package.json | 4 +- .../linear-gauge/type-vertical/package.json | 4 +- .../radial-gauge/animation/package.json | 4 +- .../gauges/radial-gauge/backing/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/radial-gauge/labels/package.json | 4 +- .../gauges/radial-gauge/needle/package.json | 4 +- .../radial-gauge/optical-scaling/package.json | 4 +- .../gauges/radial-gauge/ranges/package.json | 4 +- .../gauges/radial-gauge/scale/package.json | 4 +- .../radial-gauge/tickmarks/package.json | 4 +- .../radial-gauge/type-column/package.json | 4 +- .../radial-gauge/type-curved/package.json | 4 +- .../radial-gauge/type-direction/package.json | 4 +- .../radial-gauge/type-full/package.json | 4 +- .../radial-gauge/type-half/package.json | 4 +- .../radial-gauge/type-quatre/package.json | 4 +- .../radial-gauge/type-ring/package.json | 4 +- .../radial-gauge/type-segmented/package.json | 4 +- .../radial-gauge/type-semi/package.json | 4 +- .../data-grid/accessibility/package.json | 8 +- .../binding-data-service/package.json | 8 +- .../data-grid/binding-live-data/package.json | 10 +- .../data-grid/binding-local-data/package.json | 8 +- .../binding-remote-data/package.json | 10 +- .../data-grid/cell-activation/package.json | 8 +- .../grids/data-grid/cell-editing/package.json | 8 +- .../grids/data-grid/cell-merging/package.json | 10 +- .../data-grid/cell-selection/package.json | 8 +- .../data-grid/column-animation/package.json | 8 +- .../column-chooser-picker/package.json | 8 +- .../column-chooser-toolbar/package.json | 8 +- .../column-filter-expressions/package.json | 8 +- .../column-filter-operands/package.json | 8 +- .../data-grid/column-filtering/package.json | 8 +- .../data-grid/column-moving/package.json | 8 +- .../data-grid/column-options/package.json | 8 +- .../column-pinning-picker/package.json | 8 +- .../column-pinning-toolbar/package.json | 8 +- .../data-grid/column-resizing/package.json | 8 +- .../data-grid/column-scrolling/package.json | 8 +- .../data-grid/column-sorting/package.json | 8 +- .../data-grid/column-summaries/package.json | 8 +- .../grids/data-grid/column-types/package.json | 10 +- .../data-grid/load-save-layout/package.json | 10 +- .../grids/data-grid/localization/package.json | 10 +- samples/grids/data-grid/overview/package.json | 10 +- samples/grids/data-grid/pager/package.json | 8 +- .../grids/data-grid/performance/package.json | 8 +- .../row-group-descriptions/package.json | 8 +- .../grids/data-grid/row-grouping/package.json | 8 +- .../data-grid/row-highlighting/package.json | 8 +- .../grids/data-grid/row-paging/package.json | 8 +- .../grids/data-grid/row-pinning/package.json | 8 +- .../data-grid/row-selection/package.json | 8 +- .../type-comparison-table/package.json | 10 +- .../data-grid/type-heatmap-table/package.json | 8 +- .../type-marketing-table/package.json | 10 +- .../data-grid/type-matrix-table/package.json | 8 +- .../type-periodic-table/package.json | 8 +- .../grids/data-grid/type-table/package.json | 8 +- samples/grids/grid/action-strip/package.json | 8 +- .../advanced-filtering-options/package.json | 8 +- .../advanced-filtering-style/package.json | 8 +- .../grid/binding-composite-data/package.json | 8 +- .../grids/grid/binding-crud-data/package.json | 8 +- .../grid/binding-nested-data-1/package.json | 8 +- .../grids/grid/cascading-combo/package.json | 8 +- .../grid/cell-editing-sample/package.json | 8 +- .../grid/cell-editing-styling/package.json | 8 +- .../grid/cell-selection-mode/package.json | 8 +- .../grid/cell-selection-style/package.json | 8 +- .../grid/change-icons-custom/package.json | 8 +- .../grid/clipboard-operations/package.json | 8 +- .../grid/column-auto-sizing/package.json | 8 +- .../column-collapsible-groups/package.json | 8 +- .../grids/grid/column-data-types/package.json | 8 +- .../grid/column-hiding-options/package.json | 8 +- .../column-hiding-toolbar-style/package.json | 8 +- .../grid/column-hiding-toolbar/package.json | 8 +- .../grid/column-moving-options/package.json | 8 +- .../grid/column-moving-styles/package.json | 8 +- .../grid/column-pinning-options/package.json | 8 +- .../column-pinning-right-side/package.json | 8 +- .../grid/column-pinning-styles/package.json | 8 +- .../grids/grid/column-pinning/package.json | 8 +- .../grid/column-resize-styling/package.json | 8 +- .../grids/grid/column-resizing/package.json | 8 +- .../grid/column-selection-group/package.json | 8 +- .../grid/column-selection-mode/package.json | 8 +- .../grid/column-selection-styles/package.json | 8 +- .../column-sorting-indicators/package.json | 8 +- .../grid/column-sorting-options/package.json | 8 +- .../grid/column-sorting-style/package.json | 8 +- .../conditional-cell-style-1/package.json | 8 +- .../conditional-cell-style-2/package.json | 8 +- .../conditional-row-selectors/package.json | 8 +- .../grid/custom-context-menu/package.json | 8 +- .../grids/grid/custom-filtering/package.json | 8 +- .../data-batch-editing-actions/package.json | 8 +- .../data-exporting-indicator/package.json | 8 +- .../grid/data-paste-options/package.json | 8 +- .../package.json | 8 +- .../grids/grid/data-searching/package.json | 8 +- .../grid/data-summaries-custom/package.json | 8 +- .../grid/data-summary-formatter/package.json | 8 +- .../grid/data-summary-options/package.json | 8 +- .../grid/data-summary-template/package.json | 8 +- .../grid/data-validation-style/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../grid/data-validator-service/package.json | 8 +- .../grids/grid/editing-columns/package.json | 8 +- .../grids/grid/editing-events/package.json | 8 +- .../editing-excel-style-custom/package.json | 8 +- .../grid/editing-excel-style/package.json | 8 +- .../grids/grid/editing-lifecycle/package.json | 8 +- .../grids/grid/excel-exporting/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../excel-style-filtering-style/package.json | 8 +- .../external-advanced-filtering/package.json | 8 +- .../grids/grid/filtering-options/package.json | 8 +- .../grid/filtering-strategy/package.json | 8 +- .../grids/grid/filtering-style/package.json | 8 +- samples/grids/grid/finjs/package.json | 10 +- .../grids/grid/groupby-custom/package.json | 8 +- .../grid/groupby-expressions/package.json | 8 +- .../grids/grid/groupby-paging/package.json | 8 +- .../grids/grid/groupby-styling/package.json | 8 +- .../grid/groupby-summary-options/package.json | 8 +- .../grid/groupby-summary-styling/package.json | 8 +- .../grids/grid/infinite-scroll/package.json | 8 +- .../keyboard-custom-navigation/package.json | 8 +- .../grid/keyboard-mrl-navigation/package.json | 8 +- .../keyboard-navigation-guide/package.json | 8 +- .../grid/layout-display-density/package.json | 8 +- samples/grids/grid/master-detail/package.json | 8 +- .../multi-cell-selection-mode/package.json | 8 +- .../multi-column-headers-export/package.json | 8 +- .../package.json | 8 +- .../multi-column-headers-styling/package.json | 8 +- .../package.json | 8 +- .../multi-row-layout-options/package.json | 8 +- .../grid/multi-row-layout-style/package.json | 8 +- samples/grids/grid/overview/package.json | 8 +- samples/grids/grid/paste/package.json | 8 +- .../grid/remote-paging-data/package.json | 8 +- .../grid/remote-paging-grid/package.json | 8 +- samples/grids/grid/row-adding/package.json | 8 +- samples/grids/grid/row-classes/package.json | 8 +- samples/grids/grid/row-drag-base/package.json | 8 +- .../grid/row-editing-options/package.json | 8 +- .../grids/grid/row-editing-style/package.json | 8 +- .../grids/grid/row-paging-basic/package.json | 8 +- .../grid/row-paging-options/package.json | 8 +- .../grids/grid/row-pinning-drag/package.json | 8 +- .../row-pinning-extra-column/package.json | 8 +- .../grid/row-pinning-options/package.json | 8 +- .../grids/grid/row-pinning-style/package.json | 8 +- samples/grids/grid/row-reorder/package.json | 8 +- .../grid/row-selection-mode/package.json | 8 +- .../row-selection-template-excel/package.json | 8 +- .../package.json | 8 +- samples/grids/grid/row-styles/package.json | 8 +- .../grid/state-persistence-about/package.json | 8 +- .../grid/state-persistence-main/package.json | 8 +- .../grid/styling-custom-CSS/package.json | 8 +- .../grids/grid/toolbar-sample-1/package.json | 8 +- .../grids/grid/toolbar-sample-2/package.json | 8 +- .../grids/grid/toolbar-sample-3/package.json | 8 +- .../grids/grid/toolbar-sample-4/package.json | 8 +- samples/grids/grid/toolbar-style/package.json | 8 +- .../action-strip/package.json | 8 +- .../advanced-filtering-options/package.json | 8 +- .../advanced-filtering-style/package.json | 8 +- .../cell-editing-sample/package.json | 8 +- .../cell-editing-styling/package.json | 8 +- .../cell-selection-mode/package.json | 8 +- .../cell-selection-overview/package.json | 8 +- .../cell-selection-style/package.json | 8 +- .../cell-selection-styling/package.json | 8 +- .../column-auto-sizing/package.json | 8 +- .../column-collapsible-groups/package.json | 8 +- .../column-hiding-toolbar-style/package.json | 8 +- .../column-hiding-toolbar/package.json | 8 +- .../column-moving-options/package.json | 8 +- .../column-moving-styles/package.json | 8 +- .../column-pinning-options/package.json | 8 +- .../column-pinning-right-side/package.json | 8 +- .../column-pinning-styles/package.json | 8 +- .../column-pinning/package.json | 8 +- .../column-resize-styling/package.json | 8 +- .../column-resizing/package.json | 8 +- .../column-selection-group/package.json | 8 +- .../column-selection-mode/package.json | 8 +- .../column-selection-styles/package.json | 8 +- .../column-sorting-indicators/package.json | 8 +- .../column-sorting-options/package.json | 8 +- .../column-sorting-style/package.json | 8 +- .../conditional-cell-style-1/package.json | 8 +- .../conditional-cell-style-2/package.json | 8 +- .../conditional-row-selectors/package.json | 8 +- .../custom-filtering/package.json | 8 +- .../data-exporting-indicator/package.json | 8 +- .../package.json | 8 +- .../data-summary-formatter/package.json | 8 +- .../data-summary-options-styling/package.json | 8 +- .../data-summary-options/package.json | 8 +- .../data-summary-template/package.json | 8 +- .../editing-columns/package.json | 8 +- .../editing-events/package.json | 8 +- .../editing-lifecycle/package.json | 8 +- .../excel-exporting/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../excel-style-filtering-style/package.json | 8 +- .../filtering-options/package.json | 8 +- .../filtering-style/package.json | 8 +- .../hierarchical-grid-options/package.json | 8 +- .../package.json | 8 +- .../hierarchical-grid-styling/package.json | 8 +- .../layout-display-density/package.json | 8 +- .../multi-column-headers-export/package.json | 8 +- .../package.json | 8 +- .../multi-column-headers-styling/package.json | 8 +- .../package.json | 8 +- .../hierarchical-grid/overview/package.json | 8 +- .../remote-paging-sample/package.json | 8 +- .../hierarchical-grid/row-adding/package.json | 8 +- .../row-classes/package.json | 8 +- .../row-drag-base/package.json | 8 +- .../row-editing-options/package.json | 8 +- .../row-editing-style/package.json | 8 +- .../row-pinning-extra-column/package.json | 8 +- .../row-pinning-options/package.json | 8 +- .../row-pinning-style/package.json | 8 +- .../row-reorder/package.json | 8 +- .../row-selection-mode/package.json | 8 +- .../package.json | 8 +- .../hierarchical-grid/row-styles/package.json | 8 +- .../state-persistence-about/package.json | 8 +- .../state-persistence-main/package.json | 8 +- .../toolbar-sample-1/package.json | 8 +- .../toolbar-sample-2/package.json | 8 +- .../toolbar-sample-3/package.json | 8 +- .../toolbar-sample-4/package.json | 8 +- .../toolbar-style/package.json | 8 +- .../grids/list/add-list-items/package.json | 2 +- .../aggregate-max-sales/package.json | 8 +- .../aggregate-units-sold/package.json | 8 +- samples/grids/pivot-grid/basic/package.json | 8 +- .../data-persistence-noop/package.json | 8 +- .../pivot-grid/data-selector/package.json | 8 +- .../grids/pivot-grid/features/package.json | 8 +- samples/grids/pivot-grid/remote/package.json | 8 +- .../state-persistence-about/package.json | 8 +- .../state-persistence-main/package.json | 8 +- .../grids/tree-grid/action-strip/package.json | 8 +- .../advanced-filtering-options/package.json | 8 +- .../advanced-filtering-style/package.json | 8 +- .../cell-editing-sample/package.json | 8 +- .../cell-editing-styling/package.json | 8 +- .../cell-selection-mode/package.json | 8 +- .../cell-selection-style/package.json | 8 +- .../clipboard-operations/package.json | 8 +- .../tree-grid/column-auto-sizing/package.json | 8 +- .../column-collapsible-groups/package.json | 8 +- .../tree-grid/column-data-types/package.json | 8 +- .../column-hiding-toolbar-style/package.json | 8 +- .../column-hiding-toolbar/package.json | 8 +- .../column-moving-options/package.json | 8 +- .../column-moving-styles/package.json | 8 +- .../column-pinning-options/package.json | 8 +- .../column-pinning-right-side/package.json | 8 +- .../column-pinning-styles/package.json | 8 +- .../column-pinning-toolbar/package.json | 8 +- .../tree-grid/column-pinning/package.json | 8 +- .../column-resize-styling/package.json | 8 +- .../tree-grid/column-resizing/package.json | 8 +- .../column-selection-group/package.json | 8 +- .../column-selection-mode/package.json | 8 +- .../column-selection-style/package.json | 8 +- .../column-selection-styles/package.json | 8 +- .../column-sorting-indicators/package.json | 8 +- .../column-sorting-options/package.json | 8 +- .../column-sorting-style/package.json | 8 +- .../conditional-cell-style-1/package.json | 8 +- .../conditional-cell-style-2/package.json | 8 +- .../conditional-row-selectors/package.json | 8 +- .../tree-grid/custom-filtering/package.json | 8 +- .../data-exporting-indicator/package.json | 8 +- .../tree-grid/data-searching/package.json | 8 +- .../data-summaries-custom/package.json | 8 +- .../data-summary-children/package.json | 8 +- .../data-summary-formatter/package.json | 8 +- .../data-summary-options-styling/package.json | 8 +- .../data-summary-options/package.json | 8 +- .../data-summary-template/package.json | 8 +- .../tree-grid/editing-columns/package.json | 8 +- .../tree-grid/editing-events/package.json | 8 +- .../tree-grid/editing-lifecycle/package.json | 8 +- .../tree-grid/excel-exporting/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../excel-style-filtering-style/package.json | 8 +- .../tree-grid/filtering-options/package.json | 8 +- .../tree-grid/filtering-style/package.json | 8 +- samples/grids/tree-grid/finjs/package.json | 10 +- .../keyboard-custom-navigation/package.json | 8 +- .../keyboard-navigation-guide/package.json | 8 +- .../layout-display-density/package.json | 8 +- .../tree-grid/load-on-demand/package.json | 8 +- .../multi-cell-selection-mode/package.json | 8 +- .../multi-column-headers-export/package.json | 8 +- .../package.json | 8 +- .../multi-column-headers-styling/package.json | 8 +- .../package.json | 8 +- .../tree-grid/overview-styling/package.json | 8 +- samples/grids/tree-grid/overview/package.json | 8 +- .../grids/tree-grid/row-adding/package.json | 8 +- .../grids/tree-grid/row-classes/package.json | 8 +- .../tree-grid/row-drag-base/package.json | 8 +- .../row-editing-options/package.json | 8 +- .../tree-grid/row-editing-style/package.json | 8 +- .../tree-grid/row-paging-basic/package.json | 8 +- .../tree-grid/row-paging-options/package.json | 8 +- .../tree-grid/row-paging-style/package.json | 8 +- .../row-pinning-extra-column/package.json | 8 +- .../row-pinning-options/package.json | 8 +- .../tree-grid/row-pinning-style/package.json | 8 +- .../grids/tree-grid/row-reorder/package.json | 8 +- .../tree-grid/row-selection-mode/package.json | 8 +- .../row-selection-template-excel/package.json | 8 +- .../package.json | 8 +- .../grids/tree-grid/row-styles/package.json | 8 +- .../state-persistence-about/package.json | 8 +- .../state-persistence-main/package.json | 8 +- .../tree-grid/toolbar-sample-1/package.json | 8 +- .../tree-grid/toolbar-sample-2/package.json | 8 +- .../tree-grid/toolbar-sample-3/package.json | 8 +- .../tree-grid/toolbar-sample-4/package.json | 8 +- .../tree-grid/toolbar-style/package.json | 8 +- .../using-primary-foreign-keys/package.json | 8 +- .../inputs/color-editor/overview/package.json | 4 +- .../embedding-frames/package.json | 2 +- .../dock-manager/hiding-panes/package.json | 2 +- .../dock-manager/overview/package.json | 2 +- .../layouts/dock-manager/styling/package.json | 2 +- .../dock-manager/updating-panes/package.json | 8 +- .../geo-map/binding-data-csv/package.json | 6 +- .../binding-data-json-points/package.json | 6 +- .../geo-map/binding-data-model/package.json | 6 +- .../binding-multiple-shapes/package.json | 6 +- .../binding-multiple-sources/package.json | 6 +- .../geo-map/binding-shp-points/package.json | 6 +- .../geo-map/binding-shp-polygons/package.json | 6 +- .../binding-shp-polylines/package.json | 6 +- .../maps/geo-map/custom-tooltips/package.json | 6 +- .../geo-map/display-all-imagery/package.json | 6 +- .../geo-map/display-bing-imagery/package.json | 6 +- .../geo-map/display-esri-imagery/package.json | 6 +- .../geo-map/display-heat-imagery/package.json | 6 +- .../geo-map/display-osm-imagery/package.json | 6 +- .../maps/geo-map/marker-template/package.json | 6 +- samples/maps/geo-map/marker-type/package.json | 6 +- samples/maps/geo-map/navigation/package.json | 6 +- samples/maps/geo-map/overview/package.json | 6 +- .../maps/geo-map/shape-styling/package.json | 6 +- .../maps/geo-map/synchronization/package.json | 6 +- .../geo-map/triangulating-data/package.json | 6 +- .../type-scatter-area-series/package.json | 6 +- .../type-scatter-bubble-series/package.json | 6 +- .../type-scatter-contour-series/package.json | 6 +- .../type-scatter-density-series/package.json | 6 +- .../type-scatter-symbol-series/package.json | 6 +- .../type-shape-polygon-series/package.json | 6 +- .../type-shape-polyline-series/package.json | 6 +- 690 files changed, 2335 insertions(+), 2335 deletions(-) diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js index 9f6449d8c3..b00b684890 100644 --- a/browser/tasks/gulp-samples.js +++ b/browser/tasks/gulp-samples.js @@ -976,18 +976,18 @@ function updateIG(cb) { // { version: "3.2.12", name: "igniteui-webcomponents-core" }, // PUBLIC NPM let packageUpgrades = [ // these IG packages are often updated: - { version: "5.1.1-beta.2", name: "igniteui-webcomponents-core" }, - { version: "5.1.1-beta.2", name: "igniteui-webcomponents-charts" }, - { version: "5.1.1-beta.2", name: "igniteui-webcomponents-excel" }, - { version: "5.1.1-beta.2", name: "igniteui-webcomponents-gauges" }, - { version: "5.1.1-beta.2", name: "igniteui-webcomponents-grids" }, - { version: "5.1.1-beta.2", name: "igniteui-webcomponents-inputs" }, - { version: "5.1.1-beta.2", name: "igniteui-webcomponents-layouts" }, - { version: "5.1.1-beta.2", name: "igniteui-webcomponents-maps" }, - { version: "5.1.1-beta.2", name: "igniteui-webcomponents-spreadsheet-chart-adapter" }, - { version: "5.1.1-beta.2", name: "igniteui-webcomponents-spreadsheet" }, - { version: "5.1.1-beta.2", name: "igniteui-webcomponents-datasources" }, - { version: "5.1.1-beta.2", name: "igniteui-webcomponents-dashboards" }, + { version: "5.1.1", name: "igniteui-webcomponents-core" }, + { version: "5.1.1", name: "igniteui-webcomponents-charts" }, + { version: "5.1.1", name: "igniteui-webcomponents-excel" }, + { version: "5.1.1", name: "igniteui-webcomponents-gauges" }, + { version: "5.1.1", name: "igniteui-webcomponents-grids" }, + { version: "5.1.1", name: "igniteui-webcomponents-inputs" }, + { version: "5.1.1", name: "igniteui-webcomponents-layouts" }, + { version: "5.1.1", name: "igniteui-webcomponents-maps" }, + { version: "5.1.1", name: "igniteui-webcomponents-spreadsheet-chart-adapter" }, + { version: "5.1.1", name: "igniteui-webcomponents-spreadsheet" }, + { version: "5.1.1", name: "igniteui-webcomponents-datasources" }, + { version: "5.1.1", name: "igniteui-webcomponents-dashboards" }, // these IG packages are sometimes updated: { version: "5.1.2" , name: "igniteui-webcomponents" }, { version: "1.15.2", name: "igniteui-dockmanager" }, diff --git a/package-lock.json b/package-lock.json index 2090269057..3065cd9c92 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22,18 +22,18 @@ "file-saver": "^2.0.2", "igniteui-dockmanager": "1.15.2", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-dashboards": "5.1.1-beta.2", - "igniteui-webcomponents-datasources": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-dashboards": "5.1.1", + "igniteui-webcomponents-datasources": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0" }, @@ -8798,15 +8798,15 @@ } }, "node_modules/igniteui-webcomponents-charts": { - "version": "5.1.1-beta.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-charts/-/igniteui-webcomponents-charts-5.1.1-beta.2.tgz", - "integrity": "sha512-YKtru7MPu8N0I3TgYTOkOyO1WF1FpollPilgwrWkL1yQFGsK6tN6tQ+Qiv6ASNQhUSK5TdEJ6EjGubcy0+ljqw==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-charts/-/igniteui-webcomponents-charts-5.1.1.tgz", + "integrity": "sha512-Bk4IboCAtkCi7HRoYcPAUkbjBaN7tkP0HY9jvhO6BT3SL74XeAijIzty+1cWPt+5mRiqfjZySnMVEo+QpOvxTw==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.1.1-beta.2" + "igniteui-webcomponents-core": "5.1.1" } }, "node_modules/igniteui-webcomponents-charts/node_modules/tslib": { @@ -8815,9 +8815,9 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-core": { - "version": "5.1.1-beta.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-core/-/igniteui-webcomponents-core-5.1.1-beta.2.tgz", - "integrity": "sha512-X8M9Vdx1yU2476sAPVHLtSj8YZm8h2eCu/doDi0J/XnVKPwbfjNjdK5wUV9fGCCqbFkbfLTN6MUnjycV2usF0g==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-core/-/igniteui-webcomponents-core-5.1.1.tgz", + "integrity": "sha512-vRtZcRb0sEjX6x2tB4NBocBa0aOfQtl5NpXKng8rW/aN3YiC5BZyQUakb7l6TPY2s6WhsuJHEvg9EdjF7Y1KAQ==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" @@ -8832,21 +8832,21 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-dashboards": { - "version": "5.1.1-beta.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-dashboards/-/igniteui-webcomponents-dashboards-5.1.1-beta.2.tgz", - "integrity": "sha512-NQwu3EQ5KpDrzbu5tTL///9ebrT8lMiCGVne1fXXaQNNHEkjZoqXiy+aioRa6WybGATYUtLvTXKPMh2tndpHjA==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-dashboards/-/igniteui-webcomponents-dashboards-5.1.1.tgz", + "integrity": "sha512-kOKIJRsTDerrhpy/wjVJXqvhOSfwSuYNN5h6JdYfxpgzEpkG/Hx9qJqRf4DBAw7xg6H1SHIxksl6kGFN99V+wg==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2" + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1" } }, "node_modules/igniteui-webcomponents-dashboards/node_modules/tslib": { @@ -8855,15 +8855,15 @@ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" }, "node_modules/igniteui-webcomponents-datasources": { - "version": "5.1.1-beta.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-datasources/-/igniteui-webcomponents-datasources-5.1.1-beta.2.tgz", - "integrity": "sha512-Cq74s4rZo+qpt6XXHpOBx1ixu3aDyw29m4VeWSMnQ07iukB6iXL5Z8SgGbDd7XqQo/7mm883Wt8RU8Vh9lnz9Q==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-datasources/-/igniteui-webcomponents-datasources-5.1.1.tgz", + "integrity": "sha512-rR3egVsv19lbHdvW3aeg2D60Nr2nspArbTVFzWudtdMUZdrOqxn/zUk6zVsIyR+42pkhjh8fzg6KN/R/sJX82A==", "license": "MIT", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.1.1-beta.2" + "igniteui-webcomponents-core": "5.1.1" } }, "node_modules/igniteui-webcomponents-datasources/node_modules/tslib": { @@ -8872,9 +8872,9 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-excel": { - "version": "5.1.1-beta.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-excel/-/igniteui-webcomponents-excel-5.1.1-beta.2.tgz", - "integrity": "sha512-eBavuZv23QSP6nat6ySPOt0v4J9e9NVNkZJNYypQs+Umv15iG4tB0OlhAwsMy6Jt2J3xdVodL9Nrd8UEyK5nWA==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-excel/-/igniteui-webcomponents-excel-5.1.1.tgz", + "integrity": "sha512-mkUaNZ6lXONc21gOxSBxq7j1nRa9KarnVu752L7PQeE8nRneMkUAaxisZl5pNLTUwD6K1wTdUvQsx7VIfoGtfg==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "jszip": "^3.1.5", @@ -8882,7 +8882,7 @@ "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.1.1-beta.2" + "igniteui-webcomponents-core": "5.1.1" } }, "node_modules/igniteui-webcomponents-excel/node_modules/tslib": { @@ -8891,15 +8891,15 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-gauges": { - "version": "5.1.1-beta.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-gauges/-/igniteui-webcomponents-gauges-5.1.1-beta.2.tgz", - "integrity": "sha512-vvt8SRlHrCtixter319IITNO3KqGP+AgyzIRC2ns8+379U5TW3GjYM0IP3jEWAWGLKwvi2lk7UP4I+j20DSrbA==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-gauges/-/igniteui-webcomponents-gauges-5.1.1.tgz", + "integrity": "sha512-jz/H6MHnRM+QSvV4Q1qpXffYfF0hS+Jg5c1wdATagDGR1OPV79IWyYY2qC2c0WHrX1Iyocbsi6I/YdBN4pfK5w==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.1.1-beta.2" + "igniteui-webcomponents-core": "5.1.1" } }, "node_modules/igniteui-webcomponents-gauges/node_modules/tslib": { @@ -8908,17 +8908,17 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-grids": { - "version": "5.1.1-beta.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-5.1.1-beta.2.tgz", - "integrity": "sha512-m0AybFv8ITEZ7Y5A89YWbj9Ay2g4YWU06KU4dKUhtei94UADSSWWDtzpDia0Dcj97kDvERQltWPWEcZeF62TSA==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-5.1.1.tgz", + "integrity": "sha512-CRhoBSPL/4/TywBW2XeKUhWYiwZOUil6RFlD5V1HUf046zLbzgTqvh2mSmiNXl4E6Iqu3xfE0nAI/4JFyR8UfQ==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2" + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1" } }, "node_modules/igniteui-webcomponents-grids/node_modules/tslib": { @@ -8927,15 +8927,15 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-inputs": { - "version": "5.1.1-beta.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-inputs/-/igniteui-webcomponents-inputs-5.1.1-beta.2.tgz", - "integrity": "sha512-w3aiqgw5uPDC5sGLw75SnJFEbXxQtLpNfPbazWdIPTU8iDVPD3Z/oZOuh3gIglAwr9bzLzQZB1VHtBO08nBy7A==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-inputs/-/igniteui-webcomponents-inputs-5.1.1.tgz", + "integrity": "sha512-48v+rxOajS7KT+mThM8gt0JXTy3DuzenTjAgAn7kzLJBMKgEi9Kp+f2rOAyhZHLjkTgQiaXq81xVXjcySnuTcQ==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.1.1-beta.2" + "igniteui-webcomponents-core": "5.1.1" } }, "node_modules/igniteui-webcomponents-inputs/node_modules/tslib": { @@ -8944,16 +8944,16 @@ "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" }, "node_modules/igniteui-webcomponents-layouts": { - "version": "5.1.1-beta.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-layouts/-/igniteui-webcomponents-layouts-5.1.1-beta.2.tgz", - "integrity": "sha512-kIDs5dKOyPuGiRcAYj7SIlETa7sQ2ts7vd2hoiefUzPKg3JjbzvNL+YMsRjj4TyAcm0YPEmhvQ+sdZVLVuHcmg==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-layouts/-/igniteui-webcomponents-layouts-5.1.1.tgz", + "integrity": "sha512-+uuDI/YmeFt0Uaq0SBVVeFltsmSt3NPWnwKvvTE78QOfctONwrg3lW0dKtEGd+nvsqxCo3pOVaqTGPPTcPTLjA==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2" + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1" } }, "node_modules/igniteui-webcomponents-layouts/node_modules/tslib": { @@ -8962,16 +8962,16 @@ "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" }, "node_modules/igniteui-webcomponents-maps": { - "version": "5.1.1-beta.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-maps/-/igniteui-webcomponents-maps-5.1.1-beta.2.tgz", - "integrity": "sha512-FoBAkQT9POhCm9dq99pHm99rQNkoL8Z69exbuOFKOfra0wvTw9QGk3zVfJw9+Cd4S2bbV3JTEm5/s6BC1zN2og==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-maps/-/igniteui-webcomponents-maps-5.1.1.tgz", + "integrity": "sha512-JgNVAXVaiM7Lp+HZ8USSaL/5Jyoiovi4Qp6I3YftnWQeuMERBMwSEg4nCLqXktcd9Y5qnzJ9XjTK4uTCdhiA9g==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2" + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1" } }, "node_modules/igniteui-webcomponents-maps/node_modules/tslib": { @@ -8980,31 +8980,31 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-spreadsheet": { - "version": "5.1.1-beta.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet/-/igniteui-webcomponents-spreadsheet-5.1.1-beta.2.tgz", - "integrity": "sha512-fFn7+1UmBsxFzBw5bnlKD1ULctgSX7GnGDz9Aary4MiWFyKq0IivxXPPzllTY7rZXp9uI933CI1t16jSh0r/Hg==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet/-/igniteui-webcomponents-spreadsheet-5.1.1.tgz", + "integrity": "sha512-eAPXj3c1hQaSJT4k7STjC2GuzxmyC5Pnim9ox70QYs7fe/2Vn9ADvnOBETpE6f7hDLAJNZ0uj/HesOkELfUFnQ==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2" + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1" } }, "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter": { - "version": "5.1.1-beta.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet-chart-adapter/-/igniteui-webcomponents-spreadsheet-chart-adapter-5.1.1-beta.2.tgz", - "integrity": "sha512-sNuAjfFS0wKeB9tcbDtaGAWJ6FoEaRcEt4+qaDwKvZdWlSvcgJhqQ89YChuVqV669m91e9TvDD2iatw6e/vJCA==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet-chart-adapter/-/igniteui-webcomponents-spreadsheet-chart-adapter-5.1.1.tgz", + "integrity": "sha512-e7cAAjx78/9KEgaembjxMtHlb1/ZPlsQnkkOhPuJyMTq0q/IAKDo02Wr8P4YzacnPW+wUyuGYWbfmSdzxaYWlg==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2" + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1" } }, "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter/node_modules/tslib": { diff --git a/package.json b/package.json index f4f3c96185..34a5f76f2f 100644 --- a/package.json +++ b/package.json @@ -42,18 +42,18 @@ "file-saver": "^2.0.2", "igniteui-dockmanager": "1.15.2", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-dashboards": "5.1.1-beta.2", - "igniteui-webcomponents-datasources": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-dashboards": "5.1.1", + "igniteui-webcomponents-datasources": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0" }, diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 4de45790bd..5a308bd76f 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 1412dff67b..ee7425d2b0 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index ccc273d930..d90f53a72c 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index e7246c7a5f..ac475b6011 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index 7cdca8028a..8a60ec2fc0 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 1412dff67b..ee7425d2b0 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 223c494681..0c1a725ab9 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 4de45790bd..5a308bd76f 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index a9446f89db..f3e9b57f01 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index b8a875eb6e..a12256ae4d 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 8cf5d39d4e..6f31441c9e 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 8cf5d39d4e..6f31441c9e 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index c78a970837..dc025a6269 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 3a2f15935d..79102fd069 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -23,14 +23,14 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-dashboards": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-dashboards": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index 3a2f15935d..79102fd069 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -23,14 +23,14 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-dashboards": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-dashboards": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 3a2f15935d..79102fd069 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -23,14 +23,14 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-dashboards": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-dashboards": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 3a2f15935d..79102fd069 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -23,14 +23,14 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-dashboards": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-dashboards": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 3a2f15935d..79102fd069 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -23,14 +23,14 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-dashboards": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-dashboards": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 67d2d4bd08..46882e908b 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 1f33be0247..813dedf04c 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 1f33be0247..813dedf04c 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 961e4008b7..1087f95ca6 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 1808efdd6a..3042bdc784 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index eac19c674d..2398f91e94 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index b89f3d437d..e812aef287 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 9d5a938451..c16b4a016a 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index ab31e0404d..36d4cbe59f 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index dc8fc5b80f..cd8a9cbb6b 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 0e954bdbee..b3560b3cd7 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 9d5a938451..c16b4a016a 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 19793b8312..71800285b4 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index bb70fc32af..47595ef1c3 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 36c9a8fcc6..2d41f96662 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 36c9a8fcc6..2d41f96662 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 36c9a8fcc6..2d41f96662 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 36c9a8fcc6..2d41f96662 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 36c9a8fcc6..2d41f96662 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index ccc273d930..d90f53a72c 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index ccc273d930..d90f53a72c 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index ccc273d930..d90f53a72c 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 93a49a7014..c79c066cf1 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 36c9a8fcc6..2d41f96662 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -26,8 +26,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index ccdd4ae8ed..00280ec3f2 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 665909cea4..ff924b4b80 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index 9f88cad4d2..8c3666c9a2 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index f058215bce..fa7865e335 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 2a2e8815d6..1e2bd6f80d 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-error-bars/package.json b/samples/charts/data-chart/series-error-bars/package.json index 6811479fc1..55b595de8a 100644 --- a/samples/charts/data-chart/series-error-bars/package.json +++ b/samples/charts/data-chart/series-error-bars/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 75ead82861..2b2217b4e5 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index e2c1e0ff97..79909f8247 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index d986fcba06..2eceab157d 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index e496b83566..d366da4720 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index 52973008ff..e50df131e8 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 502a7d2e0a..ddd82ac5e9 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 5a5769f30b..d86e0902c3 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 40e9e27a3b..da2e9185de 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 5dd4af3512..27aaead2b0 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-indicator-column/package.json b/samples/charts/data-chart/type-financial-indicator-column/package.json index 685d3ceecf..b49ec46132 100644 --- a/samples/charts/data-chart/type-financial-indicator-column/package.json +++ b/samples/charts/data-chart/type-financial-indicator-column/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-indicator-line/package.json b/samples/charts/data-chart/type-financial-indicator-line/package.json index 346095a152..e5cff71405 100644 --- a/samples/charts/data-chart/type-financial-indicator-line/package.json +++ b/samples/charts/data-chart/type-financial-indicator-line/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index c8034e3fec..e0d7ae9218 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index aaa2d9d7b8..81a34cfcaa 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index df0ca8943e..534b6482c0 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index 21878a1dbe..da932e4a68 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index c31baff271..98fff7b434 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index e2833f9e03..4ea08fa7fc 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 7c1ac5cdad..06278b1c50 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 14ac2de5ea..2fe6e4c5ac 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index d2e4e46741..cae4491752 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 29042fa844..ad6f5ee50d 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 4bc02eec81..fb85d80d5a 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 10a79d6b7c..1b30b1efa0 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 09b460f9e9..185b1c2096 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 0e67eabae3..7c55db2341 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index ccc273d930..d90f53a72c 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 62bb3ffdb5..5d8e2fbb96 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 565891c42d..9ecc0ffe66 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index 87acdb1d57..0aa6f0d828 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 362c0f4075..3543405a43 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index e5a457edf8..37b353ee53 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 7d0598c87f..57c6a1f3a5 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 8c590b6d87..3804d4877d 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 07e2d94ed0..22a99ece54 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 99244769df..97a485c17b 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 798f4bda64..892a759220 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 49c3a957cd..0c0842fe0c 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index 7168042686..5fe56ab317 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 802ca482d9..c7ee4a0d23 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 5f57432c31..56a81938d3 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index ae17da7cd8..f71d05f20d 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index c6b1888cec..99256203e2 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 19bd6ad842..8b8e0c2cd3 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 5ec88cc807..c00fc141ef 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index d4fc882705..7128a1a403 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 4e588fe2ba..bc33df8fd9 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 896b2ce78e..fcba3a3d65 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 1f4f5cca5b..f6e4beb1ce 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index ccc273d930..d90f53a72c 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 267301f471..125b27f21f 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index 67971e09e1..6e466a3179 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index ccc273d930..d90f53a72c 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index ccc273d930..d90f53a72c 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index ccc273d930..d90f53a72c 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index ccc273d930..d90f53a72c 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index ccc273d930..d90f53a72c 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index ccc273d930..d90f53a72c 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index ebcd66f17a..d4df6f8e1a 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index caf5962f10..68b8bb7df1 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 8fbe209d79..49f1c56754 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index 0f2a9f0ced..1e77849399 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/multi-column-combobox/overview/package.json b/samples/editors/multi-column-combobox/overview/package.json index 555f57de86..6f3fdd3e02 100644 --- a/samples/editors/multi-column-combobox/overview/package.json +++ b/samples/editors/multi-column-combobox/overview/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/date-limits/package.json b/samples/editors/x-date-picker/date-limits/package.json index b0a0959977..33ad82edbd 100644 --- a/samples/editors/x-date-picker/date-limits/package.json +++ b/samples/editors/x-date-picker/date-limits/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/editing/package.json b/samples/editors/x-date-picker/editing/package.json index d6d31efc28..01dab6be7e 100644 --- a/samples/editors/x-date-picker/editing/package.json +++ b/samples/editors/x-date-picker/editing/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/format/package.json b/samples/editors/x-date-picker/format/package.json index a01af33d05..0932838e53 100644 --- a/samples/editors/x-date-picker/format/package.json +++ b/samples/editors/x-date-picker/format/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/overview/package.json b/samples/editors/x-date-picker/overview/package.json index 96a8182572..5fa196620a 100644 --- a/samples/editors/x-date-picker/overview/package.json +++ b/samples/editors/x-date-picker/overview/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/editors/x-date-picker/range/package.json b/samples/editors/x-date-picker/range/package.json index 38d150841c..57d60eed29 100644 --- a/samples/editors/x-date-picker/range/package.json +++ b/samples/editors/x-date-picker/range/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 7f5ca7a188..31ac76f3c0 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -25,11 +25,11 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index a892dadf16..74bdc3f562 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -25,8 +25,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 43d976f0f6..9e7098a4f6 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -25,8 +25,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index 76ebf64236..9439a1a978 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -25,8 +25,8 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index e38a5210a7..a46f54e9cd 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -25,12 +25,12 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index ee985b6c77..2a2a8acaa9 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -25,12 +25,12 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index f7f28984b9..ebdeb41d94 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 7c002ad347..be8446a3d1 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -25,11 +25,11 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 81a45abbcf..af0d531520 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index d1b6ffaa4b..5f188ec2dd 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 598e1114ab..bbd2b8642b 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 1889d9f481..f7daeb2f98 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index e888dcb624..64bd82c2e3 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 42e3678178..bab85f9960 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/filter-dialog/package.json b/samples/excel/spreadsheet/filter-dialog/package.json index 7e755cbfa3..a34523a43c 100644 --- a/samples/excel/spreadsheet/filter-dialog/package.json +++ b/samples/excel/spreadsheet/filter-dialog/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/format-dialog/package.json b/samples/excel/spreadsheet/format-dialog/package.json index 2cd24e250e..8cfe1c12d3 100644 --- a/samples/excel/spreadsheet/format-dialog/package.json +++ b/samples/excel/spreadsheet/format-dialog/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 682fcfeaa3..1116b85ebc 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index cb44dfb9c1..01bfc29b48 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -25,9 +25,9 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/excel/spreadsheet/sort-dialog/package.json b/samples/excel/spreadsheet/sort-dialog/package.json index aadce3622e..0d1923fa20 100644 --- a/samples/excel/spreadsheet/sort-dialog/package.json +++ b/samples/excel/spreadsheet/sort-dialog/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-excel": "5.1.1-beta.2", - "igniteui-webcomponents-spreadsheet": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-excel": "5.1.1", + "igniteui-webcomponents-spreadsheet": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 8e0df01f3a..f98cc18de4 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index c022642078..68c6b7bb12 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index b148a840cd..c4f19c1214 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index cf1b0ae806..5fd603e2a6 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index 8572bd01c5..ae0dd7f197 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index 76548b5359..e62c2dd748 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index 8b4ebdb6d0..d2991e0a60 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index f5e0022c80..7fd2de5c6c 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-filled/package.json b/samples/gauges/bullet-graph/type-filled/package.json index c96366a4c3..8f0bf1f133 100644 --- a/samples/gauges/bullet-graph/type-filled/package.json +++ b/samples/gauges/bullet-graph/type-filled/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-horizontal/package.json b/samples/gauges/bullet-graph/type-horizontal/package.json index 6b5ba256d3..61edd2b9b2 100644 --- a/samples/gauges/bullet-graph/type-horizontal/package.json +++ b/samples/gauges/bullet-graph/type-horizontal/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-reversed/package.json b/samples/gauges/bullet-graph/type-reversed/package.json index 2e2eac4361..1155720808 100644 --- a/samples/gauges/bullet-graph/type-reversed/package.json +++ b/samples/gauges/bullet-graph/type-reversed/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-segmented/package.json b/samples/gauges/bullet-graph/type-segmented/package.json index 4f0621680d..6e10869ca3 100644 --- a/samples/gauges/bullet-graph/type-segmented/package.json +++ b/samples/gauges/bullet-graph/type-segmented/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/bullet-graph/type-vertical/package.json b/samples/gauges/bullet-graph/type-vertical/package.json index ac80a78171..f622b0bde5 100644 --- a/samples/gauges/bullet-graph/type-vertical/package.json +++ b/samples/gauges/bullet-graph/type-vertical/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 437bb3f5f6..9b43736cf7 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 9729cb3e54..fdff05487a 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index 339e9475c5..236aa9a8fc 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index 20129f78e6..5b6388f4a3 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 624a1af8d0..c5b1a941b0 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 42dcd5f260..8d66546c78 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index 80239d531c..eaa7e5e455 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index beffd650c7..362fc57124 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-curved/package.json b/samples/gauges/linear-gauge/type-curved/package.json index 93f9cb69f6..69ff9db75c 100644 --- a/samples/gauges/linear-gauge/type-curved/package.json +++ b/samples/gauges/linear-gauge/type-curved/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-filled/package.json b/samples/gauges/linear-gauge/type-filled/package.json index 99eaed41ec..3d1eaaee40 100644 --- a/samples/gauges/linear-gauge/type-filled/package.json +++ b/samples/gauges/linear-gauge/type-filled/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-horizontal/package.json b/samples/gauges/linear-gauge/type-horizontal/package.json index 02b0ddb7d3..29a4545f53 100644 --- a/samples/gauges/linear-gauge/type-horizontal/package.json +++ b/samples/gauges/linear-gauge/type-horizontal/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-multi-range/package.json b/samples/gauges/linear-gauge/type-multi-range/package.json index 81309ae7b6..645a34c0ad 100644 --- a/samples/gauges/linear-gauge/type-multi-range/package.json +++ b/samples/gauges/linear-gauge/type-multi-range/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-multi-scale/package.json b/samples/gauges/linear-gauge/type-multi-scale/package.json index 075139ed40..7a057f40f5 100644 --- a/samples/gauges/linear-gauge/type-multi-scale/package.json +++ b/samples/gauges/linear-gauge/type-multi-scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-segmented/package.json b/samples/gauges/linear-gauge/type-segmented/package.json index 930b0bc7c2..ab58819c81 100644 --- a/samples/gauges/linear-gauge/type-segmented/package.json +++ b/samples/gauges/linear-gauge/type-segmented/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/linear-gauge/type-vertical/package.json b/samples/gauges/linear-gauge/type-vertical/package.json index 63143477df..df18b49ad6 100644 --- a/samples/gauges/linear-gauge/type-vertical/package.json +++ b/samples/gauges/linear-gauge/type-vertical/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 41d72e361e..99071d3601 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 692cc05436..16d9f715d8 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index 08d82a60c4..57d9d459f9 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 63f6572477..12202cc105 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 263ce3a853..7054ea1248 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 63f6572477..12202cc105 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 558038fe5d..0b2c63de34 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index f56be6d2ef..a9a5944c3a 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index e3f7a6b303..a660c0f172 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-column/package.json b/samples/gauges/radial-gauge/type-column/package.json index d8e4c39488..f32584c4be 100644 --- a/samples/gauges/radial-gauge/type-column/package.json +++ b/samples/gauges/radial-gauge/type-column/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-curved/package.json b/samples/gauges/radial-gauge/type-curved/package.json index e8162d219c..2da73cd913 100644 --- a/samples/gauges/radial-gauge/type-curved/package.json +++ b/samples/gauges/radial-gauge/type-curved/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-direction/package.json b/samples/gauges/radial-gauge/type-direction/package.json index 23a1413652..e5fa17c69b 100644 --- a/samples/gauges/radial-gauge/type-direction/package.json +++ b/samples/gauges/radial-gauge/type-direction/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-full/package.json b/samples/gauges/radial-gauge/type-full/package.json index 9fe79fb2ef..1d4fcf1ec2 100644 --- a/samples/gauges/radial-gauge/type-full/package.json +++ b/samples/gauges/radial-gauge/type-full/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-half/package.json b/samples/gauges/radial-gauge/type-half/package.json index 3f21398dff..8eb082d8d8 100644 --- a/samples/gauges/radial-gauge/type-half/package.json +++ b/samples/gauges/radial-gauge/type-half/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-quatre/package.json b/samples/gauges/radial-gauge/type-quatre/package.json index 8efcb1186e..6915a1f897 100644 --- a/samples/gauges/radial-gauge/type-quatre/package.json +++ b/samples/gauges/radial-gauge/type-quatre/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-ring/package.json b/samples/gauges/radial-gauge/type-ring/package.json index e8ba639ea6..3d72020456 100644 --- a/samples/gauges/radial-gauge/type-ring/package.json +++ b/samples/gauges/radial-gauge/type-ring/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-segmented/package.json b/samples/gauges/radial-gauge/type-segmented/package.json index 610c250fd2..ffeab8e4fb 100644 --- a/samples/gauges/radial-gauge/type-segmented/package.json +++ b/samples/gauges/radial-gauge/type-segmented/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/gauges/radial-gauge/type-semi/package.json b/samples/gauges/radial-gauge/type-semi/package.json index 7ec339eccf..4c40eb5e5a 100644 --- a/samples/gauges/radial-gauge/type-semi/package.json +++ b/samples/gauges/radial-gauge/type-semi/package.json @@ -23,8 +23,8 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/accessibility/package.json b/samples/grids/data-grid/accessibility/package.json index 7f2ced53e9..7dd9b28643 100644 --- a/samples/grids/data-grid/accessibility/package.json +++ b/samples/grids/data-grid/accessibility/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/binding-data-service/package.json b/samples/grids/data-grid/binding-data-service/package.json index be46b14aa9..fa79aed0a4 100644 --- a/samples/grids/data-grid/binding-data-service/package.json +++ b/samples/grids/data-grid/binding-data-service/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/binding-live-data/package.json b/samples/grids/data-grid/binding-live-data/package.json index c85d6e9e6f..cffcbcb979 100644 --- a/samples/grids/data-grid/binding-live-data/package.json +++ b/samples/grids/data-grid/binding-live-data/package.json @@ -29,11 +29,11 @@ "@webcomponents/webcomponentsjs": "2.3.0", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/binding-local-data/package.json b/samples/grids/data-grid/binding-local-data/package.json index 2e98e12c5c..287545a318 100644 --- a/samples/grids/data-grid/binding-local-data/package.json +++ b/samples/grids/data-grid/binding-local-data/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/binding-remote-data/package.json b/samples/grids/data-grid/binding-remote-data/package.json index 65d53ade4d..648a322538 100644 --- a/samples/grids/data-grid/binding-remote-data/package.json +++ b/samples/grids/data-grid/binding-remote-data/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-datasources": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-datasources": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-activation/package.json b/samples/grids/data-grid/cell-activation/package.json index 216dd8a164..b1ea3003cd 100644 --- a/samples/grids/data-grid/cell-activation/package.json +++ b/samples/grids/data-grid/cell-activation/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-editing/package.json b/samples/grids/data-grid/cell-editing/package.json index 1b8fe97d0e..b74a727718 100644 --- a/samples/grids/data-grid/cell-editing/package.json +++ b/samples/grids/data-grid/cell-editing/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-merging/package.json b/samples/grids/data-grid/cell-merging/package.json index 4e1d681c45..d113ea58ef 100644 --- a/samples/grids/data-grid/cell-merging/package.json +++ b/samples/grids/data-grid/cell-merging/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-datasources": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-datasources": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/cell-selection/package.json b/samples/grids/data-grid/cell-selection/package.json index 8854901288..6999a7682d 100644 --- a/samples/grids/data-grid/cell-selection/package.json +++ b/samples/grids/data-grid/cell-selection/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-animation/package.json b/samples/grids/data-grid/column-animation/package.json index 08f5cd697f..c11683daf0 100644 --- a/samples/grids/data-grid/column-animation/package.json +++ b/samples/grids/data-grid/column-animation/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-chooser-picker/package.json b/samples/grids/data-grid/column-chooser-picker/package.json index df5fc07913..5a26eee62e 100644 --- a/samples/grids/data-grid/column-chooser-picker/package.json +++ b/samples/grids/data-grid/column-chooser-picker/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-chooser-toolbar/package.json b/samples/grids/data-grid/column-chooser-toolbar/package.json index 191a64eb55..d6f3fa47b0 100644 --- a/samples/grids/data-grid/column-chooser-toolbar/package.json +++ b/samples/grids/data-grid/column-chooser-toolbar/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-filter-expressions/package.json b/samples/grids/data-grid/column-filter-expressions/package.json index 74b07fe90a..acf26c3a12 100644 --- a/samples/grids/data-grid/column-filter-expressions/package.json +++ b/samples/grids/data-grid/column-filter-expressions/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-filter-operands/package.json b/samples/grids/data-grid/column-filter-operands/package.json index b3d9fce2e0..23c27c455a 100644 --- a/samples/grids/data-grid/column-filter-operands/package.json +++ b/samples/grids/data-grid/column-filter-operands/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-filtering/package.json b/samples/grids/data-grid/column-filtering/package.json index 1a2851e75f..2c243d6f3c 100644 --- a/samples/grids/data-grid/column-filtering/package.json +++ b/samples/grids/data-grid/column-filtering/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-moving/package.json b/samples/grids/data-grid/column-moving/package.json index 81be5184b5..cd80d887a7 100644 --- a/samples/grids/data-grid/column-moving/package.json +++ b/samples/grids/data-grid/column-moving/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-options/package.json b/samples/grids/data-grid/column-options/package.json index 60e41136b2..e696d3cfee 100644 --- a/samples/grids/data-grid/column-options/package.json +++ b/samples/grids/data-grid/column-options/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-pinning-picker/package.json b/samples/grids/data-grid/column-pinning-picker/package.json index e37548045c..6505479764 100644 --- a/samples/grids/data-grid/column-pinning-picker/package.json +++ b/samples/grids/data-grid/column-pinning-picker/package.json @@ -25,10 +25,10 @@ "@webcomponents/webcomponentsjs": "2.3.0", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-pinning-toolbar/package.json b/samples/grids/data-grid/column-pinning-toolbar/package.json index 26259eaf26..e8c4040047 100644 --- a/samples/grids/data-grid/column-pinning-toolbar/package.json +++ b/samples/grids/data-grid/column-pinning-toolbar/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-resizing/package.json b/samples/grids/data-grid/column-resizing/package.json index 95cb5f6460..9b39f72e31 100644 --- a/samples/grids/data-grid/column-resizing/package.json +++ b/samples/grids/data-grid/column-resizing/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-scrolling/package.json b/samples/grids/data-grid/column-scrolling/package.json index 0b6fce28cc..856199baa1 100644 --- a/samples/grids/data-grid/column-scrolling/package.json +++ b/samples/grids/data-grid/column-scrolling/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-sorting/package.json b/samples/grids/data-grid/column-sorting/package.json index eb99bb36c1..4c4b7460fb 100644 --- a/samples/grids/data-grid/column-sorting/package.json +++ b/samples/grids/data-grid/column-sorting/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-summaries/package.json b/samples/grids/data-grid/column-summaries/package.json index 7e12ec2821..c85814d84b 100644 --- a/samples/grids/data-grid/column-summaries/package.json +++ b/samples/grids/data-grid/column-summaries/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/column-types/package.json b/samples/grids/data-grid/column-types/package.json index d49d3b5973..d24c77bb08 100644 --- a/samples/grids/data-grid/column-types/package.json +++ b/samples/grids/data-grid/column-types/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/load-save-layout/package.json b/samples/grids/data-grid/load-save-layout/package.json index 557d114fbb..86efa0616c 100644 --- a/samples/grids/data-grid/load-save-layout/package.json +++ b/samples/grids/data-grid/load-save-layout/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/localization/package.json b/samples/grids/data-grid/localization/package.json index 23934be1cb..d38b54c189 100644 --- a/samples/grids/data-grid/localization/package.json +++ b/samples/grids/data-grid/localization/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/overview/package.json b/samples/grids/data-grid/overview/package.json index 5a3e3ac80a..aab1521e9d 100644 --- a/samples/grids/data-grid/overview/package.json +++ b/samples/grids/data-grid/overview/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/pager/package.json b/samples/grids/data-grid/pager/package.json index e2bebce84a..a3fde802c1 100644 --- a/samples/grids/data-grid/pager/package.json +++ b/samples/grids/data-grid/pager/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/performance/package.json b/samples/grids/data-grid/performance/package.json index 6af91ba8bc..cb74636d78 100644 --- a/samples/grids/data-grid/performance/package.json +++ b/samples/grids/data-grid/performance/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-group-descriptions/package.json b/samples/grids/data-grid/row-group-descriptions/package.json index 40289c9c17..240c041ece 100644 --- a/samples/grids/data-grid/row-group-descriptions/package.json +++ b/samples/grids/data-grid/row-group-descriptions/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-grouping/package.json b/samples/grids/data-grid/row-grouping/package.json index 40289c9c17..240c041ece 100644 --- a/samples/grids/data-grid/row-grouping/package.json +++ b/samples/grids/data-grid/row-grouping/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-highlighting/package.json b/samples/grids/data-grid/row-highlighting/package.json index da078a8449..4a21d6b6da 100644 --- a/samples/grids/data-grid/row-highlighting/package.json +++ b/samples/grids/data-grid/row-highlighting/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-paging/package.json b/samples/grids/data-grid/row-paging/package.json index b37ec8e094..3fae34e6d6 100644 --- a/samples/grids/data-grid/row-paging/package.json +++ b/samples/grids/data-grid/row-paging/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-pinning/package.json b/samples/grids/data-grid/row-pinning/package.json index 8b46d7eaf3..632b62beff 100644 --- a/samples/grids/data-grid/row-pinning/package.json +++ b/samples/grids/data-grid/row-pinning/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/row-selection/package.json b/samples/grids/data-grid/row-selection/package.json index 8854901288..6999a7682d 100644 --- a/samples/grids/data-grid/row-selection/package.json +++ b/samples/grids/data-grid/row-selection/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-comparison-table/package.json b/samples/grids/data-grid/type-comparison-table/package.json index 463cc56414..56ff0cbdaa 100644 --- a/samples/grids/data-grid/type-comparison-table/package.json +++ b/samples/grids/data-grid/type-comparison-table/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-datasources": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-datasources": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-heatmap-table/package.json b/samples/grids/data-grid/type-heatmap-table/package.json index 3bf2117aca..71a30487cc 100644 --- a/samples/grids/data-grid/type-heatmap-table/package.json +++ b/samples/grids/data-grid/type-heatmap-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-marketing-table/package.json b/samples/grids/data-grid/type-marketing-table/package.json index 2422a7f2a0..4a0d45678b 100644 --- a/samples/grids/data-grid/type-marketing-table/package.json +++ b/samples/grids/data-grid/type-marketing-table/package.json @@ -23,11 +23,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-matrix-table/package.json b/samples/grids/data-grid/type-matrix-table/package.json index 5689a7404b..a6755ec366 100644 --- a/samples/grids/data-grid/type-matrix-table/package.json +++ b/samples/grids/data-grid/type-matrix-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-periodic-table/package.json b/samples/grids/data-grid/type-periodic-table/package.json index 2175e301e6..21f8fa2172 100644 --- a/samples/grids/data-grid/type-periodic-table/package.json +++ b/samples/grids/data-grid/type-periodic-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/data-grid/type-table/package.json b/samples/grids/data-grid/type-table/package.json index f6d3eda050..00e2a31722 100644 --- a/samples/grids/data-grid/type-table/package.json +++ b/samples/grids/data-grid/type-table/package.json @@ -23,10 +23,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/action-strip/package.json b/samples/grids/grid/action-strip/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/action-strip/package.json +++ b/samples/grids/grid/action-strip/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/advanced-filtering-options/package.json b/samples/grids/grid/advanced-filtering-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/advanced-filtering-options/package.json +++ b/samples/grids/grid/advanced-filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/advanced-filtering-style/package.json b/samples/grids/grid/advanced-filtering-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/advanced-filtering-style/package.json +++ b/samples/grids/grid/advanced-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/binding-composite-data/package.json +++ b/samples/grids/grid/binding-composite-data/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/binding-crud-data/package.json b/samples/grids/grid/binding-crud-data/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/binding-crud-data/package.json +++ b/samples/grids/grid/binding-crud-data/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/binding-nested-data-1/package.json +++ b/samples/grids/grid/binding-nested-data-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cascading-combo/package.json b/samples/grids/grid/cascading-combo/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/cascading-combo/package.json +++ b/samples/grids/grid/cascading-combo/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-editing-sample/package.json b/samples/grids/grid/cell-editing-sample/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/cell-editing-sample/package.json +++ b/samples/grids/grid/cell-editing-sample/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-editing-styling/package.json b/samples/grids/grid/cell-editing-styling/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/cell-editing-styling/package.json +++ b/samples/grids/grid/cell-editing-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/cell-selection-mode/package.json +++ b/samples/grids/grid/cell-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/cell-selection-style/package.json b/samples/grids/grid/cell-selection-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/cell-selection-style/package.json +++ b/samples/grids/grid/cell-selection-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/change-icons-custom/package.json b/samples/grids/grid/change-icons-custom/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/grid/change-icons-custom/package.json +++ b/samples/grids/grid/change-icons-custom/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/clipboard-operations/package.json b/samples/grids/grid/clipboard-operations/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/grid/clipboard-operations/package.json +++ b/samples/grids/grid/clipboard-operations/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-auto-sizing/package.json b/samples/grids/grid/column-auto-sizing/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-auto-sizing/package.json +++ b/samples/grids/grid/column-auto-sizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-collapsible-groups/package.json b/samples/grids/grid/column-collapsible-groups/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-collapsible-groups/package.json +++ b/samples/grids/grid/column-collapsible-groups/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-data-types/package.json b/samples/grids/grid/column-data-types/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-data-types/package.json +++ b/samples/grids/grid/column-data-types/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-hiding-options/package.json b/samples/grids/grid/column-hiding-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-hiding-options/package.json +++ b/samples/grids/grid/column-hiding-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-hiding-toolbar-style/package.json b/samples/grids/grid/column-hiding-toolbar-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/grid/column-hiding-toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-hiding-toolbar/package.json b/samples/grids/grid/column-hiding-toolbar/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-hiding-toolbar/package.json +++ b/samples/grids/grid/column-hiding-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-moving-options/package.json b/samples/grids/grid/column-moving-options/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/column-moving-options/package.json +++ b/samples/grids/grid/column-moving-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-moving-styles/package.json b/samples/grids/grid/column-moving-styles/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/column-moving-styles/package.json +++ b/samples/grids/grid/column-moving-styles/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning-options/package.json b/samples/grids/grid/column-pinning-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-pinning-options/package.json +++ b/samples/grids/grid/column-pinning-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning-right-side/package.json b/samples/grids/grid/column-pinning-right-side/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/column-pinning-right-side/package.json +++ b/samples/grids/grid/column-pinning-right-side/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning-styles/package.json b/samples/grids/grid/column-pinning-styles/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-pinning-styles/package.json +++ b/samples/grids/grid/column-pinning-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-pinning/package.json b/samples/grids/grid/column-pinning/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-pinning/package.json +++ b/samples/grids/grid/column-pinning/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-resize-styling/package.json b/samples/grids/grid/column-resize-styling/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-resize-styling/package.json +++ b/samples/grids/grid/column-resize-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-resizing/package.json b/samples/grids/grid/column-resizing/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-resizing/package.json +++ b/samples/grids/grid/column-resizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-selection-group/package.json b/samples/grids/grid/column-selection-group/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-selection-group/package.json +++ b/samples/grids/grid/column-selection-group/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-selection-mode/package.json b/samples/grids/grid/column-selection-mode/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/column-selection-mode/package.json +++ b/samples/grids/grid/column-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-selection-styles/package.json b/samples/grids/grid/column-selection-styles/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-selection-styles/package.json +++ b/samples/grids/grid/column-selection-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-sorting-indicators/package.json b/samples/grids/grid/column-sorting-indicators/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-sorting-indicators/package.json +++ b/samples/grids/grid/column-sorting-indicators/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-sorting-options/package.json b/samples/grids/grid/column-sorting-options/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/column-sorting-options/package.json +++ b/samples/grids/grid/column-sorting-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/column-sorting-style/package.json b/samples/grids/grid/column-sorting-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/column-sorting-style/package.json +++ b/samples/grids/grid/column-sorting-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/conditional-cell-style-1/package.json b/samples/grids/grid/conditional-cell-style-1/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/conditional-cell-style-1/package.json +++ b/samples/grids/grid/conditional-cell-style-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/conditional-cell-style-2/package.json b/samples/grids/grid/conditional-cell-style-2/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/conditional-cell-style-2/package.json +++ b/samples/grids/grid/conditional-cell-style-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/conditional-row-selectors/package.json b/samples/grids/grid/conditional-row-selectors/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/conditional-row-selectors/package.json +++ b/samples/grids/grid/conditional-row-selectors/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/custom-context-menu/package.json b/samples/grids/grid/custom-context-menu/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/grid/custom-context-menu/package.json +++ b/samples/grids/grid/custom-context-menu/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/custom-filtering/package.json b/samples/grids/grid/custom-filtering/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/grid/custom-filtering/package.json +++ b/samples/grids/grid/custom-filtering/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-batch-editing-actions/package.json b/samples/grids/grid/data-batch-editing-actions/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/data-batch-editing-actions/package.json +++ b/samples/grids/grid/data-batch-editing-actions/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-exporting-indicator/package.json b/samples/grids/grid/data-exporting-indicator/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/grid/data-exporting-indicator/package.json +++ b/samples/grids/grid/data-exporting-indicator/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-paste-options/package.json b/samples/grids/grid/data-paste-options/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/grid/data-paste-options/package.json +++ b/samples/grids/grid/data-paste-options/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-performance-virtualization/package.json b/samples/grids/grid/data-performance-virtualization/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/data-performance-virtualization/package.json +++ b/samples/grids/grid/data-performance-virtualization/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-searching/package.json b/samples/grids/grid/data-searching/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/grid/data-searching/package.json +++ b/samples/grids/grid/data-searching/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summaries-custom/package.json b/samples/grids/grid/data-summaries-custom/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/grid/data-summaries-custom/package.json +++ b/samples/grids/grid/data-summaries-custom/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summary-formatter/package.json b/samples/grids/grid/data-summary-formatter/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/data-summary-formatter/package.json +++ b/samples/grids/grid/data-summary-formatter/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summary-options/package.json b/samples/grids/grid/data-summary-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/data-summary-options/package.json +++ b/samples/grids/grid/data-summary-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/data-summary-template/package.json +++ b/samples/grids/grid/data-summary-template/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validation-style/package.json b/samples/grids/grid/data-validation-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/data-validation-style/package.json +++ b/samples/grids/grid/data-validation-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validator-service-cross-field/package.json b/samples/grids/grid/data-validator-service-cross-field/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/data-validator-service-cross-field/package.json +++ b/samples/grids/grid/data-validator-service-cross-field/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/data-validator-service-extended/package.json +++ b/samples/grids/grid/data-validator-service-extended/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/data-validator-service/package.json +++ b/samples/grids/grid/data-validator-service/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-columns/package.json b/samples/grids/grid/editing-columns/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/editing-columns/package.json +++ b/samples/grids/grid/editing-columns/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-events/package.json b/samples/grids/grid/editing-events/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/editing-events/package.json +++ b/samples/grids/grid/editing-events/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-excel-style-custom/package.json b/samples/grids/grid/editing-excel-style-custom/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/grid/editing-excel-style-custom/package.json +++ b/samples/grids/grid/editing-excel-style-custom/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-excel-style/package.json b/samples/grids/grid/editing-excel-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/editing-excel-style/package.json +++ b/samples/grids/grid/editing-excel-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/editing-lifecycle/package.json b/samples/grids/grid/editing-lifecycle/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/editing-lifecycle/package.json +++ b/samples/grids/grid/editing-lifecycle/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-exporting/package.json b/samples/grids/grid/excel-exporting/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/excel-exporting/package.json +++ b/samples/grids/grid/excel-exporting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-sample-1/package.json b/samples/grids/grid/excel-style-filtering-sample-1/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-sample-2/package.json b/samples/grids/grid/excel-style-filtering-sample-2/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-sample-3/package.json b/samples/grids/grid/excel-style-filtering-sample-3/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/excel-style-filtering-style/package.json b/samples/grids/grid/excel-style-filtering-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/excel-style-filtering-style/package.json +++ b/samples/grids/grid/excel-style-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/external-advanced-filtering/package.json b/samples/grids/grid/external-advanced-filtering/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/external-advanced-filtering/package.json +++ b/samples/grids/grid/external-advanced-filtering/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/filtering-options/package.json b/samples/grids/grid/filtering-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/filtering-options/package.json +++ b/samples/grids/grid/filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/filtering-strategy/package.json b/samples/grids/grid/filtering-strategy/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/filtering-strategy/package.json +++ b/samples/grids/grid/filtering-strategy/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/filtering-style/package.json +++ b/samples/grids/grid/filtering-style/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/finjs/package.json b/samples/grids/grid/finjs/package.json index 22d9f5a013..1dcd5ac7d4 100644 --- a/samples/grids/grid/finjs/package.json +++ b/samples/grids/grid/finjs/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-custom/package.json b/samples/grids/grid/groupby-custom/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/grid/groupby-custom/package.json +++ b/samples/grids/grid/groupby-custom/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-expressions/package.json b/samples/grids/grid/groupby-expressions/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/groupby-expressions/package.json +++ b/samples/grids/grid/groupby-expressions/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-paging/package.json b/samples/grids/grid/groupby-paging/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/groupby-paging/package.json +++ b/samples/grids/grid/groupby-paging/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-styling/package.json b/samples/grids/grid/groupby-styling/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/groupby-styling/package.json +++ b/samples/grids/grid/groupby-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-summary-options/package.json b/samples/grids/grid/groupby-summary-options/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/groupby-summary-options/package.json +++ b/samples/grids/grid/groupby-summary-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/groupby-summary-styling/package.json b/samples/grids/grid/groupby-summary-styling/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/groupby-summary-styling/package.json +++ b/samples/grids/grid/groupby-summary-styling/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/infinite-scroll/package.json b/samples/grids/grid/infinite-scroll/package.json index d4b7635fc4..d61b1e0097 100644 --- a/samples/grids/grid/infinite-scroll/package.json +++ b/samples/grids/grid/infinite-scroll/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "rxjs": "7.8.1", "tslib": "^2.0.0" diff --git a/samples/grids/grid/keyboard-custom-navigation/package.json b/samples/grids/grid/keyboard-custom-navigation/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/keyboard-custom-navigation/package.json +++ b/samples/grids/grid/keyboard-custom-navigation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/keyboard-mrl-navigation/package.json b/samples/grids/grid/keyboard-mrl-navigation/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/package.json +++ b/samples/grids/grid/keyboard-mrl-navigation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/keyboard-navigation-guide/package.json b/samples/grids/grid/keyboard-navigation-guide/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/grid/keyboard-navigation-guide/package.json +++ b/samples/grids/grid/keyboard-navigation-guide/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/layout-display-density/package.json b/samples/grids/grid/layout-display-density/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/layout-display-density/package.json +++ b/samples/grids/grid/layout-display-density/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/master-detail/package.json b/samples/grids/grid/master-detail/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/master-detail/package.json +++ b/samples/grids/grid/master-detail/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-cell-selection-mode/package.json b/samples/grids/grid/multi-cell-selection-mode/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/grid/multi-cell-selection-mode/package.json +++ b/samples/grids/grid/multi-cell-selection-mode/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-export/package.json b/samples/grids/grid/multi-column-headers-export/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/multi-column-headers-export/package.json +++ b/samples/grids/grid/multi-column-headers-export/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-overview/package.json b/samples/grids/grid/multi-column-headers-overview/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/multi-column-headers-overview/package.json +++ b/samples/grids/grid/multi-column-headers-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-styling/package.json b/samples/grids/grid/multi-column-headers-styling/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/multi-column-headers-styling/package.json +++ b/samples/grids/grid/multi-column-headers-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-column-headers-template/package.json b/samples/grids/grid/multi-column-headers-template/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/multi-column-headers-template/package.json +++ b/samples/grids/grid/multi-column-headers-template/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-row-layout-options/package.json b/samples/grids/grid/multi-row-layout-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/multi-row-layout-options/package.json +++ b/samples/grids/grid/multi-row-layout-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/multi-row-layout-style/package.json b/samples/grids/grid/multi-row-layout-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/multi-row-layout-style/package.json +++ b/samples/grids/grid/multi-row-layout-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/overview/package.json b/samples/grids/grid/overview/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/overview/package.json +++ b/samples/grids/grid/overview/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/paste/package.json b/samples/grids/grid/paste/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/paste/package.json +++ b/samples/grids/grid/paste/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/remote-paging-data/package.json b/samples/grids/grid/remote-paging-data/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/remote-paging-data/package.json +++ b/samples/grids/grid/remote-paging-data/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/remote-paging-grid/package.json b/samples/grids/grid/remote-paging-grid/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/grid/remote-paging-grid/package.json +++ b/samples/grids/grid/remote-paging-grid/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-adding/package.json b/samples/grids/grid/row-adding/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/row-adding/package.json +++ b/samples/grids/grid/row-adding/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-classes/package.json b/samples/grids/grid/row-classes/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/row-classes/package.json +++ b/samples/grids/grid/row-classes/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-drag-base/package.json b/samples/grids/grid/row-drag-base/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/grid/row-drag-base/package.json +++ b/samples/grids/grid/row-drag-base/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-editing-options/package.json b/samples/grids/grid/row-editing-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/row-editing-options/package.json +++ b/samples/grids/grid/row-editing-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-editing-style/package.json b/samples/grids/grid/row-editing-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/row-editing-style/package.json +++ b/samples/grids/grid/row-editing-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/row-paging-basic/package.json +++ b/samples/grids/grid/row-paging-basic/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-paging-options/package.json b/samples/grids/grid/row-paging-options/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/row-paging-options/package.json +++ b/samples/grids/grid/row-paging-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-drag/package.json b/samples/grids/grid/row-pinning-drag/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/row-pinning-drag/package.json +++ b/samples/grids/grid/row-pinning-drag/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-extra-column/package.json b/samples/grids/grid/row-pinning-extra-column/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/row-pinning-extra-column/package.json +++ b/samples/grids/grid/row-pinning-extra-column/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-options/package.json b/samples/grids/grid/row-pinning-options/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/row-pinning-options/package.json +++ b/samples/grids/grid/row-pinning-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-pinning-style/package.json b/samples/grids/grid/row-pinning-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/row-pinning-style/package.json +++ b/samples/grids/grid/row-pinning-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-reorder/package.json b/samples/grids/grid/row-reorder/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/row-reorder/package.json +++ b/samples/grids/grid/row-reorder/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-selection-mode/package.json b/samples/grids/grid/row-selection-mode/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/row-selection-mode/package.json +++ b/samples/grids/grid/row-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-selection-template-excel/package.json b/samples/grids/grid/row-selection-template-excel/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/row-selection-template-excel/package.json +++ b/samples/grids/grid/row-selection-template-excel/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-selection-template-numbers/package.json b/samples/grids/grid/row-selection-template-numbers/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/row-selection-template-numbers/package.json +++ b/samples/grids/grid/row-selection-template-numbers/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/row-styles/package.json b/samples/grids/grid/row-styles/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/grid/row-styles/package.json +++ b/samples/grids/grid/row-styles/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/state-persistence-about/package.json b/samples/grids/grid/state-persistence-about/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/grid/state-persistence-about/package.json +++ b/samples/grids/grid/state-persistence-about/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/state-persistence-main/package.json b/samples/grids/grid/state-persistence-main/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/grid/state-persistence-main/package.json +++ b/samples/grids/grid/state-persistence-main/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/styling-custom-CSS/package.json b/samples/grids/grid/styling-custom-CSS/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/styling-custom-CSS/package.json +++ b/samples/grids/grid/styling-custom-CSS/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-1/package.json b/samples/grids/grid/toolbar-sample-1/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/toolbar-sample-1/package.json +++ b/samples/grids/grid/toolbar-sample-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-2/package.json b/samples/grids/grid/toolbar-sample-2/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/toolbar-sample-2/package.json +++ b/samples/grids/grid/toolbar-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-3/package.json b/samples/grids/grid/toolbar-sample-3/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/toolbar-sample-3/package.json +++ b/samples/grids/grid/toolbar-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-sample-4/package.json b/samples/grids/grid/toolbar-sample-4/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/grid/toolbar-sample-4/package.json +++ b/samples/grids/grid/toolbar-sample-4/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/grid/toolbar-style/package.json b/samples/grids/grid/toolbar-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/grid/toolbar-style/package.json +++ b/samples/grids/grid/toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/action-strip/package.json b/samples/grids/hierarchical-grid/action-strip/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/action-strip/package.json +++ b/samples/grids/hierarchical-grid/action-strip/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/package.json b/samples/grids/hierarchical-grid/cell-editing-sample/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/package.json b/samples/grids/hierarchical-grid/cell-editing-styling/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/package.json b/samples/grids/hierarchical-grid/cell-selection-mode/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/package.json b/samples/grids/hierarchical-grid/cell-selection-overview/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-selection-style/package.json b/samples/grids/hierarchical-grid/cell-selection-style/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/cell-selection-styling/package.json b/samples/grids/hierarchical-grid/cell-selection-styling/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/hierarchical-grid/cell-selection-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-styling/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/package.json b/samples/grids/hierarchical-grid/column-auto-sizing/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/package.json +++ b/samples/grids/hierarchical-grid/column-auto-sizing/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-moving-options/package.json b/samples/grids/hierarchical-grid/column-moving-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/package.json +++ b/samples/grids/hierarchical-grid/column-moving-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-moving-styles/package.json b/samples/grids/hierarchical-grid/column-moving-styles/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/package.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-pinning-options/package.json b/samples/grids/hierarchical-grid/column-pinning-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/package.json b/samples/grids/hierarchical-grid/column-pinning-styles/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-pinning/package.json b/samples/grids/hierarchical-grid/column-pinning/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-pinning/package.json +++ b/samples/grids/hierarchical-grid/column-pinning/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-resize-styling/package.json b/samples/grids/hierarchical-grid/column-resize-styling/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/package.json +++ b/samples/grids/hierarchical-grid/column-resize-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-resizing/package.json b/samples/grids/hierarchical-grid/column-resizing/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-resizing/package.json +++ b/samples/grids/hierarchical-grid/column-resizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-selection-group/package.json b/samples/grids/hierarchical-grid/column-selection-group/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/package.json +++ b/samples/grids/hierarchical-grid/column-selection-group/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-selection-mode/package.json b/samples/grids/hierarchical-grid/column-selection-mode/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-selection-styles/package.json b/samples/grids/hierarchical-grid/column-selection-styles/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/package.json +++ b/samples/grids/hierarchical-grid/column-selection-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-sorting-options/package.json b/samples/grids/hierarchical-grid/column-sorting-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/column-sorting-style/package.json b/samples/grids/hierarchical-grid/column-sorting-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/custom-filtering/package.json b/samples/grids/hierarchical-grid/custom-filtering/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/package.json +++ b/samples/grids/hierarchical-grid/custom-filtering/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/package.json b/samples/grids/hierarchical-grid/data-summary-formatter/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/package.json +++ b/samples/grids/hierarchical-grid/data-summary-formatter/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-summary-options/package.json b/samples/grids/hierarchical-grid/data-summary-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/data-summary-template/package.json b/samples/grids/hierarchical-grid/data-summary-template/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/package.json +++ b/samples/grids/hierarchical-grid/data-summary-template/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/editing-columns/package.json b/samples/grids/hierarchical-grid/editing-columns/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/editing-columns/package.json +++ b/samples/grids/hierarchical-grid/editing-columns/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/editing-events/package.json b/samples/grids/hierarchical-grid/editing-events/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/editing-events/package.json +++ b/samples/grids/hierarchical-grid/editing-events/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/package.json b/samples/grids/hierarchical-grid/editing-lifecycle/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/package.json +++ b/samples/grids/hierarchical-grid/editing-lifecycle/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-exporting/package.json b/samples/grids/hierarchical-grid/excel-exporting/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/package.json +++ b/samples/grids/hierarchical-grid/excel-exporting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/filtering-options/package.json b/samples/grids/hierarchical-grid/filtering-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/filtering-options/package.json +++ b/samples/grids/hierarchical-grid/filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/filtering-style/package.json b/samples/grids/hierarchical-grid/filtering-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/filtering-style/package.json +++ b/samples/grids/hierarchical-grid/filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/layout-display-density/package.json b/samples/grids/hierarchical-grid/layout-display-density/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/package.json +++ b/samples/grids/hierarchical-grid/layout-display-density/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/overview/package.json b/samples/grids/hierarchical-grid/overview/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/overview/package.json +++ b/samples/grids/hierarchical-grid/overview/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/package.json b/samples/grids/hierarchical-grid/remote-paging-sample/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/hierarchical-grid/remote-paging-sample/package.json +++ b/samples/grids/hierarchical-grid/remote-paging-sample/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-adding/package.json b/samples/grids/hierarchical-grid/row-adding/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/row-adding/package.json +++ b/samples/grids/hierarchical-grid/row-adding/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-classes/package.json b/samples/grids/hierarchical-grid/row-classes/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/row-classes/package.json +++ b/samples/grids/hierarchical-grid/row-classes/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-drag-base/package.json b/samples/grids/hierarchical-grid/row-drag-base/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/package.json +++ b/samples/grids/hierarchical-grid/row-drag-base/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-editing-options/package.json b/samples/grids/hierarchical-grid/row-editing-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/package.json +++ b/samples/grids/hierarchical-grid/row-editing-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-editing-style/package.json b/samples/grids/hierarchical-grid/row-editing-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/package.json +++ b/samples/grids/hierarchical-grid/row-editing-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-pinning-options/package.json b/samples/grids/hierarchical-grid/row-pinning-options/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-pinning-style/package.json b/samples/grids/hierarchical-grid/row-pinning-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-reorder/package.json b/samples/grids/hierarchical-grid/row-reorder/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/row-reorder/package.json +++ b/samples/grids/hierarchical-grid/row-reorder/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-selection-mode/package.json b/samples/grids/hierarchical-grid/row-selection-mode/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/row-styles/package.json b/samples/grids/hierarchical-grid/row-styles/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/row-styles/package.json +++ b/samples/grids/hierarchical-grid/row-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/state-persistence-about/package.json b/samples/grids/hierarchical-grid/state-persistence-about/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-about/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/state-persistence-main/package.json b/samples/grids/hierarchical-grid/state-persistence-main/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-main/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-1/package.json b/samples/grids/hierarchical-grid/toolbar-sample-1/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-1/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-2/package.json b/samples/grids/hierarchical-grid/toolbar-sample-2/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-2/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/hierarchical-grid/toolbar-style/package.json b/samples/grids/hierarchical-grid/toolbar-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/list/add-list-items/package.json b/samples/grids/list/add-list-items/package.json index 098bc4e2be..81f992a93b 100644 --- a/samples/grids/list/add-list-items/package.json +++ b/samples/grids/list/add-list-items/package.json @@ -24,7 +24,7 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" diff --git a/samples/grids/pivot-grid/aggregate-max-sales/package.json b/samples/grids/pivot-grid/aggregate-max-sales/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/package.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/aggregate-units-sold/package.json b/samples/grids/pivot-grid/aggregate-units-sold/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/package.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/basic/package.json b/samples/grids/pivot-grid/basic/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/pivot-grid/basic/package.json +++ b/samples/grids/pivot-grid/basic/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/data-persistence-noop/package.json b/samples/grids/pivot-grid/data-persistence-noop/package.json index 4486a93a27..4099317991 100644 --- a/samples/grids/pivot-grid/data-persistence-noop/package.json +++ b/samples/grids/pivot-grid/data-persistence-noop/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/data-selector/package.json b/samples/grids/pivot-grid/data-selector/package.json index ecd97cf54d..ca1257fd49 100644 --- a/samples/grids/pivot-grid/data-selector/package.json +++ b/samples/grids/pivot-grid/data-selector/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/features/package.json b/samples/grids/pivot-grid/features/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/pivot-grid/features/package.json +++ b/samples/grids/pivot-grid/features/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/remote/package.json b/samples/grids/pivot-grid/remote/package.json index ecd97cf54d..ca1257fd49 100644 --- a/samples/grids/pivot-grid/remote/package.json +++ b/samples/grids/pivot-grid/remote/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/state-persistence-about/package.json b/samples/grids/pivot-grid/state-persistence-about/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/pivot-grid/state-persistence-about/package.json +++ b/samples/grids/pivot-grid/state-persistence-about/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/pivot-grid/state-persistence-main/package.json b/samples/grids/pivot-grid/state-persistence-main/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/pivot-grid/state-persistence-main/package.json +++ b/samples/grids/pivot-grid/state-persistence-main/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/action-strip/package.json b/samples/grids/tree-grid/action-strip/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/action-strip/package.json +++ b/samples/grids/tree-grid/action-strip/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/advanced-filtering-options/package.json b/samples/grids/tree-grid/advanced-filtering-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/package.json +++ b/samples/grids/tree-grid/advanced-filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/advanced-filtering-style/package.json b/samples/grids/tree-grid/advanced-filtering-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/package.json +++ b/samples/grids/tree-grid/advanced-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/cell-editing-sample/package.json +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-editing-styling/package.json b/samples/grids/tree-grid/cell-editing-styling/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/cell-editing-styling/package.json +++ b/samples/grids/tree-grid/cell-editing-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-selection-mode/package.json b/samples/grids/tree-grid/cell-selection-mode/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/cell-selection-mode/package.json +++ b/samples/grids/tree-grid/cell-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/cell-selection-style/package.json b/samples/grids/tree-grid/cell-selection-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/cell-selection-style/package.json +++ b/samples/grids/tree-grid/cell-selection-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/clipboard-operations/package.json b/samples/grids/tree-grid/clipboard-operations/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/tree-grid/clipboard-operations/package.json +++ b/samples/grids/tree-grid/clipboard-operations/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-auto-sizing/package.json b/samples/grids/tree-grid/column-auto-sizing/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-auto-sizing/package.json +++ b/samples/grids/tree-grid/column-auto-sizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-collapsible-groups/package.json b/samples/grids/tree-grid/column-collapsible-groups/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/package.json +++ b/samples/grids/tree-grid/column-collapsible-groups/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-data-types/package.json b/samples/grids/tree-grid/column-data-types/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/tree-grid/column-data-types/package.json +++ b/samples/grids/tree-grid/column-data-types/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-hiding-toolbar/package.json b/samples/grids/tree-grid/column-hiding-toolbar/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-moving-options/package.json b/samples/grids/tree-grid/column-moving-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-moving-options/package.json +++ b/samples/grids/tree-grid/column-moving-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-moving-styles/package.json b/samples/grids/tree-grid/column-moving-styles/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-moving-styles/package.json +++ b/samples/grids/tree-grid/column-moving-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-options/package.json b/samples/grids/tree-grid/column-pinning-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-pinning-options/package.json +++ b/samples/grids/tree-grid/column-pinning-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-right-side/package.json b/samples/grids/tree-grid/column-pinning-right-side/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/package.json +++ b/samples/grids/tree-grid/column-pinning-right-side/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-styles/package.json b/samples/grids/tree-grid/column-pinning-styles/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-pinning-styles/package.json +++ b/samples/grids/tree-grid/column-pinning-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning-toolbar/package.json b/samples/grids/tree-grid/column-pinning-toolbar/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/package.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-pinning/package.json b/samples/grids/tree-grid/column-pinning/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-pinning/package.json +++ b/samples/grids/tree-grid/column-pinning/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-resize-styling/package.json b/samples/grids/tree-grid/column-resize-styling/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-resize-styling/package.json +++ b/samples/grids/tree-grid/column-resize-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-resizing/package.json b/samples/grids/tree-grid/column-resizing/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-resizing/package.json +++ b/samples/grids/tree-grid/column-resizing/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-group/package.json b/samples/grids/tree-grid/column-selection-group/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-selection-group/package.json +++ b/samples/grids/tree-grid/column-selection-group/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-mode/package.json b/samples/grids/tree-grid/column-selection-mode/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/column-selection-mode/package.json +++ b/samples/grids/tree-grid/column-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-style/package.json b/samples/grids/tree-grid/column-selection-style/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/tree-grid/column-selection-style/package.json +++ b/samples/grids/tree-grid/column-selection-style/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-selection-styles/package.json b/samples/grids/tree-grid/column-selection-styles/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-selection-styles/package.json +++ b/samples/grids/tree-grid/column-selection-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-sorting-indicators/package.json b/samples/grids/tree-grid/column-sorting-indicators/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/package.json +++ b/samples/grids/tree-grid/column-sorting-indicators/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-sorting-options/package.json b/samples/grids/tree-grid/column-sorting-options/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/column-sorting-options/package.json +++ b/samples/grids/tree-grid/column-sorting-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/column-sorting-style/package.json b/samples/grids/tree-grid/column-sorting-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/column-sorting-style/package.json +++ b/samples/grids/tree-grid/column-sorting-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/conditional-cell-style-1/package.json b/samples/grids/tree-grid/conditional-cell-style-1/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/conditional-cell-style-2/package.json b/samples/grids/tree-grid/conditional-cell-style-2/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/conditional-row-selectors/package.json b/samples/grids/tree-grid/conditional-row-selectors/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/package.json +++ b/samples/grids/tree-grid/conditional-row-selectors/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/custom-filtering/package.json b/samples/grids/tree-grid/custom-filtering/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/tree-grid/custom-filtering/package.json +++ b/samples/grids/tree-grid/custom-filtering/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-exporting-indicator/package.json b/samples/grids/tree-grid/data-exporting-indicator/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/package.json +++ b/samples/grids/tree-grid/data-exporting-indicator/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-searching/package.json b/samples/grids/tree-grid/data-searching/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/tree-grid/data-searching/package.json +++ b/samples/grids/tree-grid/data-searching/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summaries-custom/package.json b/samples/grids/tree-grid/data-summaries-custom/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/tree-grid/data-summaries-custom/package.json +++ b/samples/grids/tree-grid/data-summaries-custom/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-children/package.json b/samples/grids/tree-grid/data-summary-children/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/data-summary-children/package.json +++ b/samples/grids/tree-grid/data-summary-children/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-formatter/package.json b/samples/grids/tree-grid/data-summary-formatter/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/data-summary-formatter/package.json +++ b/samples/grids/tree-grid/data-summary-formatter/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-options-styling/package.json b/samples/grids/tree-grid/data-summary-options-styling/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/package.json +++ b/samples/grids/tree-grid/data-summary-options-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-options/package.json b/samples/grids/tree-grid/data-summary-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/data-summary-options/package.json +++ b/samples/grids/tree-grid/data-summary-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/data-summary-template/package.json b/samples/grids/tree-grid/data-summary-template/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/data-summary-template/package.json +++ b/samples/grids/tree-grid/data-summary-template/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/editing-columns/package.json b/samples/grids/tree-grid/editing-columns/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/editing-columns/package.json +++ b/samples/grids/tree-grid/editing-columns/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/editing-events/package.json b/samples/grids/tree-grid/editing-events/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/editing-events/package.json +++ b/samples/grids/tree-grid/editing-events/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/editing-lifecycle/package.json b/samples/grids/tree-grid/editing-lifecycle/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/editing-lifecycle/package.json +++ b/samples/grids/tree-grid/editing-lifecycle/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-exporting/package.json b/samples/grids/tree-grid/excel-exporting/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/excel-exporting/package.json +++ b/samples/grids/tree-grid/excel-exporting/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/excel-style-filtering-style/package.json b/samples/grids/tree-grid/excel-style-filtering-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/filtering-options/package.json b/samples/grids/tree-grid/filtering-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/filtering-options/package.json +++ b/samples/grids/tree-grid/filtering-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/filtering-style/package.json b/samples/grids/tree-grid/filtering-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/filtering-style/package.json +++ b/samples/grids/tree-grid/filtering-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/finjs/package.json b/samples/grids/tree-grid/finjs/package.json index 22d9f5a013..1dcd5ac7d4 100644 --- a/samples/grids/tree-grid/finjs/package.json +++ b/samples/grids/tree-grid/finjs/package.json @@ -26,11 +26,11 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/package.json b/samples/grids/tree-grid/keyboard-custom-navigation/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/package.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/package.json b/samples/grids/tree-grid/keyboard-navigation-guide/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/tree-grid/keyboard-navigation-guide/package.json +++ b/samples/grids/tree-grid/keyboard-navigation-guide/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/layout-display-density/package.json b/samples/grids/tree-grid/layout-display-density/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/layout-display-density/package.json +++ b/samples/grids/tree-grid/layout-display-density/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/load-on-demand/package.json b/samples/grids/tree-grid/load-on-demand/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/tree-grid/load-on-demand/package.json +++ b/samples/grids/tree-grid/load-on-demand/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/package.json b/samples/grids/tree-grid/multi-cell-selection-mode/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/package.json +++ b/samples/grids/tree-grid/multi-cell-selection-mode/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-export/package.json b/samples/grids/tree-grid/multi-column-headers-export/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/package.json +++ b/samples/grids/tree-grid/multi-column-headers-export/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-overview/package.json b/samples/grids/tree-grid/multi-column-headers-overview/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/package.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-styling/package.json b/samples/grids/tree-grid/multi-column-headers-styling/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/package.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/multi-column-headers-template/package.json b/samples/grids/tree-grid/multi-column-headers-template/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/package.json +++ b/samples/grids/tree-grid/multi-column-headers-template/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/overview-styling/package.json b/samples/grids/tree-grid/overview-styling/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/overview-styling/package.json +++ b/samples/grids/tree-grid/overview-styling/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/overview/package.json b/samples/grids/tree-grid/overview/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/overview/package.json +++ b/samples/grids/tree-grid/overview/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-adding/package.json b/samples/grids/tree-grid/row-adding/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-adding/package.json +++ b/samples/grids/tree-grid/row-adding/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-classes/package.json b/samples/grids/tree-grid/row-classes/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-classes/package.json +++ b/samples/grids/tree-grid/row-classes/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-drag-base/package.json b/samples/grids/tree-grid/row-drag-base/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/tree-grid/row-drag-base/package.json +++ b/samples/grids/tree-grid/row-drag-base/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-editing-options/package.json b/samples/grids/tree-grid/row-editing-options/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-editing-options/package.json +++ b/samples/grids/tree-grid/row-editing-options/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-editing-style/package.json b/samples/grids/tree-grid/row-editing-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-editing-style/package.json +++ b/samples/grids/tree-grid/row-editing-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-paging-basic/package.json b/samples/grids/tree-grid/row-paging-basic/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-paging-basic/package.json +++ b/samples/grids/tree-grid/row-paging-basic/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-paging-options/package.json b/samples/grids/tree-grid/row-paging-options/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/row-paging-options/package.json +++ b/samples/grids/tree-grid/row-paging-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-paging-style/package.json b/samples/grids/tree-grid/row-paging-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-paging-style/package.json +++ b/samples/grids/tree-grid/row-paging-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-pinning-extra-column/package.json b/samples/grids/tree-grid/row-pinning-extra-column/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/package.json +++ b/samples/grids/tree-grid/row-pinning-extra-column/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-pinning-options/package.json b/samples/grids/tree-grid/row-pinning-options/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/row-pinning-options/package.json +++ b/samples/grids/tree-grid/row-pinning-options/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-pinning-style/package.json b/samples/grids/tree-grid/row-pinning-style/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-pinning-style/package.json +++ b/samples/grids/tree-grid/row-pinning-style/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-reorder/package.json b/samples/grids/tree-grid/row-reorder/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-reorder/package.json +++ b/samples/grids/tree-grid/row-reorder/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-selection-mode/package.json b/samples/grids/tree-grid/row-selection-mode/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/row-selection-mode/package.json +++ b/samples/grids/tree-grid/row-selection-mode/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-selection-template-excel/package.json b/samples/grids/tree-grid/row-selection-template-excel/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/package.json +++ b/samples/grids/tree-grid/row-selection-template-excel/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-selection-template-numbers/package.json b/samples/grids/tree-grid/row-selection-template-numbers/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/package.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/row-styles/package.json b/samples/grids/tree-grid/row-styles/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/row-styles/package.json +++ b/samples/grids/tree-grid/row-styles/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/state-persistence-about/package.json b/samples/grids/tree-grid/state-persistence-about/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/tree-grid/state-persistence-about/package.json +++ b/samples/grids/tree-grid/state-persistence-about/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/state-persistence-main/package.json b/samples/grids/tree-grid/state-persistence-main/package.json index e9b6b644a4..bad35e1865 100644 --- a/samples/grids/tree-grid/state-persistence-main/package.json +++ b/samples/grids/tree-grid/state-persistence-main/package.json @@ -27,10 +27,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-sample-1/package.json b/samples/grids/tree-grid/toolbar-sample-1/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/package.json +++ b/samples/grids/tree-grid/toolbar-sample-1/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-sample-2/package.json b/samples/grids/tree-grid/toolbar-sample-2/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/package.json +++ b/samples/grids/tree-grid/toolbar-sample-2/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-sample-3/package.json b/samples/grids/tree-grid/toolbar-sample-3/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/package.json +++ b/samples/grids/tree-grid/toolbar-sample-3/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-sample-4/package.json b/samples/grids/tree-grid/toolbar-sample-4/package.json index 15916ce373..7b8e158ca4 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/package.json +++ b/samples/grids/tree-grid/toolbar-sample-4/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/toolbar-style/package.json b/samples/grids/tree-grid/toolbar-style/package.json index 85fc3e6d79..422f6bfa3e 100644 --- a/samples/grids/tree-grid/toolbar-style/package.json +++ b/samples/grids/tree-grid/toolbar-style/package.json @@ -24,10 +24,10 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/package.json b/samples/grids/tree-grid/using-primary-foreign-keys/package.json index 28ab0e061a..4edf508b16 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/package.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/package.json @@ -23,10 +23,10 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-grids": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", - "igniteui-webcomponents-layouts": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-grids": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", + "igniteui-webcomponents-layouts": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index 7e104ab45e..97f49f80d8 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -23,8 +23,8 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-inputs": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-inputs": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/embedding-frames/package.json b/samples/layouts/dock-manager/embedding-frames/package.json index 1aa3243d1c..de36e979ba 100644 --- a/samples/layouts/dock-manager/embedding-frames/package.json +++ b/samples/layouts/dock-manager/embedding-frames/package.json @@ -24,7 +24,7 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.15.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/hiding-panes/package.json b/samples/layouts/dock-manager/hiding-panes/package.json index b0011fd905..0ebdc8e9b7 100644 --- a/samples/layouts/dock-manager/hiding-panes/package.json +++ b/samples/layouts/dock-manager/hiding-panes/package.json @@ -24,7 +24,7 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.15.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/overview/package.json b/samples/layouts/dock-manager/overview/package.json index f74fbc17e3..a0a976457c 100644 --- a/samples/layouts/dock-manager/overview/package.json +++ b/samples/layouts/dock-manager/overview/package.json @@ -24,7 +24,7 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.15.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/styling/package.json b/samples/layouts/dock-manager/styling/package.json index 5995ef78f1..50db9eef9f 100644 --- a/samples/layouts/dock-manager/styling/package.json +++ b/samples/layouts/dock-manager/styling/package.json @@ -26,7 +26,7 @@ "core-js": "^3.6.5", "igniteui-dockmanager": "1.15.2", "igniteui-webcomponents": "5.1.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", + "igniteui-webcomponents-core": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/layouts/dock-manager/updating-panes/package.json b/samples/layouts/dock-manager/updating-panes/package.json index dff3353f00..d3adb9eaad 100644 --- a/samples/layouts/dock-manager/updating-panes/package.json +++ b/samples/layouts/dock-manager/updating-panes/package.json @@ -24,10 +24,10 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.15.2", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-gauges": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-gauges": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index d3fa741028..c818a9f626 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index aca5a9ccf0..577473e3f0 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 8c075c66d8..636fdf58e7 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index ab8a56fb87..75bc2b29cb 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 490ccbd43e..212e1ab3bb 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 07a39eebf7..d7ef9b453e 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 8fe2994684..17f2c13305 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index a250ffdef4..e31c35619d 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index b2bf853d3b..c0d79d19f0 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-all-imagery/package.json b/samples/maps/geo-map/display-all-imagery/package.json index 64ccf8fa7c..116d4aea4f 100644 --- a/samples/maps/geo-map/display-all-imagery/package.json +++ b/samples/maps/geo-map/display-all-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 67a7c972ab..1b5fa2d004 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 9f30f08f49..24ed2ad440 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index c220330b88..1a10b4578d 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index e83b1c9bd4..22b1688860 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 5defdfaf1e..21f67f3d04 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 99c1266e04..3d14999c54 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 002626abd1..46a3c39050 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 5e143457cd..acc3dcae5c 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 696c485ebe..ce0b543402 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/synchronization/package.json b/samples/maps/geo-map/synchronization/package.json index 56632d4251..810ac6d214 100644 --- a/samples/maps/geo-map/synchronization/package.json +++ b/samples/maps/geo-map/synchronization/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 568003963a..39eab569ad 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index 57c255f8f1..420228d4a1 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 5935a64e33..8f26123d8a 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 06cc4336c9..f3cb0238a1 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 03fe60197c..a84e7d66b2 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index e4311b1cf9..aed7fa274e 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 1ecee99a8b..b24adcf2bd 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 9b54d6660b..aaecd30def 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -23,9 +23,9 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.1.1-beta.2", - "igniteui-webcomponents-core": "5.1.1-beta.2", - "igniteui-webcomponents-maps": "5.1.1-beta.2", + "igniteui-webcomponents-charts": "5.1.1", + "igniteui-webcomponents-core": "5.1.1", + "igniteui-webcomponents-maps": "5.1.1", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, From bd7e2bd773485248ee4d658dbfdebba37409a0a4 Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 13:52:47 -0500 Subject: [PATCH 43/63] Adding changes from build igniteui-xplat-examples-output+PRs_2024.12.19.3 (#917) Co-authored-by: tfsbuild --- .../charts/data-chart/scatter-bubble-chart-fill-scale/index.html | 1 - .../data-chart/scatter-bubble-chart-multiple-sources/index.html | 1 - .../data-chart/scatter-bubble-chart-single-source/index.html | 1 - .../charts/data-chart/scatter-bubble-chart-styling/index.html | 1 - 4 files changed, 4 deletions(-) diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/index.html b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/index.html index 7b76a28c9a..1f84fdb6a8 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/index.html +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/index.html @@ -76,7 +76,6 @@ units-text-margin-right="5" value-text-margin-left="10" label-text-margin-left="1" - grouping-mode="Grouped" layout-mode="Vertical" badge-shape="Hidden" included-columns="X, Y, Radius" diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/index.html b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/index.html index f6aa4b72a3..9df0f3e182 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/index.html +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/index.html @@ -90,7 +90,6 @@ units-text-margin-right="5" value-text-margin-left="10" label-text-margin-left="1" - grouping-mode="Grouped" layout-mode="Vertical"> diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/index.html b/samples/charts/data-chart/scatter-bubble-chart-single-source/index.html index 6035e059f5..1533934e27 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/index.html +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/index.html @@ -71,7 +71,6 @@ units-text-margin-right="5" value-text-margin-left="10" label-text-margin-left="1" - grouping-mode="Grouped" layout-mode="Vertical" badge-shape="Hidden" header-row-visible="false"> diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/index.html b/samples/charts/data-chart/scatter-bubble-chart-styling/index.html index 0a00926eb7..dd2570e9cf 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/index.html +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/index.html @@ -75,7 +75,6 @@ units-text-margin-right="5" value-text-margin-left="10" label-text-margin-left="1" - grouping-mode="Grouped" layout-mode="Vertical" badge-shape="Hidden" included-columns="X, Y, Radius" From 864d1cf356e318587779eded3736e966c1dcc287 Mon Sep 17 00:00:00 2001 From: Tihomir Tonev Date: Fri, 3 Jan 2025 16:05:27 +0200 Subject: [PATCH 44/63] added grid toolbar sample with dynamic features (#746) --- browser/public/index.html | 2 + .../financial-dashboard/ReadMe.md | 56 + .../grids/grid/toolbar-sample-2/index.html | 123 +- .../grids/grid/toolbar-sample-2/package.json | 114 +- .../grid/toolbar-sample-2/src/AthletesData.ts | 3620 ++++++++--------- .../grids/grid/toolbar-sample-2/src/index.ts | 76 +- .../grids/grid/toolbar-sample-2/tsconfig.json | 3 +- .../grid/toolbar-sample-2/webpack.config.js | 2 + 8 files changed, 2042 insertions(+), 1954 deletions(-) create mode 100644 samples/charts/dashboard-tile/financial-dashboard/ReadMe.md diff --git a/browser/public/index.html b/browser/public/index.html index 06f2b0fe5b..ec72ad35e9 100644 --- a/browser/public/index.html +++ b/browser/public/index.html @@ -108,6 +108,7 @@ diff --git a/samples/grids/grid/remote-paging-grid/src/CustomersWithPageResponseModel.ts b/samples/grids/grid/remote-paging-grid/src/CustomersWithPageResponseModel.ts new file mode 100644 index 0000000000..6976b77c4d --- /dev/null +++ b/samples/grids/grid/remote-paging-grid/src/CustomersWithPageResponseModel.ts @@ -0,0 +1,7 @@ +export interface CustomersWithPageResponseModel { + items: any[]; + totalRecordsCount: number; + pageSize: number; + pageNumber: number; + totalPages: number; +} \ No newline at end of file diff --git a/samples/grids/grid/remote-paging-grid/src/RemotePagingService.ts b/samples/grids/grid/remote-paging-grid/src/RemotePagingService.ts index 6b2a6442f5..89c63bb554 100644 --- a/samples/grids/grid/remote-paging-grid/src/RemotePagingService.ts +++ b/samples/grids/grid/remote-paging-grid/src/RemotePagingService.ts @@ -1,49 +1,31 @@ -import { BehaviorSubject, Observable, from } from 'rxjs'; -import { map, catchError } from 'rxjs/operators'; - - export class RemotePagingService { - public remoteData: BehaviorSubject = new BehaviorSubject([]); - public dataLength: BehaviorSubject = new BehaviorSubject(0); - public url = 'https://www.igniteui.com/api/products'; - - constructor() {} + public static CUSTOMERS_URL = `https://data-northwind.indigo.design/Customers/GetCustomersWithPage`; + constructor() {} - public async getData(index?: number, perPage?: number): Promise { - let qS = ''; - - if (index !== undefined && perPage !== undefined) { - qS = `?$skip=${index}&$top=${perPage}&$count=true`; + public static getDataWithPaging(pageIndex?: number, pageSize?: number) { + return fetch(RemotePagingService.buildUrl(RemotePagingService.CUSTOMERS_URL, pageIndex, pageSize)) + .then((result) => result.json()) + .catch((error) => console.error(error.message)); } - - try { - const response = await fetch(`${this.url + qS}`); - if (!response.ok) { - throw new Error('Network response was not ok'); + + private static buildUrl(baseUrl: string, pageIndex?: number, pageSize?: number) { + let qS = ""; + if (baseUrl) { + qS += `${baseUrl}`; } - const data = await response.json(); - return data; - } catch (error) { - console.error('Error fetching data:', error); - throw error; // Propagate the error further - } -} -public async getDataLength(): Promise { - try { - const response = await fetch(this.url); - if (!response.ok) { - throw new Error('Network response was not ok'); + // Add pageIndex and size to the query string if they are defined + if (pageIndex !== undefined) { + qS += `?pageIndex=${pageIndex}`; + if (pageSize !== undefined) { + qS += `&size=${pageSize}`; + } + } else if (pageSize !== undefined) { + qS += `?perPage=${pageSize}`; } - const data = await response.json(); - return data.length; // Assuming the length is directly accessible in the JSON response - } catch (error) { - console.error('Error fetching data length:', error); - throw error; // Propagate the error further - } -} - + return `${qS}`; + } } diff --git a/samples/grids/grid/remote-paging-grid/src/index.ts b/samples/grids/grid/remote-paging-grid/src/index.ts index 148ed763e3..0d4d06775a 100644 --- a/samples/grids/grid/remote-paging-grid/src/index.ts +++ b/samples/grids/grid/remote-paging-grid/src/index.ts @@ -3,76 +3,80 @@ import { IgcGridComponent, IgcPaginatorComponent } from 'igniteui-webcomponents- import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; import "./index.css"; import { RemotePagingService } from './RemotePagingService'; +import { CustomersWithPageResponseModel } from './CustomersWithPageResponseModel'; export class Sample { - public data: any[] = []; - public dataLength: number = 0; - private grid: IgcGridComponent; - private _bind: () => void; - private remotePagingService: RemotePagingService = new RemotePagingService(); - public page = 0; - private _perPage = 10; - private pager: IgcPaginatorComponent; + public data: any[] = []; + public page: number = 0; + private grid: IgcGridComponent; + private _bind: () => void; + private _perPage: number = 15; + private pager: IgcPaginatorComponent; + private _totalRecordsCount: number; - public get perPage(): number { - return this.pager.perPage || 10; - } - - private _totalRecordsCount: number; - - public get totalRecordsCount(): number { + public get perPage(): number { + return this.pager.perPage || this._perPage; + } + public set perPage(val: number) { + this._perPage = val; + } + public get totalRecordsCount(): number { return this._totalRecordsCount; - } - - public set totalRecordsCount(value: number) { + } + public set totalRecordsCount(value: number) { this._totalRecordsCount = value; this.grid.totalRecords = value; - } + } - constructor() { - this.pager = document.getElementById('paginator') as IgcPaginatorComponent; + constructor() { this.grid = document.getElementById('grid') as IgcGridComponent; - + this.pager = document.getElementById('paginator') as IgcPaginatorComponent; + this._bind = () => { - this.remotePagingService.getDataLength().then((length) => { - this.totalRecordsCount = length; - this.pager.totalRecords = this.totalRecordsCount; - }); window.addEventListener("load", () => { - this.pager.totalRecords = this.totalRecordsCount; - this.paginate(0); - }); - this.pager.addEventListener("perPageChange", ()=> { - this.paginate(0); - }) - this.pager.addEventListener("pageChange", ((args: CustomEvent) => { - this.paginate(args.detail);}) as EventListener); - } - this._bind(); - } + this.loadData(this.page,this.perPage); + }); - public paginate(page: number) { - this.page = page; - const skip = this.page * this.perPage; - const top = this.perPage; + this.pager.addEventListener("perPageChange", ((args: CustomEvent) => { + this.perPage = args.detail; + this.loadData(this.page, this.perPage); + }) as EventListener); - this.remotePagingService.getData(skip, top).then((data)=> { - this.data = data; // Assign received data to this.data - this.grid.isLoading = false; - this.updateUI(); // Update the UI after receiving data - }); - } + this.pager.addEventListener("pageChange", ((args: CustomEvent) => { + this.page = args.detail; + this.loadData(this.page, this.perPage); + }) as EventListener); + } + + this._bind(); + } - public set perPage(val: number) { - this._perPage = val; - this.paginate(val); + private updateUI(): void { + if (this.grid && this.data) { // Check if grid and data are available + this.grid.data = this.data; } + } - private updateUI() { - if (this.grid && this.data) { // Check if grid and data are available - this.grid.data = this.data; - } + private loadData(pageIndex?: number, pageSize?: number): void { + this.grid.isLoading = true; + + RemotePagingService.getDataWithPaging(pageIndex,pageSize) + .then((response: CustomersWithPageResponseModel) => { + this.totalRecordsCount = response.totalRecordsCount; + this.pager.perPage = pageSize; + this.pager.totalRecords = this.totalRecordsCount; + this.page = response.pageNumber; + this.data = response.items; + this.grid.isLoading = false; + this.updateUI(); // Update the UI after receiving data + }) + .catch((error) => { + console.error(error.message); + // Stop loading even if error occurs. Prevents endless loading + this.grid.isLoading = false; + this.updateUI(); + }) } } diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/index.html b/samples/grids/hierarchical-grid/remote-paging-sample/index.html index 43cf95bad2..a70ddaf9da 100644 --- a/samples/grids/hierarchical-grid/remote-paging-sample/index.html +++ b/samples/grids/hierarchical-grid/remote-paging-sample/index.html @@ -19,7 +19,12 @@
- + diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/src/CustomersWithPageResponseModel.ts b/samples/grids/hierarchical-grid/remote-paging-sample/src/CustomersWithPageResponseModel.ts new file mode 100644 index 0000000000..6976b77c4d --- /dev/null +++ b/samples/grids/hierarchical-grid/remote-paging-sample/src/CustomersWithPageResponseModel.ts @@ -0,0 +1,7 @@ +export interface CustomersWithPageResponseModel { + items: any[]; + totalRecordsCount: number; + pageSize: number; + pageNumber: number; + totalPages: number; +} \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/src/RemoteService.ts b/samples/grids/hierarchical-grid/remote-paging-sample/src/RemoteService.ts index 7f75ebd1b6..9d0e64a650 100644 --- a/samples/grids/hierarchical-grid/remote-paging-sample/src/RemoteService.ts +++ b/samples/grids/hierarchical-grid/remote-paging-sample/src/RemoteService.ts @@ -1,66 +1,36 @@ -import { BehaviorSubject } from 'rxjs'; -const URL = `https://data-northwind.indigo.design/`; - -function buildUrl(dataState: any, index?: number, perPage?: number): string { - let qS = ""; - if (dataState) { - if (dataState.rootLevel) { - qS += `${dataState.key}`; - } else { - qS += `${dataState.parentKey}/${dataState.parentID}/${dataState.key}`; - } - } - - // Add index and perPage to the query string if they are defined - if (index !== undefined) { - qS += `?index=${index}`; - if (perPage !== undefined) { - qS += `&perPage=${perPage}`; - } - } else if (perPage !== undefined) { - qS += `?perPage=${perPage}`; - } - - return `${URL}${qS}`; -} - export class RemotePagingService { - public remoteData: BehaviorSubject = new BehaviorSubject([]); - public dataLength: BehaviorSubject = new BehaviorSubject(0); - public url = 'https://www.igniteui.com/api/products'; + public static BASE_URL = 'https://data-northwind.indigo.design/'; + public static CUSTOMERS_URL = `${RemotePagingService.BASE_URL}Customers/GetCustomersWithPage`; constructor() {} - public async getData(dataState?: any, index?: number, perPage?: number): Promise { - try { - const response = await fetch(buildUrl(dataState, index, perPage)); - if (!response.ok) { - throw new Error(`HTTP error! status: ${response.status}`); - } - const data = await response.json(); - return data; - } catch (error) { - console.error('Error fetching data:', error); - throw error; - } + public static getDataWithPaging(pageIndex?: number, pageSize?: number) { + return fetch(RemotePagingService.buildUrl(RemotePagingService.CUSTOMERS_URL, pageIndex, pageSize)) + .then((result) => result.json()) + .catch((error) => console.error(error.message)); + } + + public static getHierarchyDataById(parentEntityName: string, parentId: string, childEntityName: string) { + return fetch(`${RemotePagingService.BASE_URL}${parentEntityName}/${parentId}/${childEntityName}`) + .then((result) => result.json()); } - public async getDataLength(dataState: any): Promise { - try { - const response = await fetch(buildUrl(dataState)); - if (!response.ok) { - throw new Error(`HTTP error! status: ${response.status}`); - } - const data = await response.json(); - if (Array.isArray(data)) { - return data.length; - } else { - console.error('Data is not an array:', data); - return 0; + private static buildUrl(baseUrl: string, pageIndex?: number, pageSize?: number) { + let qS = ""; + if (baseUrl) { + qS += `${baseUrl}`; + } + + // Add pageIndex and size to the query string if they are defined + if (pageIndex !== undefined) { + qS += `?pageIndex=${pageIndex}`; + if (pageSize !== undefined) { + qS += `&size=${pageSize}`; } - } catch (error) { - console.error('Error fetching data length:', error); - return 0; + } else if (pageSize !== undefined) { + qS += `?perPage=${pageSize}`; } + + return `${qS}`; } } \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/src/index.ts b/samples/grids/hierarchical-grid/remote-paging-sample/src/index.ts index ab99da0fb7..3e8b04965d 100644 --- a/samples/grids/hierarchical-grid/remote-paging-sample/src/index.ts +++ b/samples/grids/hierarchical-grid/remote-paging-sample/src/index.ts @@ -3,39 +3,35 @@ import 'igniteui-webcomponents-grids/grids/combined'; import 'igniteui-webcomponents-grids/grids/themes/light/bootstrap.css'; import { html } from 'lit-html'; import { RemotePagingService } from './RemoteService'; +import { CustomersWithPageResponseModel } from './CustomersWithPageResponseModel'; export class Sample { public data: any[] = []; - public page = 0; - private _perPage = 10; - public pager: IgcPaginatorComponent; + public page: number = 0; public hierarchicalGrid: IgcHierarchicalGridComponent; - private remoteService: RemotePagingService = new RemotePagingService(); - + private _bind: () => void; + private _perPage = 15; + public pager: IgcPaginatorComponent; + private _totalRecordsCount: number; + public get perPage(): number { - return this.pager?.perPage || 10; + return this.pager?.perPage || this._perPage; } public set perPage(val: number) { this._perPage = val; - this.paginate(val); } - - private _totalRecordsCount: number; - public get totalRecordsCount(): number { - return this._totalRecordsCount; + return this._totalRecordsCount; } - public set totalRecordsCount(value: number) { - this._totalRecordsCount = value; - this.hierarchicalGrid.totalRecords = value; + this._totalRecordsCount = value; + this.hierarchicalGrid.totalRecords = value; } constructor() { - this.hierarchicalGrid = document.getElementById("hGrid") as IgcHierarchicalGridComponent; this.pager = document.getElementById('paginator') as IgcPaginatorComponent; const ordersRowIsland = document.getElementById("ordersRowIsland") as IgcRowIslandComponent; @@ -44,79 +40,89 @@ export class Sample { ordersRowIsland.paginatorTemplate = this.webHierarchicalGridPaginatorTemplate; orderDetailsRowIsland.paginatorTemplate = this.webHierarchicalGridPaginatorTemplate; - this.pager.addEventListener("perPageChange", ()=> { - this.paginate(0); - }); - this.pager.addEventListener("pageChange", ((args: CustomEvent) => { - this.paginate(args.detail);}) as EventListener); - - ordersRowIsland.addEventListener("gridCreated", (event: any) => { - this.gridCreated(event, "Customers"); - }); - - orderDetailsRowIsland.addEventListener("gridCreated", (event: any) => { - this.gridCreated(event, "Orders"); - }); - - window.addEventListener("load", () => { - this.pager.totalRecords = this.totalRecordsCount; - this.paginate(0); - }); - - this.hierarchicalGrid.data = this.data; - - this.hierarchicalGrid.isLoading = true; - this.remoteService.getData({ parentID: null, rootLevel: true, key: "Customers" }, this.page, this._perPage).then((data: any) => { - this.hierarchicalGrid.isLoading = false; - this.hierarchicalGrid.data = data; - this.hierarchicalGrid.markForCheck(); - }); - this.remoteService.getDataLength({ parentID: null, rootLevel: true, key: "Customers" }).then((length: number) => { - if(length !== undefined) { - this.totalRecordsCount = length; - this.pager.totalRecords = this.totalRecordsCount; - } - }); + this._bind = () => { + window.addEventListener("load", () => { + this.pager.perPage = this._perPage; + this.loadCustomersData(this.page,this.perPage); + }); + + this.pager.addEventListener("perPageChange", ((args: CustomEvent) => { + this.perPage = args.detail; + this.loadCustomersData(this.page, this.perPage); + }) as EventListener); + + this.pager.addEventListener("pageChange", ((args: CustomEvent) => { + this.page = args.detail; + this.loadCustomersData(this.page, this.perPage); + }) as EventListener); + + ordersRowIsland.addEventListener("gridCreated", (event: any) => { + this.gridCreated(event, "Customers"); + }); + + orderDetailsRowIsland.addEventListener("gridCreated", (event: any) => { + this.gridCreated(event, "Orders"); + }); + } + + this._bind(); } - public gridCreated(event: CustomEvent, _parentKey: string) { + public gridCreated(event: CustomEvent, parentKey: string) { const context = event.detail; - - const dataState = { - key: context.owner.childDataKey, - parentID: context.parentID, - parentKey: _parentKey, - rootLevel: false - }; + const parentId: string = context.parentID; + const childDataKey: string = context.owner.childDataKey; context.grid.isLoading = true; - this.remoteService.getDataLength(dataState).then((length: number) => { - if(length !== undefined) { - this.pager.totalRecords = length; - } - - this.remoteService.getData(dataState, this.page, this.perPage).then((data: any[]) => { - context.grid.isLoading = false; - context.grid.data = data; - context.grid.markForCheck(); - });}); - } - - public paginate(page: number) { - this.page = page; - const skip = this.page * this.perPage; - const top = this.perPage; - this.remoteService.getData({ parentID: null, rootLevel: true, key: 'Customers' }, skip, top).then((data:any)=> { - this.data = data; // Assign received data to this.data - this.hierarchicalGrid.isLoading = false; - this.hierarchicalGrid.markForCheck();// Update the UI after receiving data + RemotePagingService.getHierarchyDataById(parentKey, parentId, childDataKey) + .then((data: any) => { + context.grid.data = data; + context.grid.isLoading = false; + context.grid.markForCheck(); + }) + .catch((error) => { + console.error(error.message); + context.grid.data = []; + context.grid.isLoading = false; + context.grid.markForCheck(); }); } public webHierarchicalGridPaginatorTemplate = () => { - return html` + // Child level grids have LOCAL paging + // They can be set to REMOTE if there are endpoints with paging for each hierarchy level data. + return html ` + ` } + + private updateUI(): void { + if (this.hierarchicalGrid && this.data) { // Check if grid and data are available + this.hierarchicalGrid.data = this.data; + } + } + + private loadCustomersData(pageIndex?: number, pageSize?: number): void { + this.hierarchicalGrid.isLoading = true; + + RemotePagingService.getDataWithPaging(pageIndex,pageSize) + .then((response: CustomersWithPageResponseModel) => { + this.totalRecordsCount = response.totalRecordsCount; + this.pager.perPage = pageSize; + this.pager.totalRecords = this.totalRecordsCount; + this.page = response.pageNumber; + this.data = response.items; + this.hierarchicalGrid.isLoading = false; + this.updateUI(); // Update the UI after receiving data + }) + .catch((error) => { + console.error(error.message); + this.hierarchicalGrid.data = []; + this.hierarchicalGrid.isLoading = false; + this.updateUI(); + }) + } } new Sample(); From bbf09a19fbed59bc39c50cb9a43150aacfd1c9ea Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Sat, 8 Feb 2025 01:04:43 -0500 Subject: [PATCH 52/63] Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.8.2 --- .../src/DashboardGaugeDataSource.ts | 23 ++++ .../gauge-dashboard/src/index.ts | 21 ++-- .../data-chart/radial-label-mode/index.html | 6 +- .../data-chart/radial-label-mode/src/index.ts | 2 +- .../data-chart/selection-matcher/.prettierrc | 11 ++ .../data-chart/selection-matcher/index.html | 97 +++++++++++++++++ .../data-chart/selection-matcher/package.json | 57 ++++++++++ .../selection-matcher/sandbox.config.json | 6 + .../src/EnergyRenewableConsumption.ts | 69 ++++++++++++ .../selection-matcher/src/index.css | 3 + .../data-chart/selection-matcher/src/index.ts | 99 +++++++++++++++++ .../selection-matcher/tsconfig.json | 41 +++++++ .../data-chart/selection-matcher/tslint.json | 54 +++++++++ .../selection-matcher/webpack.config.js | 103 ++++++++++++++++++ .../animation-replay/.prettierrc | 11 ++ .../animation-replay/index.html | 60 ++++++++++ .../animation-replay/package.json | 60 ++++++++++ .../animation-replay/sandbox.config.json | 6 + .../src/EnergyGlobalDemand.ts | 51 +++++++++ .../animation-replay/src/index.css | 3 + .../animation-replay/src/index.ts | 73 +++++++++++++ .../animation-replay/tsconfig.json | 41 +++++++ .../animation-replay/tslint.json | 54 +++++++++ .../animation-replay/webpack.config.js | 103 ++++++++++++++++++ .../charts/data-pie-chart/others/index.html | 13 ++- .../data-pie-chart/others/src/DataPieData.ts | 60 ++++++++++ .../charts/data-pie-chart/others/src/index.ts | 14 +-- .../data-pie-chart/selection/index.html | 8 +- .../data-pie-chart/selection/src/index.ts | 4 +- 29 files changed, 1127 insertions(+), 26 deletions(-) create mode 100644 samples/charts/dashboard-tile/gauge-dashboard/src/DashboardGaugeDataSource.ts create mode 100644 samples/charts/data-chart/selection-matcher/.prettierrc create mode 100644 samples/charts/data-chart/selection-matcher/index.html create mode 100644 samples/charts/data-chart/selection-matcher/package.json create mode 100644 samples/charts/data-chart/selection-matcher/sandbox.config.json create mode 100644 samples/charts/data-chart/selection-matcher/src/EnergyRenewableConsumption.ts create mode 100644 samples/charts/data-chart/selection-matcher/src/index.css create mode 100644 samples/charts/data-chart/selection-matcher/src/index.ts create mode 100644 samples/charts/data-chart/selection-matcher/tsconfig.json create mode 100644 samples/charts/data-chart/selection-matcher/tslint.json create mode 100644 samples/charts/data-chart/selection-matcher/webpack.config.js create mode 100644 samples/charts/data-pie-chart/animation-replay/.prettierrc create mode 100644 samples/charts/data-pie-chart/animation-replay/index.html create mode 100644 samples/charts/data-pie-chart/animation-replay/package.json create mode 100644 samples/charts/data-pie-chart/animation-replay/sandbox.config.json create mode 100644 samples/charts/data-pie-chart/animation-replay/src/EnergyGlobalDemand.ts create mode 100644 samples/charts/data-pie-chart/animation-replay/src/index.css create mode 100644 samples/charts/data-pie-chart/animation-replay/src/index.ts create mode 100644 samples/charts/data-pie-chart/animation-replay/tsconfig.json create mode 100644 samples/charts/data-pie-chart/animation-replay/tslint.json create mode 100644 samples/charts/data-pie-chart/animation-replay/webpack.config.js create mode 100644 samples/charts/data-pie-chart/others/src/DataPieData.ts diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/DashboardGaugeDataSource.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/DashboardGaugeDataSource.ts new file mode 100644 index 0000000000..b739114e02 --- /dev/null +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/DashboardGaugeDataSource.ts @@ -0,0 +1,23 @@ +export class DashboardGaugeDataSourceItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + +} +export class DashboardGaugeDataSource extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new DashboardGaugeDataSourceItem( + { + value: 40 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/dashboard-tile/gauge-dashboard/src/index.ts b/samples/charts/dashboard-tile/gauge-dashboard/src/index.ts index 3e08177d40..015cf61a81 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/src/index.ts +++ b/samples/charts/dashboard-tile/gauge-dashboard/src/index.ts @@ -1,5 +1,6 @@ import { IgcDashboardTileModule, IgcDataChartDashboardTileModule, IgcGeographicMapDashboardTileModule, IgcLinearGaugeDashboardTileModule, IgcPieChartDashboardTileModule, IgcRadialGaugeDashboardTileModule } from 'igniteui-webcomponents-dashboards'; import { IgcDashboardTileComponent } from 'igniteui-webcomponents-dashboards'; +import { DashboardGaugeDataSourceItem, DashboardGaugeDataSource } from './DashboardGaugeDataSource'; import { ModuleManager } from 'igniteui-webcomponents-core'; @@ -17,19 +18,25 @@ ModuleManager.register( export class Sample { private dashboard: IgcDashboardTileComponent + private _bind: () => void; constructor() { var dashboard = this.dashboard = document.getElementById('dashboard') as IgcDashboardTileComponent; - this.dashboardTileGaugeOnInit(); - } - + this._bind = () => { + dashboard.dataSource = this.dashboardGaugeDataSource; + } + this._bind(); - public dashboardTileGaugeOnInit(): void { - - var target = this.dashboard; + } - target.dataSource = 40; + private _dashboardGaugeDataSource: DashboardGaugeDataSource = null; + public get dashboardGaugeDataSource(): DashboardGaugeDataSource { + if (this._dashboardGaugeDataSource == null) + { + this._dashboardGaugeDataSource = new DashboardGaugeDataSource(); + } + return this._dashboardGaugeDataSource; } } diff --git a/samples/charts/data-chart/radial-label-mode/index.html b/samples/charts/data-chart/radial-label-mode/index.html index 3b329bcc89..264ddd24e1 100644 --- a/samples/charts/data-chart/radial-label-mode/index.html +++ b/samples/charts/data-chart/radial-label-mode/index.html @@ -20,13 +20,13 @@
{ propertyEditorPanel1.componentRenderer = this.renderer; - propertyEditorPanel1.target = this.angleAxis; + propertyEditorPanel1.target = this.chart; chart.legend = this.legend; angleAxis.dataSource = this.footballPlayerStats; radialColumnSeries1.dataSource = this.footballPlayerStats; diff --git a/samples/charts/data-chart/selection-matcher/.prettierrc b/samples/charts/data-chart/selection-matcher/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/charts/data-chart/selection-matcher/index.html b/samples/charts/data-chart/selection-matcher/index.html new file mode 100644 index 0000000000..8ca117e381 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/index.html @@ -0,0 +1,97 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ Renewable Energy Consumption +
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + + + + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/data-chart/selection-matcher/package.json b/samples/charts/data-chart/selection-matcher/package.json new file mode 100644 index 0000000000..978b6ce2d5 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/package.json @@ -0,0 +1,57 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-charts": "5.2.0", + "igniteui-webcomponents-core": "5.2.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } +} diff --git a/samples/charts/data-chart/selection-matcher/sandbox.config.json b/samples/charts/data-chart/selection-matcher/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/charts/data-chart/selection-matcher/src/EnergyRenewableConsumption.ts b/samples/charts/data-chart/selection-matcher/src/EnergyRenewableConsumption.ts new file mode 100644 index 0000000000..f742bbef3b --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/src/EnergyRenewableConsumption.ts @@ -0,0 +1,69 @@ +export class EnergyRenewableConsumptionItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public location: string; + public year: number; + public hydro: number; + public solar: number; + public wind: number; + public other: number; + +} +export class EnergyRenewableConsumption extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyRenewableConsumptionItem( + { + location: `China`, + year: 2019, + hydro: 1269.5, + solar: 223, + wind: 405.2, + other: 102.8 + }), + new EnergyRenewableConsumptionItem( + { + location: `Europe`, + year: 2019, + hydro: 632.54, + solar: 154, + wind: 461.3, + other: 220.3 + }), + new EnergyRenewableConsumptionItem( + { + location: `USA`, + year: 2019, + hydro: 271.16, + solar: 108, + wind: 303.4, + other: 78.34 + }), + new EnergyRenewableConsumptionItem( + { + location: `Brazil`, + year: 2019, + hydro: 399.3, + solar: 5.5, + wind: 55.83, + other: 56.25 + }), + new EnergyRenewableConsumptionItem( + { + location: `Canada`, + year: 2019, + hydro: 381.98, + solar: 4.3, + wind: 34.17, + other: 10.81 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-chart/selection-matcher/src/index.css b/samples/charts/data-chart/selection-matcher/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-chart/selection-matcher/src/index.ts b/samples/charts/data-chart/selection-matcher/src/index.ts new file mode 100644 index 0000000000..b6ff619220 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/src/index.ts @@ -0,0 +1,99 @@ +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 { IgcCategoryChartComponent, IgcChartSelection, IgcSeriesMatcher } from 'igniteui-webcomponents-charts'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcLegendModule, + IgcDataChartCoreModule, + IgcDataChartCategoryModule, + IgcDataChartCategoryCoreModule, + IgcDataChartInteractivityModule, + IgcDataChartAnnotationModule, + IgcDataChartStackedModule, + IgcStackedFragmentSeriesModule +); + +export class Sample { + + private legend: IgcLegendComponent + private chart: IgcDataChartComponent + private yAxis: IgcCategoryYAxisComponent + private xAxis: IgcNumericXAxisComponent + private stacked100BarSeries: IgcStacked100BarSeriesComponent + private s1: IgcStackedFragmentSeriesComponent + private s2: IgcStackedFragmentSeriesComponent + private s3: IgcStackedFragmentSeriesComponent + private s4: IgcStackedFragmentSeriesComponent + private dataToolTipLayer: IgcDataToolTipLayerComponent + private _bind: () => void; + + constructor() { + var legend = this.legend = document.getElementById('legend') as IgcLegendComponent; + var chart = this.chart = document.getElementById('chart') as IgcDataChartComponent; + var yAxis = this.yAxis = document.getElementById('yAxis') as IgcCategoryYAxisComponent; + var xAxis = this.xAxis = document.getElementById('xAxis') as IgcNumericXAxisComponent; + var stacked100BarSeries = this.stacked100BarSeries = document.getElementById('stacked100BarSeries') as IgcStacked100BarSeriesComponent; + var s1 = this.s1 = document.getElementById('s1') as IgcStackedFragmentSeriesComponent; + var s2 = this.s2 = document.getElementById('s2') as IgcStackedFragmentSeriesComponent; + var s3 = this.s3 = document.getElementById('s3') as IgcStackedFragmentSeriesComponent; + var s4 = this.s4 = document.getElementById('s4') as IgcStackedFragmentSeriesComponent; + var dataToolTipLayer = this.dataToolTipLayer = document.getElementById('dataToolTipLayer') as IgcDataToolTipLayerComponent; + + this._bind = () => { + chart.legend = this.legend; + yAxis.dataSource = this.energyRenewableConsumption; + stacked100BarSeries.dataSource = this.energyRenewableConsumption; + stacked100BarSeries.xAxis = this.xAxis; + stacked100BarSeries.yAxis = this.yAxis; + } + this._bind(); + + this.selectionMatcherOnViewInit(); + } + + private _energyRenewableConsumption: EnergyRenewableConsumption = null; + public get energyRenewableConsumption(): EnergyRenewableConsumption { + if (this._energyRenewableConsumption == null) + { + this._energyRenewableConsumption = new EnergyRenewableConsumption(); + } + return this._energyRenewableConsumption; + } + + + private _timer: ReturnType; + + public selectionMatcherOnViewInit(): void { + + var chart = this.chart; + + this._timer = setInterval(() => { + var data = this.energyRenewableConsumption; + let matcher: IgcSeriesMatcher = new IgcSeriesMatcher(); + + let selection: IgcChartSelection = new IgcChartSelection(); + selection.item = data[1]; + matcher.memberPath = "hydro"; + matcher.memberPathType = "ValueMemberPath"; + selection.matcher = matcher; + chart.selectedSeriesItems.add(selection); + + let selection2: IgcChartSelection = new IgcChartSelection(); + selection2.item = data[2]; + matcher.memberPath = "wind"; + matcher.memberPathType = "ValueMemberPath"; + selection2.matcher = matcher; + + chart.selectedSeriesItems.add(selection2); + + }, 100); + } + +} + +new Sample(); diff --git a/samples/charts/data-chart/selection-matcher/tsconfig.json b/samples/charts/data-chart/selection-matcher/tsconfig.json new file mode 100644 index 0000000000..e7c370def4 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/tsconfig.json @@ -0,0 +1,41 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/charts/data-chart/selection-matcher/tslint.json b/samples/charts/data-chart/selection-matcher/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/tslint.json @@ -0,0 +1,54 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "member-ordering": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-trailing-whitespace": false, + "no-var": false, + "no-var-requires": false, + "no-var-keyword": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "no-console": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-var-requires": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "ordered-imports": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/charts/data-chart/selection-matcher/webpack.config.js b/samples/charts/data-chart/selection-matcher/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/webpack.config.js @@ -0,0 +1,103 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/charts/data-pie-chart/animation-replay/.prettierrc b/samples/charts/data-pie-chart/animation-replay/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation-replay/index.html b/samples/charts/data-pie-chart/animation-replay/index.html new file mode 100644 index 0000000000..18f7f6c81a --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/index.html @@ -0,0 +1,60 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+
+ + + + +
+ +
+ Global Electricity Demand by Energy Use +
+ +
+ + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json new file mode 100644 index 0000000000..84b45d65b3 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -0,0 +1,60 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents": "5.2.1", + "igniteui-webcomponents-charts": "5.2.0", + "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-inputs": "5.2.0", + "igniteui-webcomponents-layouts": "5.2.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } +} diff --git a/samples/charts/data-pie-chart/animation-replay/sandbox.config.json b/samples/charts/data-pie-chart/animation-replay/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation-replay/src/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/animation-replay/src/EnergyGlobalDemand.ts new file mode 100644 index 0000000000..3d2ed388a0 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/src/EnergyGlobalDemand.ts @@ -0,0 +1,51 @@ +export class EnergyGlobalDemandItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public value: number; + public category: string; + public summary: string; + +} +export class EnergyGlobalDemand extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyGlobalDemandItem( + { + value: 37, + category: `Cooling`, + summary: `Cooling 37%` + }), + new EnergyGlobalDemandItem( + { + value: 25, + category: `Residential`, + summary: `Residential 25%` + }), + new EnergyGlobalDemandItem( + { + value: 12, + category: `Heating`, + summary: `Heating 12%` + }), + new EnergyGlobalDemandItem( + { + value: 11, + category: `Lighting`, + summary: `Lighting 11%` + }), + new EnergyGlobalDemandItem( + { + value: 15, + category: `Other`, + summary: `Other 15%` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-pie-chart/animation-replay/src/index.css b/samples/charts/data-pie-chart/animation-replay/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/data-pie-chart/animation-replay/src/index.ts b/samples/charts/data-pie-chart/animation-replay/src/index.ts new file mode 100644 index 0000000000..8c79442e52 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/src/index.ts @@ -0,0 +1,73 @@ +import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts'; +import { IgcDataPieChartModule, IgcItemLegendModule } from 'igniteui-webcomponents-charts'; +import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-webcomponents-core'; +import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; +import { IgcDataPieChartComponent } from 'igniteui-webcomponents-charts'; +import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +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"; + +ModuleManager.register( + IgcPropertyEditorPanelModule, + IgcDataPieChartModule, + IgcItemLegendModule +); + +export class Sample { + + private propertyEditorPanel1: IgcPropertyEditorPanelComponent + private propertyEditorPropertyDescription1: IgcPropertyEditorPropertyDescriptionComponent + private chart: IgcDataPieChartComponent + private _bind: () => void; + + constructor() { + var propertyEditorPanel1 = this.propertyEditorPanel1 = document.getElementById('propertyEditorPanel1') as IgcPropertyEditorPanelComponent; + var propertyEditorPropertyDescription1 = this.propertyEditorPropertyDescription1 = document.getElementById('propertyEditorPropertyDescription1') as IgcPropertyEditorPropertyDescriptionComponent; + this.editorButtonReplayTransitionInDomain = this.editorButtonReplayTransitionInDomain.bind(this); + var chart = this.chart = document.getElementById('chart') as IgcDataPieChartComponent; + + this._bind = () => { + propertyEditorPanel1.componentRenderer = this.renderer; + propertyEditorPanel1.target = this.chart; + propertyEditorPropertyDescription1.buttonClicked = this.editorButtonReplayTransitionInDomain; + chart.dataSource = this.energyGlobalDemand; + } + this._bind(); + + } + + private _energyGlobalDemand: EnergyGlobalDemand = null; + public get energyGlobalDemand(): EnergyGlobalDemand { + if (this._energyGlobalDemand == null) + { + this._energyGlobalDemand = new EnergyGlobalDemand(); + } + return this._energyGlobalDemand; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + PropertyEditorPanelDescriptionModule.register(context); + DataPieChartDescriptionModule.register(context); + ItemLegendDescriptionModule.register(context); + } + return this._componentRenderer; + } + + public editorButtonReplayTransitionInDomain(sender: any, args: IgcPropertyEditorPropertyDescriptionButtonClickEventArgs): void { + var chart = this.chart; + chart.replayTransitionIn(); + } + +} + +new Sample(); diff --git a/samples/charts/data-pie-chart/animation-replay/tsconfig.json b/samples/charts/data-pie-chart/animation-replay/tsconfig.json new file mode 100644 index 0000000000..e7c370def4 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/tsconfig.json @@ -0,0 +1,41 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation-replay/tslint.json b/samples/charts/data-pie-chart/animation-replay/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/tslint.json @@ -0,0 +1,54 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "member-ordering": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-trailing-whitespace": false, + "no-var": false, + "no-var-requires": false, + "no-var-keyword": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "no-console": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-var-requires": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "ordered-imports": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/charts/data-pie-chart/animation-replay/webpack.config.js b/samples/charts/data-pie-chart/animation-replay/webpack.config.js new file mode 100644 index 0000000000..1de7f08279 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/webpack.config.js @@ -0,0 +1,103 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/charts/data-pie-chart/others/index.html b/samples/charts/data-pie-chart/others/index.html index e803103505..1b09dbfe50 100644 --- a/samples/charts/data-pie-chart/others/index.html +++ b/samples/charts/data-pie-chart/others/index.html @@ -28,19 +28,21 @@ + primitive-value="Number" + value-type="EnumValue"> + max="50" + primitive-value="15"> + label="Others Text: " + value-type="StringValue">
@@ -53,9 +55,8 @@ + others-category-threshold="15">
diff --git a/samples/charts/data-pie-chart/others/src/DataPieData.ts b/samples/charts/data-pie-chart/others/src/DataPieData.ts new file mode 100644 index 0000000000..4bc30e59ee --- /dev/null +++ b/samples/charts/data-pie-chart/others/src/DataPieData.ts @@ -0,0 +1,60 @@ +export class DataPieDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public v1: number; + public category: string; + +} +export class DataPieData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new DataPieDataItem( + { + v1: 100, + category: `Maintenance` + }), + new DataPieDataItem( + { + v1: 40, + category: `Cooling` + }), + new DataPieDataItem( + { + v1: 20, + category: `Residential` + }), + new DataPieDataItem( + { + v1: 15, + category: `Utilities` + }), + new DataPieDataItem( + { + v1: 10, + category: `Heating` + }), + new DataPieDataItem( + { + v1: 5, + category: `Lighting` + }), + new DataPieDataItem( + { + v1: 4, + category: `Electric` + }), + new DataPieDataItem( + { + v1: 3, + category: `Misc` + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/data-pie-chart/others/src/index.ts b/samples/charts/data-pie-chart/others/src/index.ts index 617c10eb3d..34a296c649 100644 --- a/samples/charts/data-pie-chart/others/src/index.ts +++ b/samples/charts/data-pie-chart/others/src/index.ts @@ -3,7 +3,7 @@ import { IgcDataPieChartModule, IgcItemLegendModule } from 'igniteui-webcomponen import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-webcomponents-core'; import { IgcPropertyEditorPanelComponent } from 'igniteui-webcomponents-layouts'; import { IgcDataPieChartComponent } from 'igniteui-webcomponents-charts'; -import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; +import { DataPieDataItem, DataPieData } from './DataPieData'; import 'igniteui-webcomponents/themes/light/bootstrap.css'; import { defineAllComponents } from 'igniteui-webcomponents'; @@ -31,19 +31,19 @@ export class Sample { this._bind = () => { propertyEditorPanel1.componentRenderer = this.renderer; propertyEditorPanel1.target = this.chart; - chart.dataSource = this.energyGlobalDemand; + chart.dataSource = this.dataPieData; } this._bind(); } - private _energyGlobalDemand: EnergyGlobalDemand = null; - public get energyGlobalDemand(): EnergyGlobalDemand { - if (this._energyGlobalDemand == null) + private _dataPieData: DataPieData = null; + public get dataPieData(): DataPieData { + if (this._dataPieData == null) { - this._energyGlobalDemand = new EnergyGlobalDemand(); + this._dataPieData = new DataPieData(); } - return this._energyGlobalDemand; + return this._dataPieData; } private _componentRenderer: ComponentRenderer = null; diff --git a/samples/charts/data-pie-chart/selection/index.html b/samples/charts/data-pie-chart/selection/index.html index 817051e55d..19e4e72a11 100644 --- a/samples/charts/data-pie-chart/selection/index.html +++ b/samples/charts/data-pie-chart/selection/index.html @@ -26,8 +26,14 @@ name="propertyEditorPanel1" id="propertyEditorPanel1"> void; constructor() { var propertyEditorPanel1 = this.propertyEditorPanel1 = document.getElementById('propertyEditorPanel1') as IgcPropertyEditorPanelComponent; + var selectionBehavior = this.selectionBehavior = document.getElementById('SelectionBehavior') as IgcPropertyEditorPropertyDescriptionComponent; var chart = this.chart = document.getElementById('chart') as IgcDataPieChartComponent; this._bind = () => { From 43cea55aad27f815c3cbdba1b7cd4330719d5cef Mon Sep 17 00:00:00 2001 From: Svetoslav Krastev Date: Wed, 12 Feb 2025 15:36:21 +0200 Subject: [PATCH 53/63] Update samples to v5.2.1-beta.0. Related fixes for samples to work. (#938) --- browser/tasks/gulp-samples.js | 26 +- browser/templates/sample/package.json | 27 +- browser/templates/sample/webpack.config.js | 6 +- package-lock.json | 455 +++++++++--------- package.json | 27 +- .../annotations-all/package.json | 11 +- .../annotations-all/webpack.config.js | 6 +- .../annotations-callouts/package.json | 11 +- .../annotations-callouts/webpack.config.js | 6 +- .../annotations-crosshairs/package.json | 11 +- .../annotations-crosshairs/webpack.config.js | 6 +- .../annotations-custom/package.json | 11 +- .../annotations-custom/webpack.config.js | 6 +- .../annotations-final-value/package.json | 11 +- .../annotations-final-value/webpack.config.js | 6 +- .../annotations-highlighting/package.json | 11 +- .../webpack.config.js | 6 +- .../category-chart/annotations/package.json | 7 +- .../annotations/webpack.config.js | 6 +- .../area-chart-multiple-sources/package.json | 7 +- .../webpack.config.js | 6 +- .../area-chart-single-source/package.json | 7 +- .../webpack.config.js | 6 +- .../area-chart-styling/package.json | 7 +- .../area-chart-styling/webpack.config.js | 6 +- .../category-chart/axis-gap/package.json | 11 +- .../category-chart/axis-gap/webpack.config.js | 6 +- .../axis-gridlines/package.json | 11 +- .../axis-gridlines/webpack.config.js | 6 +- .../category-chart/axis-inverted/package.json | 11 +- .../axis-inverted/webpack.config.js | 6 +- .../category-chart/axis-labels/package.json | 11 +- .../axis-labels/webpack.config.js | 6 +- .../axis-locations/package.json | 11 +- .../axis-locations/webpack.config.js | 6 +- .../category-chart/axis-options/package.json | 7 +- .../axis-options/webpack.config.js | 6 +- .../category-chart/axis-overlap/package.json | 11 +- .../axis-overlap/webpack.config.js | 6 +- .../category-chart/axis-range/package.json | 11 +- .../axis-range/webpack.config.js | 6 +- .../axis-tickmarks/package.json | 11 +- .../axis-tickmarks/webpack.config.js | 6 +- .../category-chart/axis-titles/package.json | 7 +- .../axis-titles/webpack.config.js | 6 +- .../chart-highlight-filter/package.json | 11 +- .../chart-highlight-filter/webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../column-chart-single-source/package.json | 7 +- .../webpack.config.js | 6 +- .../column-chart-styling/package.json | 7 +- .../column-chart-styling/webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../column-chart-with-tooltips/package.json | 11 +- .../webpack.config.js | 6 +- .../custom-selection/package.json | 7 +- .../custom-selection/webpack.config.js | 6 +- .../data-aggregations/package.json | 11 +- .../data-aggregations/webpack.config.js | 6 +- .../category-chart/data-filter/package.json | 11 +- .../data-filter/webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../category-chart/data-legend/package.json | 7 +- .../data-legend/webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../data-tooltip-positioning/package.json | 11 +- .../webpack.config.js | 6 +- .../category-chart/data-tooltip/package.json | 7 +- .../data-tooltip/webpack.config.js | 6 +- .../format-specifiers/package.json | 11 +- .../format-specifiers/webpack.config.js | 6 +- .../high-frequency/package.json | 7 +- .../high-frequency/webpack.config.js | 6 +- .../category-chart/high-volume/package.json | 7 +- .../high-volume/webpack.config.js | 6 +- .../highlighting-behavior/package.json | 11 +- .../highlighting-behavior/webpack.config.js | 6 +- .../highlighting-mode/package.json | 11 +- .../highlighting-mode/webpack.config.js | 6 +- .../category-chart/highlighting/package.json | 7 +- .../highlighting/webpack.config.js | 6 +- .../legend-highlighting/package.json | 7 +- .../legend-highlighting/webpack.config.js | 6 +- .../line-chart-multiple-sources/package.json | 7 +- .../webpack.config.js | 6 +- .../line-chart-single-source/package.json | 7 +- .../webpack.config.js | 6 +- .../line-chart-styling/package.json | 7 +- .../line-chart-styling/webpack.config.js | 6 +- .../line-chart-with-animations/package.json | 7 +- .../webpack.config.js | 6 +- .../line-chart-with-annotations/package.json | 7 +- .../webpack.config.js | 6 +- .../marker-options/package.json | 11 +- .../marker-options/webpack.config.js | 6 +- .../marker-templates/package.json | 7 +- .../marker-templates/webpack.config.js | 6 +- .../category-chart/overview/package.json | 7 +- .../category-chart/overview/webpack.config.js | 6 +- .../point-chart-multiple-sources/package.json | 7 +- .../webpack.config.js | 6 +- .../point-chart-single-source/package.json | 7 +- .../webpack.config.js | 6 +- .../point-chart-styling/package.json | 7 +- .../point-chart-styling/webpack.config.js | 6 +- .../selection-modes/package.json | 7 +- .../selection-modes/webpack.config.js | 6 +- .../selection-multiple-modes/package.json | 11 +- .../webpack.config.js | 6 +- .../spline-area-multiple-sources/package.json | 7 +- .../webpack.config.js | 6 +- .../spline-area-single-source/package.json | 7 +- .../webpack.config.js | 6 +- .../spline-area-styling/package.json | 7 +- .../spline-area-styling/webpack.config.js | 6 +- .../spline-multiple-sources/package.json | 7 +- .../spline-multiple-sources/webpack.config.js | 6 +- .../spline-single-source/package.json | 7 +- .../spline-single-source/webpack.config.js | 6 +- .../spline-styling/package.json | 7 +- .../spline-styling/webpack.config.js | 6 +- .../category-chart/stack-columns/package.json | 7 +- .../stack-columns/webpack.config.js | 6 +- .../step-area-multiple-sources/package.json | 7 +- .../webpack.config.js | 6 +- .../step-area-single-source/package.json | 7 +- .../step-area-single-source/webpack.config.js | 6 +- .../step-area-styling/package.json | 7 +- .../step-area-styling/webpack.config.js | 6 +- .../step-line-multiple-sources/package.json | 7 +- .../webpack.config.js | 6 +- .../step-line-single-source/package.json | 7 +- .../step-line-single-source/webpack.config.js | 6 +- .../step-line-styling/package.json | 7 +- .../step-line-styling/webpack.config.js | 6 +- .../tooltip-template/package.json | 7 +- .../tooltip-template/webpack.config.js | 6 +- .../category-chart/tooltip-types/package.json | 7 +- .../tooltip-types/webpack.config.js | 6 +- .../category-chart/trendline/package.json | 7 +- .../trendline/webpack.config.js | 6 +- .../category-chart/value-lines/package.json | 11 +- .../value-lines/webpack.config.js | 6 +- .../chart-dashboard/package.json | 19 +- .../chart-dashboard/webpack.config.js | 6 +- .../financial-dashboard/package.json | 19 +- .../financial-dashboard/webpack.config.js | 6 +- .../gauge-dashboard/package.json | 19 +- .../gauge-dashboard/webpack.config.js | 6 +- .../dashboard-tile/map-dashboard/package.json | 19 +- .../map-dashboard/webpack.config.js | 6 +- .../dashboard-tile/pie-dashboard/package.json | 19 +- .../pie-dashboard/webpack.config.js | 6 +- .../annotations-custom/package.json | 7 +- .../annotations-custom/webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../data-chart/axis-annotations/package.json | 7 +- .../axis-annotations/webpack.config.js | 6 +- .../data-chart/axis-crossing/package.json | 7 +- .../axis-crossing/webpack.config.js | 6 +- .../axis-label-rotation/package.json | 11 +- .../axis-label-rotation/webpack.config.js | 6 +- .../data-chart/axis-locations/package.json | 7 +- .../axis-locations/webpack.config.js | 6 +- .../data-chart/axis-min-max-gap/package.json | 7 +- .../axis-min-max-gap/webpack.config.js | 6 +- .../data-chart/axis-settings/package.json | 7 +- .../axis-settings/webpack.config.js | 6 +- .../data-chart/axis-sharing/package.json | 7 +- .../data-chart/axis-sharing/webpack.config.js | 6 +- .../charts/data-chart/axis-types/package.json | 7 +- .../data-chart/axis-types/webpack.config.js | 6 +- .../bar-chart-multiple-sources/package.json | 7 +- .../webpack.config.js | 6 +- .../bar-chart-overlapping/package.json | 7 +- .../bar-chart-overlapping/webpack.config.js | 6 +- .../bar-chart-single-source/package.json | 7 +- .../bar-chart-single-source/webpack.config.js | 6 +- .../data-chart/bar-chart-styling/package.json | 7 +- .../bar-chart-styling/webpack.config.js | 6 +- .../callout-layer-styling/package.json | 7 +- .../callout-layer-styling/webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../chart-highlight-filter/package.json | 11 +- .../chart-highlight-filter/webpack.config.js | 6 +- .../data-chart/chart-navigation/package.json | 7 +- .../chart-navigation/webpack.config.js | 6 +- .../data-chart/chart-overview/package.json | 7 +- .../chart-overview/webpack.config.js | 6 +- .../data-chart/chart-performance/package.json | 7 +- .../chart-performance/webpack.config.js | 6 +- .../chart-synchronization/package.json | 7 +- .../chart-synchronization/webpack.config.js | 6 +- .../data-chart/chart-titles/package.json | 7 +- .../data-chart/chart-titles/webpack.config.js | 6 +- .../data-chart/composite-chart/package.json | 7 +- .../composite-chart/webpack.config.js | 6 +- .../crosshair-layer-styling/package.json | 7 +- .../crosshair-layer-styling/webpack.config.js | 6 +- .../custom-drawing-annotations/package.json | 11 +- .../webpack.config.js | 6 +- .../custom-editing-data/package.json | 7 +- .../custom-editing-data/webpack.config.js | 6 +- .../data-chart/dash-array-axes/package.json | 7 +- .../dash-array-axes/webpack.config.js | 6 +- .../data-chart/dash-array-series/package.json | 7 +- .../dash-array-series/webpack.config.js | 6 +- .../dash-array-tickmarks/package.json | 7 +- .../dash-array-tickmarks/webpack.config.js | 6 +- .../dash-array-trendline/package.json | 7 +- .../dash-array-trendline/webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../data-legend-grouping/package.json | 7 +- .../data-legend-grouping/webpack.config.js | 6 +- .../data-legend-styling/package.json | 7 +- .../data-legend-styling/webpack.config.js | 6 +- .../data-chart/data-legend/package.json | 7 +- .../data-chart/data-legend/webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../data-tooltip-grouping/package.json | 11 +- .../data-tooltip-grouping/webpack.config.js | 6 +- .../data-tooltip-styling/package.json | 11 +- .../data-tooltip-styling/webpack.config.js | 6 +- .../data-chart/data-tooltip/package.json | 7 +- .../data-chart/data-tooltip/webpack.config.js | 6 +- .../final-value-layer-styling/package.json | 7 +- .../webpack.config.js | 6 +- .../financial-price-series/package.json | 7 +- .../financial-price-series/webpack.config.js | 6 +- .../data-chart/format-specifiers/package.json | 7 +- .../format-specifiers/webpack.config.js | 6 +- .../charts/data-chart/legends/package.json | 7 +- .../data-chart/legends/webpack.config.js | 6 +- .../polar-area-chart-styling/package.json | 7 +- .../webpack.config.js | 6 +- .../data-chart/polar-area-chart/package.json | 7 +- .../polar-area-chart/webpack.config.js | 6 +- .../data-chart/polar-chart-types/package.json | 7 +- .../polar-chart-types/webpack.config.js | 6 +- .../data-chart/polar-line-chart/package.json | 7 +- .../polar-line-chart/webpack.config.js | 6 +- .../polar-scatter-chart/package.json | 7 +- .../polar-scatter-chart/webpack.config.js | 6 +- .../polar-spline-area-chart/package.json | 7 +- .../polar-spline-area-chart/webpack.config.js | 6 +- .../polar-spline-chart/package.json | 7 +- .../polar-spline-chart/webpack.config.js | 6 +- .../radial-area-chart-styling/package.json | 7 +- .../webpack.config.js | 6 +- .../data-chart/radial-area-chart/package.json | 7 +- .../radial-area-chart/webpack.config.js | 6 +- .../radial-chart-types/package.json | 7 +- .../radial-chart-types/webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../radial-column-chart/package.json | 7 +- .../radial-column-chart/webpack.config.js | 6 +- .../data-chart/radial-label-mode/package.json | 11 +- .../radial-label-mode/webpack.config.js | 6 +- .../data-chart/radial-line-chart/package.json | 7 +- .../radial-line-chart/webpack.config.js | 6 +- .../data-chart/radial-pie-chart/package.json | 7 +- .../radial-pie-chart/webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../data-chart/range-area-chart/package.json | 7 +- .../range-area-chart/webpack.config.js | 6 +- .../range-column-chart/package.json | 7 +- .../range-column-chart/webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../scatter-bubble-chart-styling/package.json | 7 +- .../webpack.config.js | 6 +- .../scatter-line-chart/package.json | 7 +- .../scatter-line-chart/webpack.config.js | 6 +- .../scatter-point-chart/package.json | 7 +- .../scatter-point-chart/webpack.config.js | 6 +- .../scatter-spline-chart/package.json | 7 +- .../scatter-spline-chart/webpack.config.js | 6 +- .../data-chart/selection-matcher/package.json | 7 +- .../selection-matcher/webpack.config.js | 6 +- .../data-chart/series-animations/package.json | 7 +- .../series-animations/webpack.config.js | 6 +- .../series-annotations/package.json | 7 +- .../series-annotations/webpack.config.js | 6 +- .../data-chart/series-error-bars/package.json | 7 +- .../series-error-bars/webpack.config.js | 6 +- .../series-highlighting/package.json | 7 +- .../series-highlighting/webpack.config.js | 6 +- .../series-marker-template/package.json | 7 +- .../series-marker-template/webpack.config.js | 6 +- .../data-chart/series-markers/package.json | 7 +- .../series-markers/webpack.config.js | 6 +- .../data-chart/series-tooltips/package.json | 7 +- .../series-tooltips/webpack.config.js | 6 +- .../data-chart/series-trendlines/package.json | 7 +- .../series-trendlines/webpack.config.js | 6 +- .../series-value-overlay/package.json | 7 +- .../series-value-overlay/webpack.config.js | 6 +- .../stacked-100-area-chart/package.json | 7 +- .../stacked-100-area-chart/webpack.config.js | 6 +- .../stacked-100-bar-chart/package.json | 7 +- .../stacked-100-bar-chart/webpack.config.js | 6 +- .../stacked-100-column-chart/package.json | 7 +- .../webpack.config.js | 6 +- .../stacked-100-line-chart/package.json | 7 +- .../stacked-100-line-chart/webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../stacked-100-spline-chart/package.json | 7 +- .../webpack.config.js | 6 +- .../stacked-area-chart/package.json | 7 +- .../stacked-area-chart/webpack.config.js | 6 +- .../data-chart/stacked-bar-chart/package.json | 7 +- .../stacked-bar-chart/webpack.config.js | 6 +- .../stacked-chart-types/package.json | 7 +- .../stacked-chart-types/webpack.config.js | 6 +- .../stacked-column-chart/package.json | 7 +- .../stacked-column-chart/webpack.config.js | 6 +- .../stacked-line-chart/package.json | 7 +- .../stacked-line-chart/webpack.config.js | 6 +- .../stacked-spline-area-chart/package.json | 7 +- .../webpack.config.js | 6 +- .../stacked-spline-chart/package.json | 7 +- .../stacked-spline-chart/webpack.config.js | 6 +- .../data-chart/tooltip-template/package.json | 7 +- .../tooltip-template/webpack.config.js | 6 +- .../data-chart/transition-event/package.json | 11 +- .../transition-event/webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../type-financial-ohlc-series/package.json | 7 +- .../webpack.config.js | 6 +- .../type-financial-overlays/package.json | 7 +- .../type-financial-overlays/webpack.config.js | 6 +- .../type-financial-series/package.json | 7 +- .../type-financial-series/webpack.config.js | 6 +- .../type-range-area-series/package.json | 7 +- .../type-range-area-series/webpack.config.js | 6 +- .../type-range-column-series/package.json | 7 +- .../webpack.config.js | 6 +- .../data-chart/type-range-series/package.json | 7 +- .../type-range-series/webpack.config.js | 6 +- .../type-scatter-area-series/package.json | 7 +- .../webpack.config.js | 6 +- .../type-scatter-bubble-series/package.json | 7 +- .../webpack.config.js | 6 +- .../type-scatter-contour-series/package.json | 7 +- .../webpack.config.js | 6 +- .../type-scatter-hd-series/package.json | 7 +- .../type-scatter-hd-series/webpack.config.js | 6 +- .../type-scatter-polygon-series/package.json | 7 +- .../webpack.config.js | 6 +- .../type-scatter-polyline-series/package.json | 7 +- .../webpack.config.js | 6 +- .../type-scatter-series/package.json | 7 +- .../type-scatter-series/webpack.config.js | 6 +- .../data-chart/type-shape-series/package.json | 7 +- .../type-shape-series/webpack.config.js | 6 +- .../data-chart/waterfall-chart/package.json | 7 +- .../waterfall-chart/webpack.config.js | 6 +- .../animation-replay/package.json | 11 +- .../animation-replay/webpack.config.js | 6 +- .../data-pie-chart/animation/package.json | 11 +- .../animation/webpack.config.js | 6 +- .../highlight-filter/package.json | 7 +- .../highlight-filter/webpack.config.js | 6 +- .../data-pie-chart/highlighting/package.json | 11 +- .../highlighting/webpack.config.js | 6 +- .../charts/data-pie-chart/legend/package.json | 11 +- .../data-pie-chart/legend/webpack.config.js | 6 +- .../charts/data-pie-chart/others/package.json | 11 +- .../data-pie-chart/others/webpack.config.js | 6 +- .../data-pie-chart/overview/package.json | 7 +- .../data-pie-chart/overview/webpack.config.js | 6 +- .../data-pie-chart/selection/package.json | 11 +- .../selection/webpack.config.js | 6 +- .../doughnut-chart/animation/package.json | 7 +- .../animation/webpack.config.js | 6 +- .../doughnut-chart/explosion/package.json | 7 +- .../explosion/webpack.config.js | 6 +- .../charts/doughnut-chart/legend/package.json | 7 +- .../doughnut-chart/legend/webpack.config.js | 6 +- .../doughnut-chart/overview/package.json | 7 +- .../doughnut-chart/overview/webpack.config.js | 6 +- .../charts/doughnut-chart/rings/package.json | 7 +- .../doughnut-chart/rings/webpack.config.js | 6 +- .../doughnut-chart/selection/package.json | 7 +- .../selection/webpack.config.js | 6 +- .../financial-chart/annotations/package.json | 7 +- .../annotations/webpack.config.js | 6 +- .../financial-chart/axis-types/package.json | 7 +- .../axis-types/webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../data-legend-styling-props/package.json | 7 +- .../webpack.config.js | 6 +- .../financial-chart/data-legend/package.json | 7 +- .../data-legend/webpack.config.js | 6 +- .../package.json | 7 +- .../webpack.config.js | 6 +- .../data-tooltip-styling-props/package.json | 7 +- .../webpack.config.js | 6 +- .../financial-chart/data-tooltip/package.json | 7 +- .../data-tooltip/webpack.config.js | 6 +- .../format-specifiers/package.json | 7 +- .../format-specifiers/webpack.config.js | 6 +- .../high-frequency/package.json | 7 +- .../high-frequency/webpack.config.js | 6 +- .../financial-chart/high-volume/package.json | 7 +- .../high-volume/webpack.config.js | 6 +- .../indicator-customization/package.json | 7 +- .../indicator-customization/webpack.config.js | 6 +- .../indicator-types/package.json | 7 +- .../indicator-types/webpack.config.js | 6 +- .../multiple-data/package.json | 7 +- .../multiple-data/webpack.config.js | 6 +- .../financial-chart/overview/package.json | 7 +- .../overview/webpack.config.js | 6 +- .../charts/financial-chart/panes/package.json | 7 +- .../financial-chart/panes/webpack.config.js | 6 +- .../financial-chart/performance/package.json | 7 +- .../performance/webpack.config.js | 6 +- .../financial-chart/scrollbars/package.json | 7 +- .../scrollbars/webpack.config.js | 6 +- .../stock-index-chart/package.json | 7 +- .../stock-index-chart/webpack.config.js | 6 +- .../financial-chart/styling/package.json | 7 +- .../financial-chart/styling/webpack.config.js | 6 +- .../financial-chart/titles/package.json | 7 +- .../financial-chart/titles/webpack.config.js | 6 +- .../tooltip-types/package.json | 7 +- .../tooltip-types/webpack.config.js | 6 +- .../financial-chart/trendlines/package.json | 7 +- .../trendlines/webpack.config.js | 6 +- .../financial-chart/volume-types/package.json | 7 +- .../volume-types/webpack.config.js | 6 +- .../charts/pie-chart/animation/package.json | 7 +- .../pie-chart/animation/webpack.config.js | 6 +- .../charts/pie-chart/explosion/package.json | 7 +- .../pie-chart/explosion/webpack.config.js | 6 +- samples/charts/pie-chart/legend/package.json | 7 +- .../charts/pie-chart/legend/webpack.config.js | 6 +- samples/charts/pie-chart/others/package.json | 7 +- .../charts/pie-chart/others/webpack.config.js | 6 +- .../charts/pie-chart/overview/package.json | 7 +- .../pie-chart/overview/webpack.config.js | 6 +- .../charts/pie-chart/selection/package.json | 7 +- .../pie-chart/selection/webpack.config.js | 6 +- samples/charts/pie-chart/styling/package.json | 7 +- .../pie-chart/styling/webpack.config.js | 6 +- .../sparkline/display-area/package.json | 7 +- .../sparkline/display-area/webpack.config.js | 6 +- .../sparkline/display-column/package.json | 7 +- .../display-column/webpack.config.js | 6 +- .../sparkline/display-lines/package.json | 11 +- .../sparkline/display-lines/webpack.config.js | 6 +- .../sparkline/display-types/package.json | 7 +- .../sparkline/display-types/webpack.config.js | 6 +- .../sparkline/display-winloss/package.json | 7 +- .../display-winloss/webpack.config.js | 6 +- samples/charts/sparkline/grid/package.json | 13 +- .../charts/sparkline/grid/webpack.config.js | 6 +- samples/charts/sparkline/markers/package.json | 11 +- .../sparkline/markers/webpack.config.js | 6 +- .../sparkline/normal-range/package.json | 11 +- .../sparkline/normal-range/webpack.config.js | 6 +- .../charts/sparkline/trendlines/package.json | 11 +- .../sparkline/trendlines/webpack.config.js | 6 +- .../sparkline/unknown-values/package.json | 11 +- .../unknown-values/webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../actions-built-in-data-chart/package.json | 11 +- .../webpack.config.js | 6 +- .../toolbar/color-editor-support/package.json | 11 +- .../color-editor-support/webpack.config.js | 6 +- .../charts/toolbar/custom-tool/package.json | 11 +- .../toolbar/custom-tool/webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- samples/charts/toolbar/theming/package.json | 11 +- .../charts/toolbar/theming/webpack.config.js | 6 +- samples/charts/tree-map/events/package.json | 7 +- .../charts/tree-map/events/webpack.config.js | 6 +- .../highlighting-percent-based/package.json | 7 +- .../webpack.config.js | 6 +- .../charts/tree-map/highlighting/package.json | 11 +- .../tree-map/highlighting/webpack.config.js | 6 +- samples/charts/tree-map/layout/package.json | 11 +- .../charts/tree-map/layout/webpack.config.js | 6 +- samples/charts/tree-map/overview/package.json | 7 +- .../tree-map/overview/webpack.config.js | 6 +- samples/charts/tree-map/styling/package.json | 7 +- .../charts/tree-map/styling/webpack.config.js | 6 +- .../charts/zoomslider/overview/package.json | 7 +- .../zoomslider/overview/webpack.config.js | 6 +- .../overview/package.json | 11 +- .../overview/webpack.config.js | 6 +- .../x-date-picker/date-limits/package.json | 9 +- .../date-limits/webpack.config.js | 6 +- .../x-date-picker/editing/package.json | 9 +- .../x-date-picker/editing/webpack.config.js | 6 +- .../editors/x-date-picker/format/package.json | 9 +- .../x-date-picker/format/webpack.config.js | 6 +- .../x-date-picker/overview/package.json | 9 +- .../x-date-picker/overview/webpack.config.js | 6 +- .../editors/x-date-picker/range/package.json | 9 +- .../x-date-picker/range/webpack.config.js | 6 +- .../operations-on-workbooks/package.json | 13 +- .../operations-on-workbooks/webpack.config.js | 6 +- .../operations-on-worksheets/package.json | 7 +- .../webpack.config.js | 6 +- .../excel/excel-library/overview/package.json | 7 +- .../excel-library/overview/webpack.config.js | 6 +- .../working-with-cells/package.json | 7 +- .../working-with-cells/webpack.config.js | 6 +- .../working-with-charts/package.json | 15 +- .../working-with-charts/webpack.config.js | 6 +- .../working-with-sparklines/package.json | 15 +- .../working-with-sparklines/webpack.config.js | 6 +- .../excel/spreadsheet/activation/package.json | 9 +- .../spreadsheet/activation/webpack.config.js | 6 +- .../spreadsheet/adapter-chart/package.json | 13 +- .../adapter-chart/webpack.config.js | 6 +- .../spreadsheet/adapter-combo/package.json | 13 +- .../adapter-combo/webpack.config.js | 6 +- .../excel/spreadsheet/clipboard/package.json | 9 +- .../spreadsheet/clipboard/webpack.config.js | 6 +- .../excel/spreadsheet/commands/package.json | 9 +- .../spreadsheet/commands/webpack.config.js | 6 +- .../conditional-formatting/package.json | 9 +- .../conditional-formatting/webpack.config.js | 6 +- .../spreadsheet/config-options/package.json | 9 +- .../config-options/webpack.config.js | 6 +- .../spreadsheet/data-validation/package.json | 9 +- .../data-validation/webpack.config.js | 6 +- .../spreadsheet/filter-dialog/package.json | 9 +- .../filter-dialog/webpack.config.js | 6 +- .../spreadsheet/format-dialog/package.json | 9 +- .../format-dialog/webpack.config.js | 6 +- .../excel/spreadsheet/hyperlinks/package.json | 9 +- .../spreadsheet/hyperlinks/webpack.config.js | 6 +- .../excel/spreadsheet/overview/package.json | 9 +- .../spreadsheet/overview/webpack.config.js | 6 +- .../spreadsheet/sort-dialog/package.json | 9 +- .../spreadsheet/sort-dialog/webpack.config.js | 6 +- .../bullet-graph/animation/package.json | 7 +- .../bullet-graph/animation/webpack.config.js | 6 +- .../bullet-graph/background/package.json | 7 +- .../bullet-graph/background/webpack.config.js | 6 +- .../highlight-needle/package.json | 7 +- .../highlight-needle/webpack.config.js | 6 +- .../gauges/bullet-graph/labels/package.json | 7 +- .../bullet-graph/labels/webpack.config.js | 6 +- .../gauges/bullet-graph/measures/package.json | 7 +- .../bullet-graph/measures/webpack.config.js | 6 +- .../gauges/bullet-graph/ranges/package.json | 7 +- .../bullet-graph/ranges/webpack.config.js | 6 +- .../gauges/bullet-graph/scale/package.json | 7 +- .../bullet-graph/scale/webpack.config.js | 6 +- .../bullet-graph/tickmarks/package.json | 7 +- .../bullet-graph/tickmarks/webpack.config.js | 6 +- .../bullet-graph/type-filled/package.json | 7 +- .../type-filled/webpack.config.js | 6 +- .../bullet-graph/type-horizontal/package.json | 7 +- .../type-horizontal/webpack.config.js | 6 +- .../bullet-graph/type-reversed/package.json | 7 +- .../type-reversed/webpack.config.js | 6 +- .../bullet-graph/type-segmented/package.json | 7 +- .../type-segmented/webpack.config.js | 6 +- .../bullet-graph/type-vertical/package.json | 7 +- .../type-vertical/webpack.config.js | 6 +- .../linear-gauge/animation/package.json | 7 +- .../linear-gauge/animation/webpack.config.js | 6 +- .../gauges/linear-gauge/backing/package.json | 7 +- .../linear-gauge/backing/webpack.config.js | 6 +- .../highlight-needle/package.json | 7 +- .../highlight-needle/webpack.config.js | 6 +- .../gauges/linear-gauge/labels/package.json | 7 +- .../linear-gauge/labels/webpack.config.js | 6 +- .../gauges/linear-gauge/needle/package.json | 7 +- .../linear-gauge/needle/webpack.config.js | 6 +- .../gauges/linear-gauge/ranges/package.json | 7 +- .../linear-gauge/ranges/webpack.config.js | 6 +- .../gauges/linear-gauge/scale/package.json | 7 +- .../linear-gauge/scale/webpack.config.js | 6 +- .../linear-gauge/tickmarks/package.json | 7 +- .../linear-gauge/tickmarks/webpack.config.js | 6 +- .../linear-gauge/type-curved/package.json | 7 +- .../type-curved/webpack.config.js | 6 +- .../linear-gauge/type-filled/package.json | 7 +- .../type-filled/webpack.config.js | 6 +- .../linear-gauge/type-horizontal/package.json | 7 +- .../type-horizontal/webpack.config.js | 6 +- .../type-multi-range/package.json | 7 +- .../type-multi-range/webpack.config.js | 6 +- .../type-multi-scale/package.json | 7 +- .../type-multi-scale/webpack.config.js | 6 +- .../linear-gauge/type-segmented/package.json | 7 +- .../type-segmented/webpack.config.js | 6 +- .../linear-gauge/type-vertical/package.json | 7 +- .../type-vertical/webpack.config.js | 6 +- .../radial-gauge/animation/package.json | 7 +- .../radial-gauge/animation/webpack.config.js | 6 +- .../gauges/radial-gauge/backing/package.json | 7 +- .../radial-gauge/backing/webpack.config.js | 6 +- .../highlight-needle/package.json | 7 +- .../highlight-needle/webpack.config.js | 6 +- .../gauges/radial-gauge/labels/package.json | 7 +- .../radial-gauge/labels/webpack.config.js | 6 +- .../gauges/radial-gauge/needle/package.json | 7 +- .../radial-gauge/needle/webpack.config.js | 6 +- .../radial-gauge/optical-scaling/package.json | 7 +- .../optical-scaling/webpack.config.js | 6 +- .../gauges/radial-gauge/ranges/package.json | 7 +- .../radial-gauge/ranges/webpack.config.js | 6 +- .../gauges/radial-gauge/scale/package.json | 7 +- .../radial-gauge/scale/webpack.config.js | 6 +- .../radial-gauge/tickmarks/package.json | 7 +- .../radial-gauge/tickmarks/webpack.config.js | 6 +- .../radial-gauge/type-column/package.json | 7 +- .../type-column/webpack.config.js | 6 +- .../radial-gauge/type-curved/package.json | 7 +- .../type-curved/webpack.config.js | 6 +- .../radial-gauge/type-direction/package.json | 7 +- .../type-direction/webpack.config.js | 6 +- .../radial-gauge/type-full/package.json | 7 +- .../radial-gauge/type-full/webpack.config.js | 6 +- .../radial-gauge/type-half/package.json | 7 +- .../radial-gauge/type-half/webpack.config.js | 6 +- .../radial-gauge/type-quatre/package.json | 7 +- .../type-quatre/webpack.config.js | 6 +- .../radial-gauge/type-ring/package.json | 7 +- .../radial-gauge/type-ring/webpack.config.js | 6 +- .../radial-gauge/type-segmented/package.json | 7 +- .../type-segmented/webpack.config.js | 6 +- .../radial-gauge/type-semi/package.json | 7 +- .../radial-gauge/type-semi/webpack.config.js | 6 +- .../data-grid/accessibility/package.json | 11 +- .../data-grid/accessibility/webpack.config.js | 6 +- .../binding-data-service/package.json | 11 +- .../binding-data-service/webpack.config.js | 6 +- .../data-grid/binding-live-data/package.json | 13 +- .../binding-live-data/webpack.config.js | 6 +- .../data-grid/binding-local-data/package.json | 11 +- .../binding-local-data/webpack.config.js | 6 +- .../binding-remote-data/package.json | 13 +- .../binding-remote-data/webpack.config.js | 6 +- .../data-grid/cell-activation/package.json | 11 +- .../cell-activation/webpack.config.js | 6 +- .../grids/data-grid/cell-editing/package.json | 11 +- .../data-grid/cell-editing/webpack.config.js | 6 +- .../grids/data-grid/cell-merging/package.json | 13 +- .../data-grid/cell-merging/webpack.config.js | 6 +- .../data-grid/cell-selection/package.json | 11 +- .../cell-selection/webpack.config.js | 6 +- .../data-grid/column-animation/package.json | 11 +- .../column-animation/webpack.config.js | 6 +- .../column-chooser-picker/package.json | 11 +- .../column-chooser-picker/webpack.config.js | 6 +- .../column-chooser-toolbar/package.json | 11 +- .../column-chooser-toolbar/webpack.config.js | 6 +- .../column-filter-expressions/package.json | 11 +- .../webpack.config.js | 6 +- .../column-filter-operands/package.json | 11 +- .../column-filter-operands/webpack.config.js | 6 +- .../data-grid/column-filtering/package.json | 11 +- .../column-filtering/webpack.config.js | 6 +- .../data-grid/column-moving/package.json | 11 +- .../data-grid/column-moving/webpack.config.js | 6 +- .../data-grid/column-options/package.json | 11 +- .../column-options/webpack.config.js | 6 +- .../column-pinning-picker/package.json | 11 +- .../column-pinning-picker/webpack.config.js | 6 +- .../column-pinning-toolbar/package.json | 11 +- .../column-pinning-toolbar/webpack.config.js | 6 +- .../data-grid/column-resizing/package.json | 11 +- .../column-resizing/webpack.config.js | 6 +- .../data-grid/column-scrolling/package.json | 11 +- .../column-scrolling/webpack.config.js | 6 +- .../data-grid/column-sorting/package.json | 11 +- .../column-sorting/webpack.config.js | 6 +- .../data-grid/column-summaries/package.json | 11 +- .../column-summaries/webpack.config.js | 6 +- .../grids/data-grid/column-types/package.json | 13 +- .../data-grid/column-types/webpack.config.js | 6 +- .../data-grid/load-save-layout/package.json | 13 +- .../load-save-layout/webpack.config.js | 6 +- .../grids/data-grid/localization/package.json | 13 +- .../data-grid/localization/webpack.config.js | 6 +- samples/grids/data-grid/overview/package.json | 13 +- .../data-grid/overview/webpack.config.js | 6 +- samples/grids/data-grid/pager/package.json | 11 +- .../grids/data-grid/pager/webpack.config.js | 6 +- .../grids/data-grid/performance/package.json | 11 +- .../data-grid/performance/webpack.config.js | 6 +- .../row-group-descriptions/package.json | 11 +- .../row-group-descriptions/webpack.config.js | 6 +- .../grids/data-grid/row-grouping/package.json | 11 +- .../data-grid/row-grouping/webpack.config.js | 6 +- .../data-grid/row-highlighting/package.json | 11 +- .../row-highlighting/webpack.config.js | 6 +- .../grids/data-grid/row-paging/package.json | 11 +- .../data-grid/row-paging/webpack.config.js | 6 +- .../grids/data-grid/row-pinning/package.json | 11 +- .../data-grid/row-pinning/webpack.config.js | 6 +- .../data-grid/row-selection/package.json | 11 +- .../data-grid/row-selection/webpack.config.js | 6 +- .../type-comparison-table/package.json | 13 +- .../type-comparison-table/webpack.config.js | 6 +- .../data-grid/type-heatmap-table/package.json | 11 +- .../type-heatmap-table/webpack.config.js | 6 +- .../type-marketing-table/package.json | 13 +- .../type-marketing-table/webpack.config.js | 6 +- .../data-grid/type-matrix-table/package.json | 11 +- .../type-matrix-table/webpack.config.js | 6 +- .../type-periodic-table/package.json | 11 +- .../type-periodic-table/webpack.config.js | 6 +- .../grids/data-grid/type-table/package.json | 11 +- .../data-grid/type-table/webpack.config.js | 6 +- samples/grids/grid/action-strip/package.json | 11 +- .../grids/grid/action-strip/webpack.config.js | 6 +- .../advanced-filtering-options/package.json | 11 +- .../webpack.config.js | 6 +- .../advanced-filtering-style/package.json | 11 +- .../webpack.config.js | 6 +- .../grid/binding-composite-data/package.json | 11 +- .../binding-composite-data/webpack.config.js | 6 +- .../grids/grid/binding-crud-data/package.json | 11 +- .../grid/binding-crud-data/webpack.config.js | 6 +- .../grid/binding-nested-data-1/package.json | 11 +- .../binding-nested-data-1/webpack.config.js | 6 +- .../grids/grid/cascading-combo/package.json | 11 +- .../grid/cascading-combo/webpack.config.js | 6 +- .../grid/cell-editing-sample/package.json | 11 +- .../cell-editing-sample/webpack.config.js | 6 +- .../grid/cell-editing-styling/package.json | 11 +- .../cell-editing-styling/webpack.config.js | 6 +- .../grid/cell-selection-mode/package.json | 11 +- .../cell-selection-mode/webpack.config.js | 6 +- .../grid/cell-selection-style/package.json | 11 +- .../cell-selection-style/webpack.config.js | 6 +- .../grid/change-icons-custom/package.json | 11 +- .../change-icons-custom/webpack.config.js | 6 +- .../grid/clipboard-operations/package.json | 11 +- .../clipboard-operations/webpack.config.js | 6 +- .../grid/column-auto-sizing/package.json | 11 +- .../grid/column-auto-sizing/webpack.config.js | 6 +- .../column-collapsible-groups/package.json | 11 +- .../webpack.config.js | 6 +- .../grids/grid/column-data-types/package.json | 11 +- .../grid/column-data-types/webpack.config.js | 6 +- .../grid/column-hiding-options/package.json | 11 +- .../column-hiding-options/webpack.config.js | 6 +- .../column-hiding-toolbar-style/package.json | 11 +- .../webpack.config.js | 6 +- .../grid/column-hiding-toolbar/package.json | 11 +- .../column-hiding-toolbar/webpack.config.js | 6 +- .../grid/column-moving-options/package.json | 11 +- .../column-moving-options/webpack.config.js | 6 +- .../grid/column-moving-styles/package.json | 11 +- .../column-moving-styles/webpack.config.js | 6 +- .../grid/column-pinning-options/package.json | 11 +- .../column-pinning-options/webpack.config.js | 6 +- .../column-pinning-right-side/package.json | 11 +- .../webpack.config.js | 6 +- .../grid/column-pinning-styles/package.json | 11 +- .../column-pinning-styles/webpack.config.js | 6 +- .../grids/grid/column-pinning/package.json | 11 +- .../grid/column-pinning/webpack.config.js | 6 +- .../grid/column-resize-styling/package.json | 11 +- .../column-resize-styling/webpack.config.js | 6 +- .../grids/grid/column-resizing/package.json | 11 +- .../grid/column-resizing/webpack.config.js | 6 +- .../grid/column-selection-group/package.json | 11 +- .../column-selection-group/webpack.config.js | 6 +- .../grid/column-selection-mode/package.json | 11 +- .../column-selection-mode/webpack.config.js | 6 +- .../grid/column-selection-styles/package.json | 11 +- .../column-selection-styles/webpack.config.js | 6 +- .../column-sorting-indicators/package.json | 11 +- .../webpack.config.js | 6 +- .../grid/column-sorting-options/package.json | 11 +- .../column-sorting-options/webpack.config.js | 6 +- .../grid/column-sorting-style/package.json | 11 +- .../column-sorting-style/webpack.config.js | 6 +- .../conditional-cell-style-1/package.json | 11 +- .../webpack.config.js | 6 +- .../conditional-cell-style-2/package.json | 11 +- .../webpack.config.js | 6 +- .../conditional-row-selectors/package.json | 11 +- .../webpack.config.js | 6 +- .../grid/custom-context-menu/package.json | 11 +- .../custom-context-menu/webpack.config.js | 6 +- .../grids/grid/custom-filtering/package.json | 11 +- .../grid/custom-filtering/webpack.config.js | 6 +- .../data-batch-editing-actions/package.json | 11 +- .../webpack.config.js | 6 +- .../data-exporting-indicator/package.json | 11 +- .../webpack.config.js | 6 +- .../grid/data-paste-options/package.json | 11 +- .../grid/data-paste-options/webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../grids/grid/data-searching/package.json | 11 +- .../grid/data-searching/webpack.config.js | 6 +- .../grid/data-summaries-custom/package.json | 11 +- .../data-summaries-custom/webpack.config.js | 6 +- .../grid/data-summary-formatter/package.json | 11 +- .../data-summary-formatter/webpack.config.js | 6 +- .../grid/data-summary-options/package.json | 11 +- .../data-summary-options/webpack.config.js | 6 +- .../grid/data-summary-template/package.json | 11 +- .../data-summary-template/webpack.config.js | 6 +- .../grid/data-validation-style/package.json | 11 +- .../data-validation-style/webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../grid/data-validator-service/package.json | 11 +- .../data-validator-service/webpack.config.js | 6 +- .../grids/grid/editing-columns/package.json | 11 +- .../grid/editing-columns/webpack.config.js | 6 +- .../grids/grid/editing-events/package.json | 11 +- .../grid/editing-events/webpack.config.js | 6 +- .../editing-excel-style-custom/package.json | 11 +- .../webpack.config.js | 6 +- .../grid/editing-excel-style/package.json | 11 +- .../editing-excel-style/webpack.config.js | 6 +- .../grids/grid/editing-lifecycle/package.json | 11 +- .../grid/editing-lifecycle/webpack.config.js | 6 +- .../grids/grid/excel-exporting/package.json | 11 +- .../grid/excel-exporting/webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../excel-style-filtering-style/package.json | 11 +- .../webpack.config.js | 6 +- .../external-advanced-filtering/package.json | 11 +- .../webpack.config.js | 6 +- .../grids/grid/filtering-options/package.json | 11 +- .../grid/filtering-options/webpack.config.js | 6 +- .../grid/filtering-strategy/package.json | 11 +- .../grid/filtering-strategy/webpack.config.js | 6 +- .../grids/grid/filtering-style/package.json | 11 +- .../grid/filtering-style/webpack.config.js | 6 +- samples/grids/grid/finjs/package.json | 13 +- samples/grids/grid/finjs/webpack.config.js | 6 +- .../grids/grid/groupby-custom/package.json | 11 +- .../grid/groupby-custom/webpack.config.js | 6 +- .../grid/groupby-expressions/package.json | 11 +- .../groupby-expressions/webpack.config.js | 6 +- .../grids/grid/groupby-paging/package.json | 11 +- .../grid/groupby-paging/webpack.config.js | 6 +- .../grids/grid/groupby-styling/package.json | 11 +- .../grid/groupby-styling/webpack.config.js | 6 +- .../grid/groupby-summary-options/package.json | 11 +- .../groupby-summary-options/webpack.config.js | 6 +- .../grid/groupby-summary-styling/package.json | 11 +- .../groupby-summary-styling/webpack.config.js | 6 +- .../grids/grid/infinite-scroll/package.json | 11 +- .../grid/infinite-scroll/webpack.config.js | 6 +- .../keyboard-custom-navigation/package.json | 11 +- .../webpack.config.js | 6 +- .../grid/keyboard-mrl-navigation/package.json | 11 +- .../keyboard-mrl-navigation/webpack.config.js | 6 +- .../keyboard-navigation-guide/package.json | 11 +- .../webpack.config.js | 6 +- .../grid/layout-display-density/package.json | 11 +- .../layout-display-density/webpack.config.js | 6 +- samples/grids/grid/master-detail/package.json | 11 +- .../grid/master-detail/webpack.config.js | 6 +- .../multi-cell-selection-mode/package.json | 11 +- .../webpack.config.js | 6 +- .../multi-column-headers-export/package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../multi-column-headers-styling/package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../multi-row-layout-options/package.json | 11 +- .../webpack.config.js | 6 +- .../grid/multi-row-layout-style/package.json | 11 +- .../multi-row-layout-style/webpack.config.js | 6 +- samples/grids/grid/overview/package.json | 11 +- samples/grids/grid/overview/webpack.config.js | 6 +- samples/grids/grid/paste/package.json | 11 +- samples/grids/grid/paste/webpack.config.js | 6 +- .../grid/remote-paging-data/package.json | 11 +- .../grid/remote-paging-data/webpack.config.js | 6 +- .../grid/remote-paging-grid/package.json | 11 +- .../grid/remote-paging-grid/webpack.config.js | 6 +- samples/grids/grid/row-adding/package.json | 11 +- .../grids/grid/row-adding/webpack.config.js | 6 +- samples/grids/grid/row-classes/package.json | 11 +- .../grids/grid/row-classes/webpack.config.js | 6 +- samples/grids/grid/row-drag-base/package.json | 11 +- .../grid/row-drag-base/webpack.config.js | 6 +- .../grid/row-editing-options/package.json | 11 +- .../row-editing-options/webpack.config.js | 6 +- .../grids/grid/row-editing-style/package.json | 11 +- .../grid/row-editing-style/webpack.config.js | 6 +- .../grids/grid/row-paging-basic/package.json | 11 +- .../grid/row-paging-basic/webpack.config.js | 6 +- .../grid/row-paging-options/package.json | 11 +- .../grid/row-paging-options/webpack.config.js | 6 +- .../grids/grid/row-pinning-drag/package.json | 11 +- .../grid/row-pinning-drag/webpack.config.js | 6 +- .../row-pinning-extra-column/package.json | 11 +- .../webpack.config.js | 6 +- .../grid/row-pinning-options/package.json | 11 +- .../row-pinning-options/webpack.config.js | 6 +- .../grids/grid/row-pinning-style/package.json | 11 +- .../grid/row-pinning-style/webpack.config.js | 6 +- samples/grids/grid/row-reorder/package.json | 11 +- .../grids/grid/row-reorder/webpack.config.js | 6 +- .../grid/row-selection-mode/package.json | 11 +- .../grid/row-selection-mode/webpack.config.js | 6 +- .../row-selection-template-excel/package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- samples/grids/grid/row-styles/package.json | 11 +- .../grids/grid/row-styles/webpack.config.js | 6 +- .../grid/state-persistence-about/package.json | 11 +- .../state-persistence-about/webpack.config.js | 6 +- .../grid/state-persistence-main/package.json | 11 +- .../state-persistence-main/webpack.config.js | 6 +- .../grid/styling-custom-CSS/package.json | 11 +- .../grid/styling-custom-CSS/webpack.config.js | 6 +- .../grids/grid/toolbar-sample-1/package.json | 11 +- .../grid/toolbar-sample-1/webpack.config.js | 6 +- .../grids/grid/toolbar-sample-2/package.json | 11 +- .../grid/toolbar-sample-2/webpack.config.js | 6 +- .../grids/grid/toolbar-sample-3/package.json | 11 +- .../grid/toolbar-sample-3/webpack.config.js | 6 +- .../grids/grid/toolbar-sample-4/package.json | 11 +- .../grid/toolbar-sample-4/webpack.config.js | 6 +- samples/grids/grid/toolbar-style/package.json | 11 +- .../grid/toolbar-style/webpack.config.js | 6 +- .../action-strip/package.json | 11 +- .../action-strip/webpack.config.js | 6 +- .../advanced-filtering-options/package.json | 11 +- .../webpack.config.js | 6 +- .../advanced-filtering-style/package.json | 11 +- .../webpack.config.js | 6 +- .../cell-editing-sample/package.json | 11 +- .../cell-editing-sample/webpack.config.js | 6 +- .../cell-editing-styling/package.json | 11 +- .../cell-editing-styling/webpack.config.js | 6 +- .../cell-selection-mode/package.json | 11 +- .../cell-selection-mode/webpack.config.js | 6 +- .../cell-selection-overview/package.json | 11 +- .../cell-selection-overview/webpack.config.js | 6 +- .../cell-selection-style/package.json | 11 +- .../cell-selection-style/webpack.config.js | 6 +- .../cell-selection-styling/package.json | 11 +- .../cell-selection-styling/webpack.config.js | 6 +- .../column-auto-sizing/package.json | 11 +- .../column-auto-sizing/webpack.config.js | 6 +- .../column-collapsible-groups/package.json | 11 +- .../webpack.config.js | 6 +- .../column-hiding-toolbar-style/package.json | 11 +- .../webpack.config.js | 6 +- .../column-hiding-toolbar/package.json | 11 +- .../column-hiding-toolbar/webpack.config.js | 6 +- .../column-moving-options/package.json | 11 +- .../column-moving-options/webpack.config.js | 6 +- .../column-moving-styles/package.json | 11 +- .../column-moving-styles/webpack.config.js | 6 +- .../column-pinning-options/package.json | 11 +- .../column-pinning-options/webpack.config.js | 6 +- .../column-pinning-right-side/package.json | 11 +- .../webpack.config.js | 6 +- .../column-pinning-styles/package.json | 11 +- .../column-pinning-styles/webpack.config.js | 6 +- .../column-pinning/package.json | 11 +- .../column-pinning/webpack.config.js | 6 +- .../column-resize-styling/package.json | 11 +- .../column-resize-styling/webpack.config.js | 6 +- .../column-resizing/package.json | 11 +- .../column-resizing/webpack.config.js | 6 +- .../column-selection-group/package.json | 11 +- .../column-selection-group/webpack.config.js | 6 +- .../column-selection-mode/package.json | 11 +- .../column-selection-mode/webpack.config.js | 6 +- .../column-selection-styles/package.json | 11 +- .../column-selection-styles/webpack.config.js | 6 +- .../column-sorting-indicators/package.json | 11 +- .../webpack.config.js | 6 +- .../column-sorting-options/package.json | 11 +- .../column-sorting-options/webpack.config.js | 6 +- .../column-sorting-style/package.json | 11 +- .../column-sorting-style/webpack.config.js | 6 +- .../conditional-cell-style-1/package.json | 11 +- .../webpack.config.js | 6 +- .../conditional-cell-style-2/package.json | 11 +- .../webpack.config.js | 6 +- .../conditional-row-selectors/package.json | 11 +- .../webpack.config.js | 6 +- .../custom-filtering/package.json | 11 +- .../custom-filtering/webpack.config.js | 6 +- .../data-exporting-indicator/package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../data-summary-formatter/package.json | 11 +- .../data-summary-formatter/webpack.config.js | 6 +- .../data-summary-options-styling/package.json | 11 +- .../webpack.config.js | 6 +- .../data-summary-options/package.json | 11 +- .../data-summary-options/webpack.config.js | 6 +- .../data-summary-template/package.json | 11 +- .../data-summary-template/webpack.config.js | 6 +- .../editing-columns/package.json | 11 +- .../editing-columns/webpack.config.js | 6 +- .../editing-events/package.json | 11 +- .../editing-events/webpack.config.js | 6 +- .../editing-lifecycle/package.json | 11 +- .../editing-lifecycle/webpack.config.js | 6 +- .../excel-exporting/package.json | 11 +- .../excel-exporting/webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../excel-style-filtering-style/package.json | 11 +- .../webpack.config.js | 6 +- .../filtering-options/package.json | 11 +- .../filtering-options/webpack.config.js | 6 +- .../filtering-style/package.json | 11 +- .../filtering-style/webpack.config.js | 6 +- .../hierarchical-grid-options/package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../hierarchical-grid-styling/package.json | 11 +- .../webpack.config.js | 6 +- .../layout-display-density/package.json | 11 +- .../layout-display-density/webpack.config.js | 6 +- .../multi-column-headers-export/package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../multi-column-headers-styling/package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../hierarchical-grid/overview/package.json | 11 +- .../overview/webpack.config.js | 6 +- .../remote-paging-sample/package.json | 11 +- .../remote-paging-sample/webpack.config.js | 6 +- .../hierarchical-grid/row-adding/package.json | 11 +- .../row-adding/webpack.config.js | 6 +- .../row-classes/package.json | 11 +- .../row-classes/webpack.config.js | 6 +- .../row-drag-base/package.json | 11 +- .../row-drag-base/webpack.config.js | 6 +- .../row-editing-options/package.json | 11 +- .../row-editing-options/webpack.config.js | 6 +- .../row-editing-style/package.json | 11 +- .../row-editing-style/webpack.config.js | 6 +- .../row-pinning-extra-column/package.json | 11 +- .../webpack.config.js | 6 +- .../row-pinning-options/package.json | 11 +- .../row-pinning-options/webpack.config.js | 6 +- .../row-pinning-style/package.json | 11 +- .../row-pinning-style/webpack.config.js | 6 +- .../row-reorder/package.json | 11 +- .../row-reorder/webpack.config.js | 6 +- .../row-selection-mode/package.json | 11 +- .../row-selection-mode/webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../hierarchical-grid/row-styles/package.json | 11 +- .../row-styles/webpack.config.js | 6 +- .../state-persistence-about/package.json | 11 +- .../state-persistence-about/webpack.config.js | 6 +- .../state-persistence-main/package.json | 11 +- .../state-persistence-main/webpack.config.js | 6 +- .../toolbar-sample-1/package.json | 11 +- .../toolbar-sample-1/webpack.config.js | 6 +- .../toolbar-sample-2/package.json | 11 +- .../toolbar-sample-2/webpack.config.js | 6 +- .../toolbar-sample-3/package.json | 11 +- .../toolbar-sample-3/webpack.config.js | 6 +- .../toolbar-sample-4/package.json | 11 +- .../toolbar-sample-4/webpack.config.js | 6 +- .../toolbar-style/package.json | 11 +- .../toolbar-style/webpack.config.js | 6 +- .../grids/list/add-list-items/package.json | 5 +- .../list/add-list-items/webpack.config.js | 6 +- .../grids/list/list-item-content/package.json | 3 +- .../list/list-item-content/webpack.config.js | 6 +- samples/grids/list/overview/package.json | 3 +- samples/grids/list/overview/webpack.config.js | 6 +- samples/grids/list/styling/package.json | 3 +- samples/grids/list/styling/webpack.config.js | 6 +- .../aggregate-max-sales/package.json | 11 +- .../aggregate-max-sales/webpack.config.js | 6 +- .../aggregate-units-sold/package.json | 11 +- .../aggregate-units-sold/webpack.config.js | 6 +- samples/grids/pivot-grid/basic/package.json | 11 +- .../grids/pivot-grid/basic/webpack.config.js | 6 +- .../data-persistence-noop/package.json | 11 +- .../data-persistence-noop/webpack.config.js | 6 +- .../pivot-grid/data-selector/package.json | 11 +- .../data-selector/webpack.config.js | 6 +- .../grids/pivot-grid/features/package.json | 11 +- .../pivot-grid/features/webpack.config.js | 6 +- samples/grids/pivot-grid/remote/package.json | 11 +- .../grids/pivot-grid/remote/webpack.config.js | 6 +- .../state-persistence-about/package.json | 11 +- .../state-persistence-about/webpack.config.js | 6 +- .../state-persistence-main/package.json | 11 +- .../state-persistence-main/webpack.config.js | 6 +- .../grids/tree-grid/action-strip/package.json | 11 +- .../tree-grid/action-strip/webpack.config.js | 6 +- .../advanced-filtering-options/package.json | 11 +- .../webpack.config.js | 6 +- .../advanced-filtering-style/package.json | 11 +- .../webpack.config.js | 6 +- .../cell-editing-sample/package.json | 11 +- .../cell-editing-sample/webpack.config.js | 6 +- .../cell-editing-styling/package.json | 11 +- .../cell-editing-styling/webpack.config.js | 6 +- .../cell-selection-mode/package.json | 11 +- .../cell-selection-mode/webpack.config.js | 6 +- .../cell-selection-style/package.json | 11 +- .../cell-selection-style/webpack.config.js | 6 +- .../clipboard-operations/package.json | 11 +- .../clipboard-operations/webpack.config.js | 6 +- .../tree-grid/column-auto-sizing/package.json | 11 +- .../column-auto-sizing/webpack.config.js | 6 +- .../column-collapsible-groups/package.json | 11 +- .../webpack.config.js | 6 +- .../tree-grid/column-data-types/package.json | 11 +- .../column-data-types/webpack.config.js | 6 +- .../column-hiding-toolbar-style/package.json | 11 +- .../webpack.config.js | 6 +- .../column-hiding-toolbar/package.json | 11 +- .../column-hiding-toolbar/webpack.config.js | 6 +- .../column-moving-options/package.json | 11 +- .../column-moving-options/webpack.config.js | 6 +- .../column-moving-styles/package.json | 11 +- .../column-moving-styles/webpack.config.js | 6 +- .../column-pinning-options/package.json | 11 +- .../column-pinning-options/webpack.config.js | 6 +- .../column-pinning-right-side/package.json | 11 +- .../webpack.config.js | 6 +- .../column-pinning-styles/package.json | 11 +- .../column-pinning-styles/webpack.config.js | 6 +- .../column-pinning-toolbar/package.json | 11 +- .../column-pinning-toolbar/webpack.config.js | 6 +- .../tree-grid/column-pinning/package.json | 11 +- .../column-pinning/webpack.config.js | 6 +- .../column-resize-styling/package.json | 11 +- .../column-resize-styling/webpack.config.js | 6 +- .../tree-grid/column-resizing/package.json | 11 +- .../column-resizing/webpack.config.js | 6 +- .../column-selection-group/package.json | 11 +- .../column-selection-group/webpack.config.js | 6 +- .../column-selection-mode/package.json | 11 +- .../column-selection-mode/webpack.config.js | 6 +- .../column-selection-style/package.json | 11 +- .../column-selection-style/webpack.config.js | 6 +- .../column-selection-styles/package.json | 11 +- .../column-selection-styles/webpack.config.js | 6 +- .../column-sorting-indicators/package.json | 11 +- .../webpack.config.js | 6 +- .../column-sorting-options/package.json | 11 +- .../column-sorting-options/webpack.config.js | 6 +- .../column-sorting-style/package.json | 11 +- .../column-sorting-style/webpack.config.js | 6 +- .../conditional-cell-style-1/package.json | 11 +- .../webpack.config.js | 6 +- .../conditional-cell-style-2/package.json | 11 +- .../webpack.config.js | 6 +- .../conditional-row-selectors/package.json | 11 +- .../webpack.config.js | 6 +- .../tree-grid/custom-filtering/package.json | 11 +- .../custom-filtering/webpack.config.js | 6 +- .../data-exporting-indicator/package.json | 11 +- .../webpack.config.js | 6 +- .../tree-grid/data-searching/package.json | 11 +- .../data-searching/webpack.config.js | 6 +- .../data-summaries-custom/package.json | 11 +- .../data-summaries-custom/webpack.config.js | 6 +- .../data-summary-children/package.json | 11 +- .../data-summary-children/webpack.config.js | 6 +- .../data-summary-formatter/package.json | 11 +- .../data-summary-formatter/webpack.config.js | 6 +- .../data-summary-options-styling/package.json | 11 +- .../webpack.config.js | 6 +- .../data-summary-options/package.json | 11 +- .../data-summary-options/webpack.config.js | 6 +- .../data-summary-template/package.json | 11 +- .../data-summary-template/webpack.config.js | 6 +- .../tree-grid/editing-columns/package.json | 11 +- .../editing-columns/webpack.config.js | 6 +- .../tree-grid/editing-events/package.json | 11 +- .../editing-events/webpack.config.js | 6 +- .../tree-grid/editing-lifecycle/package.json | 11 +- .../editing-lifecycle/webpack.config.js | 6 +- .../tree-grid/excel-exporting/package.json | 11 +- .../excel-exporting/webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../excel-style-filtering-style/package.json | 11 +- .../webpack.config.js | 6 +- .../tree-grid/filtering-options/package.json | 11 +- .../filtering-options/webpack.config.js | 6 +- .../tree-grid/filtering-style/package.json | 11 +- .../filtering-style/webpack.config.js | 6 +- samples/grids/tree-grid/finjs/package.json | 13 +- .../grids/tree-grid/finjs/webpack.config.js | 6 +- .../keyboard-custom-navigation/package.json | 11 +- .../webpack.config.js | 6 +- .../keyboard-navigation-guide/package.json | 11 +- .../webpack.config.js | 6 +- .../layout-display-density/package.json | 11 +- .../layout-display-density/webpack.config.js | 6 +- .../tree-grid/load-on-demand/package.json | 11 +- .../load-on-demand/webpack.config.js | 6 +- .../multi-cell-selection-mode/package.json | 11 +- .../webpack.config.js | 6 +- .../multi-column-headers-export/package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../multi-column-headers-styling/package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../tree-grid/overview-styling/package.json | 11 +- .../overview-styling/webpack.config.js | 6 +- samples/grids/tree-grid/overview/package.json | 11 +- .../tree-grid/overview/webpack.config.js | 6 +- .../grids/tree-grid/row-adding/package.json | 11 +- .../tree-grid/row-adding/webpack.config.js | 6 +- .../grids/tree-grid/row-classes/package.json | 11 +- .../tree-grid/row-classes/webpack.config.js | 6 +- .../tree-grid/row-drag-base/package.json | 11 +- .../tree-grid/row-drag-base/webpack.config.js | 6 +- .../row-editing-options/package.json | 11 +- .../row-editing-options/webpack.config.js | 6 +- .../tree-grid/row-editing-style/package.json | 11 +- .../row-editing-style/webpack.config.js | 6 +- .../tree-grid/row-paging-basic/package.json | 11 +- .../row-paging-basic/webpack.config.js | 6 +- .../tree-grid/row-paging-options/package.json | 11 +- .../row-paging-options/webpack.config.js | 6 +- .../tree-grid/row-paging-style/package.json | 11 +- .../row-paging-style/webpack.config.js | 6 +- .../row-pinning-extra-column/package.json | 11 +- .../webpack.config.js | 6 +- .../row-pinning-options/package.json | 11 +- .../row-pinning-options/webpack.config.js | 6 +- .../tree-grid/row-pinning-style/package.json | 11 +- .../row-pinning-style/webpack.config.js | 6 +- .../grids/tree-grid/row-reorder/package.json | 11 +- .../tree-grid/row-reorder/webpack.config.js | 6 +- .../tree-grid/row-selection-mode/package.json | 11 +- .../row-selection-mode/webpack.config.js | 6 +- .../row-selection-template-excel/package.json | 11 +- .../webpack.config.js | 6 +- .../package.json | 11 +- .../webpack.config.js | 6 +- .../grids/tree-grid/row-styles/package.json | 11 +- .../tree-grid/row-styles/webpack.config.js | 6 +- .../state-persistence-about/package.json | 11 +- .../state-persistence-about/webpack.config.js | 6 +- .../state-persistence-main/package.json | 11 +- .../state-persistence-main/webpack.config.js | 6 +- .../tree-grid/toolbar-sample-1/package.json | 11 +- .../toolbar-sample-1/webpack.config.js | 6 +- .../tree-grid/toolbar-sample-2/package.json | 11 +- .../toolbar-sample-2/webpack.config.js | 6 +- .../tree-grid/toolbar-sample-3/package.json | 11 +- .../toolbar-sample-3/webpack.config.js | 6 +- .../tree-grid/toolbar-sample-4/package.json | 11 +- .../toolbar-sample-4/webpack.config.js | 6 +- .../tree-grid/toolbar-style/package.json | 11 +- .../tree-grid/toolbar-style/webpack.config.js | 6 +- .../using-primary-foreign-keys/package.json | 11 +- .../webpack.config.js | 6 +- samples/grids/tree/basic-example/package.json | 3 +- .../tree/basic-example/webpack.config.js | 6 +- .../load-on-demand-virtualized/package.json | 3 +- .../webpack.config.js | 6 +- .../grids/tree/load-on-demand/package.json | 3 +- .../tree/load-on-demand/webpack.config.js | 6 +- samples/inputs/badge/outlined/package.json | 3 +- .../inputs/badge/outlined/webpack.config.js | 6 +- samples/inputs/badge/shape/package.json | 3 +- samples/inputs/badge/shape/webpack.config.js | 6 +- samples/inputs/badge/variants/package.json | 3 +- .../inputs/badge/variants/webpack.config.js | 6 +- .../button-group/alignment/package.json | 3 +- .../button-group/alignment/webpack.config.js | 6 +- .../inputs/button-group/overview/package.json | 3 +- .../button-group/overview/webpack.config.js | 6 +- .../button-group/selection/package.json | 3 +- .../button-group/selection/webpack.config.js | 6 +- samples/inputs/button-group/size/package.json | 3 +- .../button-group/size/webpack.config.js | 6 +- .../inputs/button-group/styling/package.json | 3 +- .../button-group/styling/webpack.config.js | 6 +- samples/inputs/button/contained/package.json | 3 +- .../inputs/button/contained/webpack.config.js | 6 +- samples/inputs/button/download/package.json | 3 +- .../inputs/button/download/webpack.config.js | 6 +- samples/inputs/button/fab/package.json | 3 +- samples/inputs/button/fab/webpack.config.js | 6 +- samples/inputs/button/flat/package.json | 3 +- samples/inputs/button/flat/webpack.config.js | 6 +- samples/inputs/button/outlined/package.json | 3 +- .../inputs/button/outlined/webpack.config.js | 6 +- samples/inputs/button/overview/package.json | 3 +- .../inputs/button/overview/webpack.config.js | 6 +- samples/inputs/button/size/package.json | 3 +- samples/inputs/button/size/webpack.config.js | 6 +- samples/inputs/button/styling/package.json | 3 +- .../inputs/button/styling/webpack.config.js | 6 +- samples/inputs/checkbox/checking/package.json | 3 +- .../checkbox/checking/webpack.config.js | 6 +- samples/inputs/checkbox/disabled/package.json | 3 +- .../checkbox/disabled/webpack.config.js | 6 +- .../checkbox/indeterminate/package.json | 3 +- .../checkbox/indeterminate/webpack.config.js | 6 +- samples/inputs/checkbox/label/package.json | 3 +- .../inputs/checkbox/label/webpack.config.js | 6 +- samples/inputs/checkbox/overview/package.json | 3 +- .../checkbox/overview/webpack.config.js | 6 +- samples/inputs/chip/multiple/package.json | 3 +- .../inputs/chip/multiple/webpack.config.js | 6 +- samples/inputs/chip/overview/package.json | 3 +- .../inputs/chip/overview/webpack.config.js | 6 +- samples/inputs/chip/size/package.json | 3 +- samples/inputs/chip/size/webpack.config.js | 6 +- samples/inputs/chip/styling/package.json | 3 +- samples/inputs/chip/styling/webpack.config.js | 6 +- samples/inputs/chip/variants/package.json | 3 +- .../inputs/chip/variants/webpack.config.js | 6 +- .../dynamic/package.json | 3 +- .../dynamic/webpack.config.js | 6 +- .../indeterminate/package.json | 3 +- .../indeterminate/webpack.config.js | 6 +- .../simple/package.json | 3 +- .../simple/webpack.config.js | 6 +- .../styling/package.json | 3 +- .../styling/webpack.config.js | 6 +- .../inputs/color-editor/overview/package.json | 7 +- .../color-editor/overview/webpack.config.js | 6 +- samples/inputs/combo/features/package.json | 3 +- .../inputs/combo/features/webpack.config.js | 6 +- samples/inputs/combo/overview/package.json | 3 +- .../inputs/combo/overview/webpack.config.js | 6 +- samples/inputs/combo/selection/package.json | 3 +- .../inputs/combo/selection/webpack.config.js | 6 +- samples/inputs/combo/simplified/package.json | 3 +- .../inputs/combo/simplified/webpack.config.js | 6 +- samples/inputs/combo/styling/package.json | 3 +- .../inputs/combo/styling/webpack.config.js | 6 +- samples/inputs/combo/templates/package.json | 3 +- .../inputs/combo/templates/webpack.config.js | 6 +- .../input-format-display-format/package.json | 3 +- .../webpack.config.js | 6 +- .../min-max-value/package.json | 3 +- .../min-max-value/webpack.config.js | 6 +- .../date-time-input/overview/package.json | 3 +- .../overview/webpack.config.js | 6 +- .../date-time-input/step-up-down/package.json | 3 +- .../step-up-down/webpack.config.js | 6 +- samples/inputs/dropdown/group/package.json | 3 +- .../inputs/dropdown/group/webpack.config.js | 6 +- samples/inputs/dropdown/header/package.json | 3 +- .../inputs/dropdown/header/webpack.config.js | 6 +- samples/inputs/dropdown/item/package.json | 3 +- .../inputs/dropdown/item/webpack.config.js | 6 +- samples/inputs/dropdown/overview/package.json | 3 +- .../dropdown/overview/webpack.config.js | 6 +- samples/inputs/dropdown/position/package.json | 3 +- .../dropdown/position/webpack.config.js | 6 +- samples/inputs/dropdown/styling/package.json | 3 +- .../inputs/dropdown/styling/webpack.config.js | 6 +- samples/inputs/dropdown/target/package.json | 3 +- .../inputs/dropdown/target/webpack.config.js | 6 +- samples/inputs/icon-button/size/package.json | 3 +- .../inputs/icon-button/size/webpack.config.js | 6 +- .../inputs/icon-button/styling/package.json | 3 +- .../icon-button/styling/webpack.config.js | 6 +- .../inputs/icon-button/variant/package.json | 3 +- .../icon-button/variant/webpack.config.js | 6 +- samples/inputs/input/helper-text/package.json | 3 +- .../input/helper-text/webpack.config.js | 6 +- samples/inputs/input/overview/package.json | 3 +- .../inputs/input/overview/webpack.config.js | 6 +- .../inputs/input/prefix-suffix/package.json | 3 +- .../input/prefix-suffix/webpack.config.js | 6 +- samples/inputs/input/size/package.json | 3 +- samples/inputs/input/size/webpack.config.js | 6 +- samples/inputs/input/styling/package.json | 3 +- .../inputs/input/styling/webpack.config.js | 6 +- .../dynamic/package.json | 3 +- .../dynamic/webpack.config.js | 6 +- .../simple/package.json | 3 +- .../simple/webpack.config.js | 6 +- .../striped/package.json | 3 +- .../striped/webpack.config.js | 6 +- .../styling/package.json | 3 +- .../styling/webpack.config.js | 6 +- .../types/package.json | 3 +- .../types/webpack.config.js | 6 +- .../mask-input/applying-mask/package.json | 3 +- .../applying-mask/webpack.config.js | 6 +- .../inputs/mask-input/overview/package.json | 3 +- .../mask-input/overview/webpack.config.js | 6 +- .../mask-input/value-modes/package.json | 3 +- .../mask-input/value-modes/webpack.config.js | 6 +- samples/inputs/radio/alignment/package.json | 3 +- .../inputs/radio/alignment/webpack.config.js | 6 +- samples/inputs/radio/disabled/package.json | 3 +- .../inputs/radio/disabled/webpack.config.js | 6 +- samples/inputs/radio/group/package.json | 3 +- samples/inputs/radio/group/webpack.config.js | 6 +- samples/inputs/radio/invalid/package.json | 3 +- .../inputs/radio/invalid/webpack.config.js | 6 +- samples/inputs/radio/label/package.json | 3 +- samples/inputs/radio/label/webpack.config.js | 6 +- samples/inputs/radio/styling/package.json | 3 +- .../inputs/radio/styling/webpack.config.js | 6 +- samples/inputs/rating/basic/package.json | 3 +- samples/inputs/rating/basic/webpack.config.js | 6 +- samples/inputs/rating/custom/package.json | 3 +- .../inputs/rating/custom/webpack.config.js | 6 +- samples/inputs/rating/empty/package.json | 3 +- samples/inputs/rating/empty/webpack.config.js | 6 +- .../rating/single-selection/package.json | 3 +- .../rating/single-selection/webpack.config.js | 6 +- samples/inputs/rating/styling/package.json | 3 +- .../inputs/rating/styling/webpack.config.js | 6 +- samples/inputs/ripple/button/package.json | 3 +- .../inputs/ripple/button/webpack.config.js | 6 +- samples/inputs/ripple/color/package.json | 3 +- samples/inputs/ripple/color/webpack.config.js | 6 +- samples/inputs/select/group/package.json | 3 +- samples/inputs/select/group/webpack.config.js | 6 +- samples/inputs/select/header/package.json | 3 +- .../inputs/select/header/webpack.config.js | 6 +- samples/inputs/select/item/package.json | 3 +- samples/inputs/select/item/webpack.config.js | 6 +- samples/inputs/select/overview/package.json | 3 +- .../inputs/select/overview/webpack.config.js | 6 +- samples/inputs/select/styling/package.json | 3 +- .../inputs/select/styling/webpack.config.js | 6 +- .../inputs/slider/constraints/package.json | 3 +- .../slider/constraints/webpack.config.js | 6 +- samples/inputs/slider/disabled/package.json | 3 +- .../inputs/slider/disabled/webpack.config.js | 6 +- samples/inputs/slider/discrete/package.json | 3 +- .../inputs/slider/discrete/webpack.config.js | 6 +- samples/inputs/slider/labels/package.json | 3 +- .../inputs/slider/labels/webpack.config.js | 6 +- samples/inputs/slider/overview/package.json | 3 +- .../inputs/slider/overview/webpack.config.js | 6 +- samples/inputs/slider/styling/package.json | 3 +- .../inputs/slider/styling/webpack.config.js | 6 +- .../inputs/slider/tick-labels/package.json | 3 +- .../slider/tick-labels/webpack.config.js | 6 +- samples/inputs/slider/ticks/package.json | 3 +- samples/inputs/slider/ticks/webpack.config.js | 6 +- .../inputs/slider/value-format/package.json | 3 +- .../slider/value-format/webpack.config.js | 6 +- samples/inputs/slider/value/package.json | 3 +- samples/inputs/slider/value/webpack.config.js | 6 +- samples/inputs/switches/checking/package.json | 3 +- .../switches/checking/webpack.config.js | 6 +- samples/inputs/switches/disabled/package.json | 3 +- .../switches/disabled/webpack.config.js | 6 +- samples/inputs/switches/label/package.json | 3 +- .../inputs/switches/label/webpack.config.js | 6 +- samples/inputs/switches/overview/package.json | 3 +- .../switches/overview/webpack.config.js | 6 +- .../textarea/form-integration/package.json | 3 +- .../form-integration/webpack.config.js | 6 +- samples/inputs/textarea/overview/package.json | 3 +- .../textarea/overview/webpack.config.js | 6 +- samples/inputs/textarea/resize/package.json | 3 +- .../inputs/textarea/resize/webpack.config.js | 6 +- samples/inputs/textarea/slots/package.json | 3 +- .../inputs/textarea/slots/webpack.config.js | 6 +- samples/inputs/textarea/styling/package.json | 3 +- .../inputs/textarea/styling/webpack.config.js | 6 +- .../accordion/customization/package.json | 3 +- .../accordion/customization/webpack.config.js | 6 +- .../accordion/nested-scenario/package.json | 3 +- .../nested-scenario/webpack.config.js | 6 +- .../layouts/accordion/overview/package.json | 3 +- .../accordion/overview/webpack.config.js | 6 +- samples/layouts/avatar/icon/package.json | 3 +- samples/layouts/avatar/icon/webpack.config.js | 6 +- samples/layouts/avatar/image/package.json | 3 +- .../layouts/avatar/image/webpack.config.js | 6 +- samples/layouts/avatar/initials/package.json | 3 +- .../layouts/avatar/initials/webpack.config.js | 6 +- samples/layouts/avatar/shape/package.json | 3 +- .../layouts/avatar/shape/webpack.config.js | 6 +- samples/layouts/avatar/size/package.json | 3 +- samples/layouts/avatar/size/webpack.config.js | 6 +- samples/layouts/card/horizontal/package.json | 3 +- .../layouts/card/horizontal/webpack.config.js | 6 +- samples/layouts/card/integration/package.json | 3 +- .../card/integration/webpack.config.js | 6 +- samples/layouts/card/overview/package.json | 3 +- .../layouts/card/overview/webpack.config.js | 6 +- .../layouts/card/semi-horizontal/package.json | 3 +- .../card/semi-horizontal/webpack.config.js | 6 +- samples/layouts/card/styling/package.json | 3 +- .../layouts/card/styling/webpack.config.js | 6 +- .../layouts/carousel/animations/package.json | 3 +- .../carousel/animations/webpack.config.js | 6 +- .../layouts/carousel/components/package.json | 3 +- .../carousel/components/webpack.config.js | 6 +- .../layouts/carousel/overview/package.json | 3 +- .../carousel/overview/webpack.config.js | 6 +- .../layouts/carousel/thumbnail/package.json | 3 +- .../carousel/thumbnail/webpack.config.js | 6 +- samples/layouts/divider/dashed/package.json | 3 +- .../layouts/divider/dashed/webpack.config.js | 6 +- samples/layouts/divider/middle/package.json | 3 +- .../layouts/divider/middle/webpack.config.js | 6 +- samples/layouts/divider/overview/package.json | 3 +- .../divider/overview/webpack.config.js | 6 +- samples/layouts/divider/select/package.json | 3 +- .../layouts/divider/select/webpack.config.js | 6 +- samples/layouts/divider/vertical/package.json | 3 +- .../divider/vertical/webpack.config.js | 6 +- .../add-content-runtime/package.json | 3 +- .../add-content-runtime/webpack.config.js | 6 +- .../contained-in-boundaries/package.json | 3 +- .../contained-in-boundaries/webpack.config.js | 6 +- .../customize-buttons/package.json | 3 +- .../customize-buttons/webpack.config.js | 6 +- .../embedding-frames/package.json | 5 +- .../embedding-frames/webpack.config.js | 6 +- .../dock-manager/focus-panes/package.json | 3 +- .../focus-panes/webpack.config.js | 6 +- .../hide-pane-headers/package.json | 3 +- .../hide-pane-headers/webpack.config.js | 6 +- .../dock-manager/hiding-panes/package.json | 5 +- .../hiding-panes/webpack.config.js | 6 +- .../dock-manager/overview/package.json | 5 +- .../dock-manager/overview/webpack.config.js | 6 +- .../dock-manager/proximity-dock/package.json | 3 +- .../proximity-dock/webpack.config.js | 6 +- .../split-pane-fixed-size/package.json | 3 +- .../split-pane-fixed-size/webpack.config.js | 6 +- .../layouts/dock-manager/styling/package.json | 5 +- .../dock-manager/styling/webpack.config.js | 6 +- .../toggle-inner-dock/package.json | 3 +- .../toggle-inner-dock/webpack.config.js | 6 +- .../dock-manager/updating-panes/package.json | 11 +- .../updating-panes/webpack.config.js | 6 +- .../component-customization/package.json | 3 +- .../component-customization/webpack.config.js | 6 +- .../properties-and-events/package.json | 3 +- .../properties-and-events/webpack.config.js | 6 +- .../expansion-panel/styling/package.json | 3 +- .../expansion-panel/styling/webpack.config.js | 6 +- .../expansion-panel/usage/package.json | 3 +- .../expansion-panel/usage/webpack.config.js | 6 +- samples/layouts/icon/sizing/package.json | 3 +- samples/layouts/icon/sizing/webpack.config.js | 6 +- samples/layouts/icon/styling/package.json | 3 +- .../layouts/icon/styling/webpack.config.js | 6 +- .../layouts/stepper/animations/package.json | 3 +- .../stepper/animations/webpack.config.js | 6 +- samples/layouts/stepper/linear/package.json | 3 +- .../layouts/stepper/linear/webpack.config.js | 6 +- .../layouts/stepper/orientation/package.json | 3 +- .../stepper/orientation/webpack.config.js | 6 +- samples/layouts/stepper/overview/package.json | 3 +- .../stepper/overview/webpack.config.js | 6 +- .../layouts/stepper/steptypes/package.json | 3 +- .../stepper/steptypes/webpack.config.js | 6 +- samples/layouts/tabs/alignment/package.json | 3 +- .../layouts/tabs/alignment/webpack.config.js | 6 +- samples/layouts/tabs/overview/package.json | 3 +- .../layouts/tabs/overview/webpack.config.js | 6 +- .../layouts/tabs/prefix-suffix/package.json | 3 +- .../tabs/prefix-suffix/webpack.config.js | 6 +- samples/layouts/tabs/scrolling/package.json | 3 +- .../layouts/tabs/scrolling/webpack.config.js | 6 +- .../geo-map/binding-data-csv/package.json | 9 +- .../binding-data-csv/webpack.config.js | 6 +- .../binding-data-json-points/package.json | 9 +- .../webpack.config.js | 6 +- .../geo-map/binding-data-model/package.json | 9 +- .../binding-data-model/webpack.config.js | 6 +- .../binding-multiple-shapes/package.json | 9 +- .../binding-multiple-shapes/webpack.config.js | 6 +- .../binding-multiple-sources/package.json | 9 +- .../webpack.config.js | 6 +- .../geo-map/binding-shp-points/package.json | 9 +- .../binding-shp-points/webpack.config.js | 6 +- .../geo-map/binding-shp-polygons/package.json | 9 +- .../binding-shp-polygons/webpack.config.js | 6 +- .../binding-shp-polylines/package.json | 9 +- .../binding-shp-polylines/webpack.config.js | 6 +- .../maps/geo-map/custom-tooltips/package.json | 9 +- .../geo-map/custom-tooltips/webpack.config.js | 6 +- .../geo-map/display-all-imagery/package.json | 9 +- .../display-all-imagery/webpack.config.js | 6 +- .../geo-map/display-bing-imagery/package.json | 9 +- .../display-bing-imagery/webpack.config.js | 6 +- .../geo-map/display-esri-imagery/package.json | 9 +- .../display-esri-imagery/webpack.config.js | 6 +- .../geo-map/display-heat-imagery/package.json | 9 +- .../display-heat-imagery/webpack.config.js | 6 +- .../geo-map/display-osm-imagery/package.json | 9 +- .../display-osm-imagery/webpack.config.js | 6 +- .../maps/geo-map/marker-template/package.json | 9 +- .../geo-map/marker-template/webpack.config.js | 6 +- samples/maps/geo-map/marker-type/package.json | 9 +- .../geo-map/marker-type/webpack.config.js | 6 +- samples/maps/geo-map/navigation/package.json | 9 +- .../maps/geo-map/navigation/webpack.config.js | 6 +- samples/maps/geo-map/overview/package.json | 9 +- .../maps/geo-map/overview/webpack.config.js | 6 +- .../maps/geo-map/shape-styling/package.json | 9 +- .../geo-map/shape-styling/webpack.config.js | 6 +- .../maps/geo-map/synchronization/package.json | 9 +- .../geo-map/synchronization/webpack.config.js | 6 +- .../geo-map/triangulating-data/package.json | 9 +- .../triangulating-data/webpack.config.js | 6 +- .../type-scatter-area-series/package.json | 9 +- .../webpack.config.js | 6 +- .../type-scatter-bubble-series/package.json | 9 +- .../webpack.config.js | 6 +- .../type-scatter-contour-series/package.json | 9 +- .../webpack.config.js | 6 +- .../type-scatter-density-series/package.json | 9 +- .../webpack.config.js | 6 +- .../type-scatter-symbol-series/package.json | 9 +- .../webpack.config.js | 6 +- .../type-shape-polygon-series/package.json | 9 +- .../webpack.config.js | 6 +- .../type-shape-polyline-series/package.json | 9 +- .../webpack.config.js | 6 +- samples/menus/nav-bar/overview/package.json | 3 +- .../menus/nav-bar/overview/webpack.config.js | 6 +- samples/menus/nav-bar/styling/package.json | 3 +- .../menus/nav-bar/styling/webpack.config.js | 6 +- .../nav-drawer/add-drawer-items/package.json | 3 +- .../add-drawer-items/webpack.config.js | 6 +- .../menus/nav-drawer/add-mini/package.json | 3 +- .../nav-drawer/add-mini/webpack.config.js | 6 +- .../add-positions-navbar/package.json | 3 +- .../add-positions-navbar/webpack.config.js | 6 +- samples/menus/nav-drawer/styling/package.json | 3 +- .../nav-drawer/styling/webpack.config.js | 6 +- .../banner-advanced-sample/package.json | 3 +- .../banner-advanced-sample/webpack.config.js | 6 +- .../banner/banner-sample-1/package.json | 3 +- .../banner/banner-sample-1/webpack.config.js | 6 +- .../banner/banner-sample-2/package.json | 3 +- .../banner/banner-sample-2/webpack.config.js | 6 +- .../banner/banner-styling/package.json | 3 +- .../banner/banner-styling/webpack.config.js | 6 +- .../dialog/closing-variations/package.json | 3 +- .../closing-variations/webpack.config.js | 6 +- .../notifications/dialog/form/package.json | 3 +- .../dialog/form/webpack.config.js | 6 +- .../dialog/overview/package.json | 3 +- .../dialog/overview/webpack.config.js | 6 +- .../notifications/dialog/styling/package.json | 3 +- .../dialog/styling/webpack.config.js | 6 +- .../snackbar/action-text/package.json | 3 +- .../snackbar/action-text/webpack.config.js | 6 +- .../snackbar/display-time/package.json | 3 +- .../snackbar/display-time/webpack.config.js | 6 +- .../snackbar/overview/package.json | 3 +- .../snackbar/overview/webpack.config.js | 6 +- .../snackbar/styling/package.json | 3 +- .../snackbar/styling/webpack.config.js | 6 +- .../notifications/toast/overview/package.json | 3 +- .../toast/overview/webpack.config.js | 6 +- .../toast/properties/package.json | 3 +- .../toast/properties/webpack.config.js | 6 +- .../notifications/toast/styling/package.json | 3 +- .../toast/styling/webpack.config.js | 6 +- .../calendar/disabled-dates/package.json | 3 +- .../calendar/disabled-dates/webpack.config.js | 6 +- .../calendar/formatting/package.json | 3 +- .../calendar/formatting/webpack.config.js | 6 +- .../scheduling/calendar/header/package.json | 3 +- .../calendar/header/webpack.config.js | 6 +- .../calendar/multiple-months/package.json | 3 +- .../multiple-months/webpack.config.js | 6 +- .../calendar/multiple-selection/package.json | 3 +- .../multiple-selection/webpack.config.js | 6 +- .../scheduling/calendar/overview/package.json | 3 +- .../calendar/overview/webpack.config.js | 6 +- .../calendar/range-selection/package.json | 3 +- .../range-selection/webpack.config.js | 6 +- samples/scheduling/calendar/size/package.json | 3 +- .../calendar/size/webpack.config.js | 6 +- .../calendar/special-dates/package.json | 3 +- .../calendar/special-dates/webpack.config.js | 6 +- .../scheduling/calendar/styling/package.json | 3 +- .../calendar/styling/webpack.config.js | 6 +- .../calendar/week-numbers/package.json | 3 +- .../calendar/week-numbers/webpack.config.js | 6 +- .../date-picker/dialog-mode/package.json | 3 +- .../date-picker/dialog-mode/webpack.config.js | 6 +- .../scheduling/date-picker/form/package.json | 3 +- .../date-picker/form/webpack.config.js | 6 +- .../date-picker/format/package.json | 3 +- .../date-picker/format/webpack.config.js | 6 +- .../date-picker/overview/package.json | 3 +- .../date-picker/overview/webpack.config.js | 6 +- .../date-picker/styling/package.json | 3 +- .../date-picker/styling/webpack.config.js | 6 +- webpack.config.js | 6 +- 1760 files changed, 7776 insertions(+), 5152 deletions(-) diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js index 4d4c28481e..bff6db5247 100644 --- a/browser/tasks/gulp-samples.js +++ b/browser/tasks/gulp-samples.js @@ -976,21 +976,21 @@ function updateIG(cb) { // { version: "3.2.12", name: "igniteui-webcomponents-core" }, // PUBLIC NPM let packageUpgrades = [ // these IG packages are often updated: - { version: "5.2.0", name: "igniteui-webcomponents-core" }, - { version: "5.2.0", name: "igniteui-webcomponents-charts" }, - { version: "5.2.0", name: "igniteui-webcomponents-excel" }, - { version: "5.2.0", name: "igniteui-webcomponents-gauges" }, - { version: "5.2.0", name: "igniteui-webcomponents-grids" }, - { version: "5.2.0", name: "igniteui-webcomponents-inputs" }, - { version: "5.2.0", name: "igniteui-webcomponents-layouts" }, - { version: "5.2.0", name: "igniteui-webcomponents-maps" }, - { version: "5.2.0", name: "igniteui-webcomponents-spreadsheet-chart-adapter" }, - { version: "5.2.0", name: "igniteui-webcomponents-spreadsheet" }, - { version: "5.2.0", name: "igniteui-webcomponents-datasources" }, - { version: "5.2.0", name: "igniteui-webcomponents-dashboards" }, + { version: "5.2.1-beta.0", name: "igniteui-webcomponents-core" }, + { version: "5.2.1-beta.0", name: "igniteui-webcomponents-charts" }, + { version: "5.2.1-beta.0", name: "igniteui-webcomponents-excel" }, + { version: "5.2.1-beta.0", name: "igniteui-webcomponents-gauges" }, + { version: "5.2.1-beta.0", name: "igniteui-webcomponents-grids" }, + { version: "5.2.1-beta.0", name: "igniteui-webcomponents-inputs" }, + { version: "5.2.1-beta.0", name: "igniteui-webcomponents-layouts" }, + { version: "5.2.1-beta.0", name: "igniteui-webcomponents-maps" }, + { version: "5.2.1-beta.0", name: "igniteui-webcomponents-spreadsheet-chart-adapter" }, + { version: "5.2.1-beta.0", name: "igniteui-webcomponents-spreadsheet" }, + { version: "5.2.1-beta.0", name: "igniteui-webcomponents-datasources" }, + { version: "5.2.1-beta.0", name: "igniteui-webcomponents-dashboards" }, // these IG packages are sometimes updated: { version: "5.2.1" , name: "igniteui-webcomponents" }, - { version: "1.15.2", name: "igniteui-dockmanager" }, + { version: "1.16.0", name: "igniteui-dockmanager" }, // other packages: { version: "^5.96.1", name: "webpack" }, { version: "^4.10.0", name: "webpack-cli" }, diff --git a/browser/templates/sample/package.json b/browser/templates/sample/package.json index 94397e77b6..1da091adb0 100644 --- a/browser/templates/sample/package.json +++ b/browser/templates/sample/package.json @@ -34,23 +34,24 @@ "@material-ui/icons": { "version": "^4.5.1", "usage": "detect", "keywords": ["@material-ui/core"] }, "@types/file-saver": { "version": "^2.0.0", "usage": "detect", "keywords": ["ExcelUtility"] }, "file-saver": { "version": "^1.3.8", "usage": "detect", "keywords": ["ExcelUtility"] }, - "igniteui-dockmanager": { "version": "^1.12.5", "usage": "detect", "note": "will detect if needs to inject it by checking import statements in source of a sample" }, - "igniteui-webcomponents-core": { "version": "4.3.0-beta.2", "usage": "detect", "note": "will always force injecting it to a package.json "}, - "igniteui-webcomponents-maps": { "version": "4.3.0-beta.2", "usage": "detect" }, - "igniteui-webcomponents-charts": { "version": "4.3.0-beta.2", "usage": "detect", "keywords": ["igniteui-webcomponents-maps", "igniteui-webcomponents-spreadsheet-chart-adapter"] }, - "igniteui-webcomponents-datasources": { "version": "4.3.0-beta.2", "usage": "detect" }, - "igniteui-webcomponents-gauges": { "version": "4.3.0-beta.2", "usage": "detect" }, - "igniteui-webcomponents-spreadsheet": { "version": "4.3.0-beta.2", "usage": "detect" }, - "igniteui-webcomponents-spreadsheet-chart-adapter": { "version": "4.3.0-beta.2", "usage": "detect" }, - "igniteui-webcomponents-excel": { "version": "4.3.0-beta.2", "usage": "detect" }, - "igniteui-webcomponents-grids": { "version": "4.3.0-beta.2", "usage": "detect" }, - "igniteui-webcomponents-inputs": { "version": "4.3.0-beta.2", "usage": "detect", "keywords": ["igniteui-webcomponents-grids"] }, - "igniteui-webcomponents-layouts": { "version": "4.3.0-beta.2", "usage": "detect" } + "igniteui-dockmanager": { "version": "^1.16.0", "usage": "detect", "note": "will detect if needs to inject it by checking import statements in source of a sample" }, + "igniteui-webcomponents-core": { "version": "5.2.1-beta.0", "usage": "detect", "note": "will always force injecting it to a package.json "}, + "igniteui-webcomponents-maps": { "version": "5.2.1-beta.0", "usage": "detect" }, + "igniteui-webcomponents-charts": { "version": "5.2.1-beta.0", "usage": "detect", "keywords": ["igniteui-webcomponents-maps", "igniteui-webcomponents-spreadsheet-chart-adapter"] }, + "igniteui-webcomponents-datasources": { "version": "5.2.1-beta.0", "usage": "detect" }, + "igniteui-webcomponents-gauges": { "version": "5.2.1-beta.0", "usage": "detect" }, + "igniteui-webcomponents-spreadsheet": { "version": "5.2.1-beta.0", "usage": "detect" }, + "igniteui-webcomponents-spreadsheet-chart-adapter": { "version": "5.2.1-beta.0", "usage": "detect" }, + "igniteui-webcomponents-excel": { "version": "5.2.1-beta.0", "usage": "detect" }, + "igniteui-webcomponents-grids": { "version": "5.2.1-beta.0", "usage": "detect" }, + "igniteui-webcomponents-inputs": { "version": "5.2.1-beta.0", "usage": "detect", "keywords": ["igniteui-webcomponents-grids"] }, + "igniteui-webcomponents-layouts": { "version": "5.2.1-beta.0", "usage": "detect" } }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-class-properties": "^7.25.9", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/browser/templates/sample/webpack.config.js b/browser/templates/sample/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/browser/templates/sample/webpack.config.js +++ b/browser/templates/sample/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/package-lock.json b/package-lock.json index e31a3158c2..e54153a228 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22,25 +22,26 @@ "file-saver": "^2.0.2", "igniteui-dockmanager": "1.16.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-dashboards": "5.2.0", - "igniteui-webcomponents-datasources": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-dashboards": "5.2.1-beta.0", + "igniteui-webcomponents-datasources": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.2.1-beta.0", "lit": "^3.2.0", "lit-html": "^3.2.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", @@ -127,13 +128,15 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" @@ -179,27 +182,30 @@ } }, "node_modules/@babel/generator": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", - "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.8.tgz", + "integrity": "sha512-ef383X5++iZHWAXX0SXQR6ZyQhw/0KtTkrTz61WXRhFM6dhpHulO/RJz79L8S6ugZHJkOOkUrUdxgdF2YiPFnA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.23.6", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" + "@babel/parser": "^7.26.8", + "@babel/types": "^7.26.8", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -234,19 +240,18 @@ } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.23.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.7.tgz", - "integrity": "sha512-xCoqR/8+BoNnXOY7RVSgv6X+o7pmT5q1d+gGcRlXYkI+9B31glE4jeejhKVpA04O1AtzOt7OSQ6VYKP5FcRl9g==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz", + "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-member-expression-to-functions": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/traverse": "^7.25.9", "semver": "^6.3.1" }, "engines": { @@ -324,12 +329,14 @@ } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", - "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", + "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.23.0" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -367,22 +374,24 @@ } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", - "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", + "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", + "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -405,14 +414,15 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", - "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.26.5.tgz", + "integrity": "sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-member-expression-to-functions": "^7.22.15", - "@babel/helper-optimise-call-expression": "^7.22.5" + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/traverse": "^7.26.5" }, "engines": { "node": ">=6.9.0" @@ -434,12 +444,14 @@ } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", - "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", + "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -458,19 +470,21 @@ } }, "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -512,25 +526,15 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "node_modules/@babel/parser": { + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.8.tgz", + "integrity": "sha512-TZIQ25pkSoaKEYYaHbbxkfL36GNsQ6iFiBbeuzAkLnXayKR1yP1zFe+NxuZWWsUyvt8icPU9CCq0sgWGXR1GEw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" + "@babel/types": "^7.26.8" }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz", - "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==", - "dev": true, "bin": { "parser": "bin/babel-parser.js" }, @@ -586,23 +590,6 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", - "dev": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-proposal-private-property-in-object": { "version": "7.21.0-placeholder-for-preset-env.2", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", @@ -961,13 +948,14 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz", - "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", + "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -977,14 +965,14 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz", - "integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", + "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-class-static-block": "^7.14.5" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1842,33 +1830,32 @@ "dev": true }, "node_modules/@babel/template": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", - "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.8.tgz", + "integrity": "sha512-iNKaX3ZebKIsCvJ+0jd6embf+Aulaa3vNBqZ41kM7iTWjx5qzWKXGHiJUW3+nTpQ18SG11hdF8OAzKrpXkb96Q==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" + "@babel/code-frame": "^7.26.2", + "@babel/parser": "^7.26.8", + "@babel/types": "^7.26.8" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.23.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.7.tgz", - "integrity": "sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==", + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.8.tgz", + "integrity": "sha512-nic9tRkjYH0oB2dzr/JoGIm+4Q6SuYeLEiIiZDwBscRMYFJ+tMAz98fuel9ZnbXViA2I0HVSSRRK8DW5fjXStA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.6", - "@babel/types": "^7.23.6", + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.8", + "@babel/parser": "^7.26.8", + "@babel/template": "^7.26.8", + "@babel/types": "^7.26.8", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -1877,14 +1864,14 @@ } }, "node_modules/@babel/types": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", - "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.8.tgz", + "integrity": "sha512-eUuWapzEGWFEpHFxgEaBG8e3n6S8L3MSu0oda755rOfabWPnh0Our1AozNFVUxGFIhbKgd1ksprsoDGMinTOTA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1936,14 +1923,15 @@ "integrity": "sha512-lhNBCsFqYWowhrfuhqFx/gfX8G6hGOLNSaDZju7OaDuGyIc9Nsu8/qmZrkoVe1IVKet3Hr09k92Vq4zo3iSxHA==" }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", "dev": true, + "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.0.1", + "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" @@ -1959,10 +1947,11 @@ } }, "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.0.0" } @@ -1984,10 +1973,11 @@ "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.20", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", - "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" @@ -8750,15 +8740,15 @@ } }, "node_modules/igniteui-webcomponents-charts": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-charts/-/igniteui-webcomponents-charts-5.2.0.tgz", - "integrity": "sha512-zPgMWklPkQcDUiUrN612PEmydvTOVHLImDXHGw6xSLJADUfe8eyzJmURe5AbvuW2qkkzWI9xpLY5kSjyFx/3yA==", + "version": "5.2.1-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-charts/-/igniteui-webcomponents-charts-5.2.1-beta.0.tgz", + "integrity": "sha512-TVRtoWBk8i3df3VUfe6S/K6x2agurN6Ylx0OAwWRNefQGH6oQe9yA3sDhMJ8ApRrfFMk/0EfEx1Gzolc7vJSOA==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.2.0" + "igniteui-webcomponents-core": "5.2.1-beta.0" } }, "node_modules/igniteui-webcomponents-charts/node_modules/tslib": { @@ -8767,9 +8757,9 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-core": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-core/-/igniteui-webcomponents-core-5.2.0.tgz", - "integrity": "sha512-tnNz5YhCe3W+oJWlUJQCIJZ61PL6cmAUKiFLmSqjFfWep55dOaZr2Y4CgzkjUQ2ysB8bsb99QmO0g+0E7HbQNQ==", + "version": "5.2.1-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-core/-/igniteui-webcomponents-core-5.2.1-beta.0.tgz", + "integrity": "sha512-eRGK/O+EhshVlis/x6vY/T7PQS0JFDclciQWD4tTY8dmj4zd9Miqbw5ZrUt42uVtSP2S3Ktc1teSOAEKhGzV5g==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" @@ -8784,21 +8774,21 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-dashboards": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-dashboards/-/igniteui-webcomponents-dashboards-5.2.0.tgz", - "integrity": "sha512-CJz76+Z7rcFNGpfJSaooXNV2ALk3iUKj4TRfmLiHQM1Tpw8o7n2q+DR2zg+XWGFwrRQGc/Ta6lAeDZDkDOCOiQ==", + "version": "5.2.1-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-dashboards/-/igniteui-webcomponents-dashboards-5.2.1-beta.0.tgz", + "integrity": "sha512-hy/0/enNcIMsodK1kuv78BL3JpqQggnuJyXsN7JXli9tmbJG9ptWLx2PauJ9KQC2u0/0W+PyNN8WQijvzyOO2A==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0" + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0" } }, "node_modules/igniteui-webcomponents-dashboards/node_modules/tslib": { @@ -8807,15 +8797,15 @@ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" }, "node_modules/igniteui-webcomponents-datasources": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-datasources/-/igniteui-webcomponents-datasources-5.2.0.tgz", - "integrity": "sha512-Z8Q47Y/SAJEbJMwckhXLVjGKsGuZ6jDuvVWhi4Z/KTBeIVXuXSld6+uHQqr8DS+ikMQ/uUH27b6wWcHt8Kmrog==", + "version": "5.2.1-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-datasources/-/igniteui-webcomponents-datasources-5.2.1-beta.0.tgz", + "integrity": "sha512-qdC4eNIo0Bc5o5RiIFdwVyIwY81ZbFcIK87ASoB8H0uEduhr2dUWY9mCybX4I7mxtXhGOq7GQd2wMeszcJQiCQ==", "license": "MIT", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.2.0" + "igniteui-webcomponents-core": "5.2.1-beta.0" } }, "node_modules/igniteui-webcomponents-datasources/node_modules/tslib": { @@ -8824,9 +8814,9 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-excel": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-excel/-/igniteui-webcomponents-excel-5.2.0.tgz", - "integrity": "sha512-cn8q3Yp9KuKMidz10AL10743MHSJ3WNUul0UR9G1stDChRUmfPz/Ik8MxMuP2NY3TfYzzNzzUp9laleWY4HyCw==", + "version": "5.2.1-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-excel/-/igniteui-webcomponents-excel-5.2.1-beta.0.tgz", + "integrity": "sha512-KfUELWXy70TguJxzkgzdb1sKsSpg5Z8cWdh6dSj6E1BR4F0jtqok7Snm2ElUDGLzR7vdQSVu74npqbOEBTYoeg==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "jszip": "^3.1.5", @@ -8834,7 +8824,7 @@ "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.2.0" + "igniteui-webcomponents-core": "5.2.1-beta.0" } }, "node_modules/igniteui-webcomponents-excel/node_modules/tslib": { @@ -8843,120 +8833,125 @@ "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/igniteui-webcomponents-gauges": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-gauges/-/igniteui-webcomponents-gauges-5.2.0.tgz", - "integrity": "sha512-X/guO5/jUsV+2vORbfTgGXpaGCI7FBR7lh1FYv8xxgZXsL7ziiW7uowjZhVeXcgv1BX1r1g+gTRzllm6mTNCNg==", + "version": "5.2.1-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-gauges/-/igniteui-webcomponents-gauges-5.2.1-beta.0.tgz", + "integrity": "sha512-WDFE6KsnXk6vBRdWVcVQxD1Kz2S50QEHh9Ph3b7a1iaiBB7ELoO/vJZFHt61rwZrUsu9S3/36AmlbVzCkLNHoA==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.2.0" + "igniteui-webcomponents-core": "5.2.1-beta.0" } }, "node_modules/igniteui-webcomponents-gauges/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, "node_modules/igniteui-webcomponents-grids": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-5.2.0.tgz", - "integrity": "sha512-qBLpl7uirFLuC10cyu8ERIuAt7ax95ObWf76zkeiZap6E05L4B9TfXGeZO4b8lD5+CcnVtTH0Jd1dr4+qrkcHQ==", + "version": "5.2.1-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-5.2.1-beta.0.tgz", + "integrity": "sha512-p4KDkTTXupM0H1kGkCH0HOhPqxGiGAQa5IcxSWSS24a0Z/QOog7JP8ZLzeAP6BtxJFdi6rGVDee0vBwp+QUbTg==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0" + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0" } }, "node_modules/igniteui-webcomponents-grids/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, "node_modules/igniteui-webcomponents-inputs": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-inputs/-/igniteui-webcomponents-inputs-5.2.0.tgz", - "integrity": "sha512-/0oBeAu/wr8NWTD+yYBK3xP0a1w5KgQQOmuMtlT2KfB2cBPQ8iRMsQGt7yyerYFBgKnTRrjYejLbYCxEUO87PA==", + "version": "5.2.1-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-inputs/-/igniteui-webcomponents-inputs-5.2.1-beta.0.tgz", + "integrity": "sha512-9KoKLbugIatWxAdhnJglQTtgv7v1I/q4z0aQ9y+dNph4Ox0yXI61BJWj4wEC4hXwP6JilB+WY3NJr8S6Dw884g==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.2.0" + "igniteui-webcomponents-core": "5.2.1-beta.0" } }, "node_modules/igniteui-webcomponents-inputs/node_modules/tslib": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", - "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, "node_modules/igniteui-webcomponents-layouts": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-layouts/-/igniteui-webcomponents-layouts-5.2.0.tgz", - "integrity": "sha512-R0IUPrkwA+kq/mFJkMrFSI2Zceq85rFx4Cgn2pL3wMAx68umfKjTAkCLuHxjSsxoIo245q5QXY1nhX/S5QBQAQ==", + "version": "5.2.1-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-layouts/-/igniteui-webcomponents-layouts-5.2.1-beta.0.tgz", + "integrity": "sha512-uD49i6V4ymFNMyrsqAusHDprjOAEnMAID+GnFe5pjc7uaWaWrpQ4RdIgETyzi7Pks+VP+nVBs5w0r2C9vg+BsA==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0" + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0" } }, "node_modules/igniteui-webcomponents-layouts/node_modules/tslib": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", - "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==" + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, "node_modules/igniteui-webcomponents-maps": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-maps/-/igniteui-webcomponents-maps-5.2.0.tgz", - "integrity": "sha512-6mqMKWnkwkUErvnkLLIOaYbE3rP1Qv/BFLs4zi6GRlQBuDUDnHPKdmSw/RPZx70OuBSbieR3FYsjF8TFKjGZRg==", + "version": "5.2.1-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-maps/-/igniteui-webcomponents-maps-5.2.1-beta.0.tgz", + "integrity": "sha512-X2Xomt/oaHBdjYCCMAu70BS8NzRTscsGJsQ2GWTmPVLXiWSS03iwA1OQ0wWcb8es3YQeuG/7sx2lsaHz/NPfXg==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0" + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0" } }, "node_modules/igniteui-webcomponents-maps/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, "node_modules/igniteui-webcomponents-spreadsheet": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet/-/igniteui-webcomponents-spreadsheet-5.2.0.tgz", - "integrity": "sha512-0VTEKLTziqJMlsmGHCWvIzHVXuhov7FNha0aakM9sFhM6Z9Gch7RYZcX/sBYjCNQuiYqqKN3tgeSgHzTiOV0kA==", + "version": "5.2.1-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet/-/igniteui-webcomponents-spreadsheet-5.2.1-beta.0.tgz", + "integrity": "sha512-u0Dd0tDsiS/mwZP2Tx4wJLTb5neUKmN0ifHM+tn5rJmDk9kEdlU4IGIgJ31SC6b/oXowO7EYE3g6y0w1E43yFQ==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0" + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0" } }, "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet-chart-adapter/-/igniteui-webcomponents-spreadsheet-chart-adapter-5.2.0.tgz", - "integrity": "sha512-Cwp/doEgIjz0YDVhcqlecPkSnWGns8RRKqLH0LzTLhBPUgsvf5xK9W+4wIASsVLS0yqynRZ9kRXThjZ2GmRn3A==", + "version": "5.2.1-beta.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-spreadsheet-chart-adapter/-/igniteui-webcomponents-spreadsheet-chart-adapter-5.2.1-beta.0.tgz", + "integrity": "sha512-Ldx1yWhyIbBiRhOLHVrUPjOSqkkgSQkxloI0Tab2LRH/a+EQ6PtERwC9i4SA/wX23tykycgagCHan9XaX+v4Qw==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0" + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0" } }, "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter/node_modules/tslib": { @@ -9555,15 +9550,16 @@ } }, "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "dev": true, + "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, "engines": { - "node": ">=4" + "node": ">=6" } }, "node_modules/json-parse-even-better-errors": { @@ -13706,15 +13702,6 @@ "node": ">=0.10.0" } }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "engines": { - "node": ">=4" - } - }, "node_modules/to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", diff --git a/package.json b/package.json index a4680d19c0..84bee7a1df 100644 --- a/package.json +++ b/package.json @@ -42,25 +42,26 @@ "file-saver": "^2.0.2", "igniteui-dockmanager": "1.16.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-dashboards": "5.2.0", - "igniteui-webcomponents-datasources": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-dashboards": "5.2.1-beta.0", + "igniteui-webcomponents-datasources": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.2.1-beta.0", "lit": "^3.2.0", "lit-html": "^3.2.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-class-properties": "^7.25.9", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/annotations-all/webpack.config.js b/samples/charts/category-chart/annotations-all/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/annotations-all/webpack.config.js +++ b/samples/charts/category-chart/annotations-all/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/annotations-callouts/webpack.config.js b/samples/charts/category-chart/annotations-callouts/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/annotations-callouts/webpack.config.js +++ b/samples/charts/category-chart/annotations-callouts/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/annotations-crosshairs/webpack.config.js b/samples/charts/category-chart/annotations-crosshairs/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/annotations-crosshairs/webpack.config.js +++ b/samples/charts/category-chart/annotations-crosshairs/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/annotations-custom/webpack.config.js b/samples/charts/category-chart/annotations-custom/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/annotations-custom/webpack.config.js +++ b/samples/charts/category-chart/annotations-custom/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/annotations-final-value/webpack.config.js +++ b/samples/charts/category-chart/annotations-final-value/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/annotations-highlighting/webpack.config.js b/samples/charts/category-chart/annotations-highlighting/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/annotations-highlighting/webpack.config.js +++ b/samples/charts/category-chart/annotations-highlighting/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 638e4f5584..ffbc22ae06 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/annotations/webpack.config.js b/samples/charts/category-chart/annotations/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/category-chart/annotations/webpack.config.js +++ b/samples/charts/category-chart/annotations/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/area-chart-styling/webpack.config.js +++ b/samples/charts/category-chart/area-chart-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/axis-gap/webpack.config.js b/samples/charts/category-chart/axis-gap/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/axis-gap/webpack.config.js +++ b/samples/charts/category-chart/axis-gap/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/axis-gridlines/webpack.config.js b/samples/charts/category-chart/axis-gridlines/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/axis-gridlines/webpack.config.js +++ b/samples/charts/category-chart/axis-gridlines/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/axis-inverted/webpack.config.js b/samples/charts/category-chart/axis-inverted/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/axis-inverted/webpack.config.js +++ b/samples/charts/category-chart/axis-inverted/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/axis-labels/webpack.config.js b/samples/charts/category-chart/axis-labels/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/axis-labels/webpack.config.js +++ b/samples/charts/category-chart/axis-labels/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/axis-locations/webpack.config.js b/samples/charts/category-chart/axis-locations/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/axis-locations/webpack.config.js +++ b/samples/charts/category-chart/axis-locations/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/axis-options/webpack.config.js b/samples/charts/category-chart/axis-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/axis-options/webpack.config.js +++ b/samples/charts/category-chart/axis-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/axis-overlap/webpack.config.js b/samples/charts/category-chart/axis-overlap/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/axis-overlap/webpack.config.js +++ b/samples/charts/category-chart/axis-overlap/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/axis-range/webpack.config.js b/samples/charts/category-chart/axis-range/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/axis-range/webpack.config.js +++ b/samples/charts/category-chart/axis-range/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/axis-tickmarks/webpack.config.js b/samples/charts/category-chart/axis-tickmarks/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/axis-tickmarks/webpack.config.js +++ b/samples/charts/category-chart/axis-tickmarks/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/axis-titles/webpack.config.js b/samples/charts/category-chart/axis-titles/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/axis-titles/webpack.config.js +++ b/samples/charts/category-chart/axis-titles/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/chart-highlight-filter/webpack.config.js +++ b/samples/charts/category-chart/chart-highlight-filter/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/column-chart-styling/webpack.config.js +++ b/samples/charts/category-chart/column-chart-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index e8a763674e..ea97b08742 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/webpack.config.js b/samples/charts/category-chart/column-chart-with-highlighting/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/webpack.config.js +++ b/samples/charts/category-chart/column-chart-with-highlighting/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/custom-selection/webpack.config.js b/samples/charts/category-chart/custom-selection/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/custom-selection/webpack.config.js +++ b/samples/charts/category-chart/custom-selection/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/data-aggregations/webpack.config.js b/samples/charts/category-chart/data-aggregations/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/data-aggregations/webpack.config.js +++ b/samples/charts/category-chart/data-aggregations/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/data-filter/webpack.config.js b/samples/charts/category-chart/data-filter/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/data-filter/webpack.config.js +++ b/samples/charts/category-chart/data-filter/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/data-legend/webpack.config.js b/samples/charts/category-chart/data-legend/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/data-legend/webpack.config.js +++ b/samples/charts/category-chart/data-legend/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/webpack.config.js +++ b/samples/charts/category-chart/data-tooltip-positioning/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/data-tooltip/webpack.config.js b/samples/charts/category-chart/data-tooltip/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/data-tooltip/webpack.config.js +++ b/samples/charts/category-chart/data-tooltip/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index f409f6ba89..0c86b64aa1 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/format-specifiers/webpack.config.js b/samples/charts/category-chart/format-specifiers/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/format-specifiers/webpack.config.js +++ b/samples/charts/category-chart/format-specifiers/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index dfa480c6e0..30bb6f8727 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/high-frequency/webpack.config.js b/samples/charts/category-chart/high-frequency/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/category-chart/high-frequency/webpack.config.js +++ b/samples/charts/category-chart/high-frequency/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index eb1f472a51..fa2f5c7e61 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/high-volume/webpack.config.js b/samples/charts/category-chart/high-volume/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/category-chart/high-volume/webpack.config.js +++ b/samples/charts/category-chart/high-volume/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/highlighting-behavior/webpack.config.js b/samples/charts/category-chart/highlighting-behavior/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/highlighting-behavior/webpack.config.js +++ b/samples/charts/category-chart/highlighting-behavior/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/highlighting-mode/webpack.config.js b/samples/charts/category-chart/highlighting-mode/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/highlighting-mode/webpack.config.js +++ b/samples/charts/category-chart/highlighting-mode/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index e8a763674e..ea97b08742 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/highlighting/webpack.config.js b/samples/charts/category-chart/highlighting/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/category-chart/highlighting/webpack.config.js +++ b/samples/charts/category-chart/highlighting/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/legend-highlighting/webpack.config.js b/samples/charts/category-chart/legend-highlighting/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/legend-highlighting/webpack.config.js +++ b/samples/charts/category-chart/legend-highlighting/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/line-chart-styling/webpack.config.js +++ b/samples/charts/category-chart/line-chart-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 6a9a12774f..42d0bff0cf 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/line-chart-with-animations/webpack.config.js b/samples/charts/category-chart/line-chart-with-animations/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/category-chart/line-chart-with-animations/webpack.config.js +++ b/samples/charts/category-chart/line-chart-with-animations/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 638e4f5584..ffbc22ae06 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/line-chart-with-annotations/webpack.config.js b/samples/charts/category-chart/line-chart-with-annotations/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/webpack.config.js +++ b/samples/charts/category-chart/line-chart-with-annotations/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/marker-options/webpack.config.js b/samples/charts/category-chart/marker-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/marker-options/webpack.config.js +++ b/samples/charts/category-chart/marker-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index 2f83e8863c..efc855b07b 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/marker-templates/webpack.config.js b/samples/charts/category-chart/marker-templates/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/category-chart/marker-templates/webpack.config.js +++ b/samples/charts/category-chart/marker-templates/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/overview/webpack.config.js b/samples/charts/category-chart/overview/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/overview/webpack.config.js +++ b/samples/charts/category-chart/overview/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/point-chart-styling/webpack.config.js +++ b/samples/charts/category-chart/point-chart-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/selection-modes/webpack.config.js b/samples/charts/category-chart/selection-modes/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/selection-modes/webpack.config.js +++ b/samples/charts/category-chart/selection-modes/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/selection-multiple-modes/webpack.config.js +++ b/samples/charts/category-chart/selection-multiple-modes/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/spline-area-styling/webpack.config.js +++ b/samples/charts/category-chart/spline-area-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/spline-multiple-sources/webpack.config.js +++ b/samples/charts/category-chart/spline-multiple-sources/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/spline-single-source/webpack.config.js +++ b/samples/charts/category-chart/spline-single-source/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/spline-styling/webpack.config.js b/samples/charts/category-chart/spline-styling/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/spline-styling/webpack.config.js +++ b/samples/charts/category-chart/spline-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index 3b4c647244..ee45c7298d 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/stack-columns/webpack.config.js b/samples/charts/category-chart/stack-columns/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/category-chart/stack-columns/webpack.config.js +++ b/samples/charts/category-chart/stack-columns/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/step-area-styling/webpack.config.js +++ b/samples/charts/category-chart/step-area-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/step-line-styling/webpack.config.js +++ b/samples/charts/category-chart/step-line-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index e1840c79be..6e3dcbc3bf 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/tooltip-template/webpack.config.js b/samples/charts/category-chart/tooltip-template/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/category-chart/tooltip-template/webpack.config.js +++ b/samples/charts/category-chart/tooltip-template/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index e1840c79be..6e3dcbc3bf 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/tooltip-types/webpack.config.js b/samples/charts/category-chart/tooltip-types/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/category-chart/tooltip-types/webpack.config.js +++ b/samples/charts/category-chart/tooltip-types/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index a247d7590c..dc6de32ec1 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/trendline/webpack.config.js b/samples/charts/category-chart/trendline/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/category-chart/trendline/webpack.config.js +++ b/samples/charts/category-chart/trendline/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/category-chart/value-lines/webpack.config.js b/samples/charts/category-chart/value-lines/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/category-chart/value-lines/webpack.config.js +++ b/samples/charts/category-chart/value-lines/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 839db43e93..b8c7ba65d8 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -23,21 +23,22 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-dashboards": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-dashboards": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/dashboard-tile/chart-dashboard/webpack.config.js b/samples/charts/dashboard-tile/chart-dashboard/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/webpack.config.js +++ b/samples/charts/dashboard-tile/chart-dashboard/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index 839db43e93..b8c7ba65d8 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -23,21 +23,22 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-dashboards": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-dashboards": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/dashboard-tile/financial-dashboard/webpack.config.js b/samples/charts/dashboard-tile/financial-dashboard/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/webpack.config.js +++ b/samples/charts/dashboard-tile/financial-dashboard/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 839db43e93..b8c7ba65d8 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -23,21 +23,22 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-dashboards": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-dashboards": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/webpack.config.js b/samples/charts/dashboard-tile/gauge-dashboard/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/webpack.config.js +++ b/samples/charts/dashboard-tile/gauge-dashboard/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 839db43e93..b8c7ba65d8 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -23,21 +23,22 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-dashboards": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-dashboards": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/dashboard-tile/map-dashboard/webpack.config.js b/samples/charts/dashboard-tile/map-dashboard/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/dashboard-tile/map-dashboard/webpack.config.js +++ b/samples/charts/dashboard-tile/map-dashboard/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 839db43e93..b8c7ba65d8 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -23,21 +23,22 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-dashboards": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-dashboards": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/dashboard-tile/pie-dashboard/webpack.config.js b/samples/charts/dashboard-tile/pie-dashboard/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/webpack.config.js +++ b/samples/charts/dashboard-tile/pie-dashboard/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/annotations-custom/webpack.config.js b/samples/charts/data-chart/annotations-custom/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/annotations-custom/webpack.config.js +++ b/samples/charts/data-chart/annotations-custom/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index 5d8cd63803..f951617f61 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/axis-annotations/webpack.config.js b/samples/charts/data-chart/axis-annotations/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/axis-annotations/webpack.config.js +++ b/samples/charts/data-chart/axis-annotations/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 07edc02480..0accb6a6fd 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/axis-crossing/webpack.config.js b/samples/charts/data-chart/axis-crossing/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/axis-crossing/webpack.config.js +++ b/samples/charts/data-chart/axis-crossing/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/axis-label-rotation/webpack.config.js +++ b/samples/charts/data-chart/axis-label-rotation/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 07edc02480..0accb6a6fd 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/axis-locations/webpack.config.js b/samples/charts/data-chart/axis-locations/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/axis-locations/webpack.config.js +++ b/samples/charts/data-chart/axis-locations/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index 96dbb75239..5b16b74b47 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/axis-settings/webpack.config.js b/samples/charts/data-chart/axis-settings/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/axis-settings/webpack.config.js +++ b/samples/charts/data-chart/axis-settings/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index e0a70376e8..a00331692c 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/axis-sharing/webpack.config.js b/samples/charts/data-chart/axis-sharing/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/axis-sharing/webpack.config.js +++ b/samples/charts/data-chart/axis-sharing/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index 5d69cca8ff..793c9665fc 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/axis-types/webpack.config.js b/samples/charts/data-chart/axis-types/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/axis-types/webpack.config.js +++ b/samples/charts/data-chart/axis-types/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/webpack.config.js +++ b/samples/charts/data-chart/bar-chart-overlapping/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/bar-chart-styling/webpack.config.js +++ b/samples/charts/data-chart/bar-chart-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/callout-layer-styling/webpack.config.js +++ b/samples/charts/data-chart/callout-layer-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/chart-highlight-filter/webpack.config.js +++ b/samples/charts/data-chart/chart-highlight-filter/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index ba330db753..942a2ad449 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/chart-navigation/webpack.config.js b/samples/charts/data-chart/chart-navigation/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/chart-navigation/webpack.config.js +++ b/samples/charts/data-chart/chart-navigation/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index c0a041e484..f00720f4ab 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/chart-overview/webpack.config.js b/samples/charts/data-chart/chart-overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/chart-overview/webpack.config.js +++ b/samples/charts/data-chart/chart-overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index c673650f86..30fcb2a97e 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/chart-performance/webpack.config.js b/samples/charts/data-chart/chart-performance/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/chart-performance/webpack.config.js +++ b/samples/charts/data-chart/chart-performance/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 393fad3844..a03c4ffce1 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/chart-synchronization/webpack.config.js b/samples/charts/data-chart/chart-synchronization/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/chart-synchronization/webpack.config.js +++ b/samples/charts/data-chart/chart-synchronization/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 7e563a6e22..6c061ac23c 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/chart-titles/webpack.config.js b/samples/charts/data-chart/chart-titles/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/chart-titles/webpack.config.js +++ b/samples/charts/data-chart/chart-titles/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index c0a041e484..f00720f4ab 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/composite-chart/webpack.config.js b/samples/charts/data-chart/composite-chart/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/composite-chart/webpack.config.js +++ b/samples/charts/data-chart/composite-chart/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 087759b6ce..6a205087a7 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/crosshair-layer-styling/webpack.config.js b/samples/charts/data-chart/crosshair-layer-styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/webpack.config.js +++ b/samples/charts/data-chart/crosshair-layer-styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 1ad9d6d0d2..795c51acde 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/custom-drawing-annotations/webpack.config.js b/samples/charts/data-chart/custom-drawing-annotations/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/webpack.config.js +++ b/samples/charts/data-chart/custom-drawing-annotations/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index f2e3cc26e3..358bac607d 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -26,15 +26,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/custom-editing-data/webpack.config.js b/samples/charts/data-chart/custom-editing-data/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/custom-editing-data/webpack.config.js +++ b/samples/charts/data-chart/custom-editing-data/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index f2e3cc26e3..358bac607d 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -26,15 +26,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/dash-array-axes/webpack.config.js b/samples/charts/data-chart/dash-array-axes/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/dash-array-axes/webpack.config.js +++ b/samples/charts/data-chart/dash-array-axes/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index f2e3cc26e3..358bac607d 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -26,15 +26,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/dash-array-series/webpack.config.js b/samples/charts/data-chart/dash-array-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/dash-array-series/webpack.config.js +++ b/samples/charts/data-chart/dash-array-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index f2e3cc26e3..358bac607d 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -26,15 +26,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/dash-array-tickmarks/webpack.config.js b/samples/charts/data-chart/dash-array-tickmarks/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/webpack.config.js +++ b/samples/charts/data-chart/dash-array-tickmarks/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index f2e3cc26e3..358bac607d 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -26,15 +26,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/dash-array-trendline/webpack.config.js b/samples/charts/data-chart/dash-array-trendline/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/dash-array-trendline/webpack.config.js +++ b/samples/charts/data-chart/dash-array-trendline/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/data-legend-grouping/webpack.config.js +++ b/samples/charts/data-chart/data-legend-grouping/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/data-legend-styling/webpack.config.js +++ b/samples/charts/data-chart/data-legend-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/data-legend/webpack.config.js b/samples/charts/data-chart/data-legend/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/data-legend/webpack.config.js +++ b/samples/charts/data-chart/data-legend/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index f409f6ba89..0c86b64aa1 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index f409f6ba89..0c86b64aa1 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/webpack.config.js +++ b/samples/charts/data-chart/data-tooltip-grouping/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index f409f6ba89..0c86b64aa1 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/data-tooltip-styling/webpack.config.js +++ b/samples/charts/data-chart/data-tooltip-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/data-tooltip/webpack.config.js b/samples/charts/data-chart/data-tooltip/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/data-tooltip/webpack.config.js +++ b/samples/charts/data-chart/data-tooltip/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index 124af4b0e0..567c2bd7de 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/final-value-layer-styling/webpack.config.js b/samples/charts/data-chart/final-value-layer-styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/final-value-layer-styling/webpack.config.js +++ b/samples/charts/data-chart/final-value-layer-styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/financial-price-series/webpack.config.js +++ b/samples/charts/data-chart/financial-price-series/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index f2e3cc26e3..358bac607d 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -26,15 +26,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/format-specifiers/webpack.config.js b/samples/charts/data-chart/format-specifiers/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/format-specifiers/webpack.config.js +++ b/samples/charts/data-chart/format-specifiers/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 6f9fd8c78d..b6241db9dc 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/legends/webpack.config.js b/samples/charts/data-chart/legends/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/legends/webpack.config.js +++ b/samples/charts/data-chart/legends/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/polar-area-chart/webpack.config.js +++ b/samples/charts/data-chart/polar-area-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 3f4fb12e3c..f00072c88c 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/polar-chart-types/webpack.config.js b/samples/charts/data-chart/polar-chart-types/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/polar-chart-types/webpack.config.js +++ b/samples/charts/data-chart/polar-chart-types/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/polar-line-chart/webpack.config.js +++ b/samples/charts/data-chart/polar-line-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/polar-scatter-chart/webpack.config.js +++ b/samples/charts/data-chart/polar-scatter-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/polar-spline-chart/webpack.config.js +++ b/samples/charts/data-chart/polar-spline-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/radial-area-chart/webpack.config.js +++ b/samples/charts/data-chart/radial-area-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index ed8d1a579c..848066c15c 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/radial-chart-types/webpack.config.js b/samples/charts/data-chart/radial-chart-types/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/radial-chart-types/webpack.config.js +++ b/samples/charts/data-chart/radial-chart-types/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/radial-column-chart/webpack.config.js +++ b/samples/charts/data-chart/radial-column-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/radial-label-mode/webpack.config.js +++ b/samples/charts/data-chart/radial-label-mode/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/radial-line-chart/webpack.config.js +++ b/samples/charts/data-chart/radial-line-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/radial-pie-chart/webpack.config.js +++ b/samples/charts/data-chart/radial-pie-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/range-area-chart/webpack.config.js +++ b/samples/charts/data-chart/range-area-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/range-column-chart/webpack.config.js +++ b/samples/charts/data-chart/range-column-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/scatter-line-chart/webpack.config.js +++ b/samples/charts/data-chart/scatter-line-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/scatter-point-chart/webpack.config.js +++ b/samples/charts/data-chart/scatter-point-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/scatter-spline-chart/webpack.config.js +++ b/samples/charts/data-chart/scatter-spline-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/selection-matcher/package.json b/samples/charts/data-chart/selection-matcher/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/selection-matcher/package.json +++ b/samples/charts/data-chart/selection-matcher/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/selection-matcher/webpack.config.js b/samples/charts/data-chart/selection-matcher/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/selection-matcher/webpack.config.js +++ b/samples/charts/data-chart/selection-matcher/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/series-animations/package.json b/samples/charts/data-chart/series-animations/package.json index 02c014f24f..610313bb19 100644 --- a/samples/charts/data-chart/series-animations/package.json +++ b/samples/charts/data-chart/series-animations/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/series-animations/webpack.config.js b/samples/charts/data-chart/series-animations/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/series-animations/webpack.config.js +++ b/samples/charts/data-chart/series-animations/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index 058170d5ec..9a15df8ecb 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/series-annotations/webpack.config.js b/samples/charts/data-chart/series-annotations/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/series-annotations/webpack.config.js +++ b/samples/charts/data-chart/series-annotations/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/series-error-bars/package.json b/samples/charts/data-chart/series-error-bars/package.json index b6698e9201..0b64a51a59 100644 --- a/samples/charts/data-chart/series-error-bars/package.json +++ b/samples/charts/data-chart/series-error-bars/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/series-error-bars/webpack.config.js b/samples/charts/data-chart/series-error-bars/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/series-error-bars/webpack.config.js +++ b/samples/charts/data-chart/series-error-bars/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index 3b41d9cc5a..e1d675f2d0 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/series-highlighting/webpack.config.js b/samples/charts/data-chart/series-highlighting/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/series-highlighting/webpack.config.js +++ b/samples/charts/data-chart/series-highlighting/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index a47e837869..09d502b9c9 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/series-marker-template/webpack.config.js b/samples/charts/data-chart/series-marker-template/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/series-marker-template/webpack.config.js +++ b/samples/charts/data-chart/series-marker-template/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 7ff62a8a82..538743ceef 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/series-markers/webpack.config.js b/samples/charts/data-chart/series-markers/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/series-markers/webpack.config.js +++ b/samples/charts/data-chart/series-markers/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index 64c52565e2..c0957e610c 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/series-tooltips/webpack.config.js b/samples/charts/data-chart/series-tooltips/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/series-tooltips/webpack.config.js +++ b/samples/charts/data-chart/series-tooltips/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index a4f025dc4d..01e147753d 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/series-trendlines/webpack.config.js b/samples/charts/data-chart/series-trendlines/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/series-trendlines/webpack.config.js +++ b/samples/charts/data-chart/series-trendlines/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index 9a1ad971a9..de5879cdbd 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/series-value-overlay/webpack.config.js b/samples/charts/data-chart/series-value-overlay/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/series-value-overlay/webpack.config.js +++ b/samples/charts/data-chart/series-value-overlay/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/stacked-area-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-area-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/stacked-bar-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-bar-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index 99e5d7c8a9..4f2900372a 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/stacked-chart-types/webpack.config.js b/samples/charts/data-chart/stacked-chart-types/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/stacked-chart-types/webpack.config.js +++ b/samples/charts/data-chart/stacked-chart-types/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/stacked-column-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-column-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/stacked-line-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-line-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/stacked-spline-chart/webpack.config.js +++ b/samples/charts/data-chart/stacked-spline-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index 788a6cfd9f..a1236832c0 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/tooltip-template/webpack.config.js b/samples/charts/data-chart/tooltip-template/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/tooltip-template/webpack.config.js +++ b/samples/charts/data-chart/tooltip-template/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/transition-event/webpack.config.js b/samples/charts/data-chart/transition-event/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/transition-event/webpack.config.js +++ b/samples/charts/data-chart/transition-event/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 3d8fdf473b..9046753887 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/webpack.config.js b/samples/charts/data-chart/type-financial-candlestick-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/webpack.config.js +++ b/samples/charts/data-chart/type-financial-candlestick-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-financial-indicator-column/package.json b/samples/charts/data-chart/type-financial-indicator-column/package.json index fb12ed95cf..a82ad0f9cf 100644 --- a/samples/charts/data-chart/type-financial-indicator-column/package.json +++ b/samples/charts/data-chart/type-financial-indicator-column/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-financial-indicator-column/webpack.config.js b/samples/charts/data-chart/type-financial-indicator-column/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-financial-indicator-column/webpack.config.js +++ b/samples/charts/data-chart/type-financial-indicator-column/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-financial-indicator-line/package.json b/samples/charts/data-chart/type-financial-indicator-line/package.json index 402403bf67..20d9e3b6c6 100644 --- a/samples/charts/data-chart/type-financial-indicator-line/package.json +++ b/samples/charts/data-chart/type-financial-indicator-line/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-financial-indicator-line/webpack.config.js b/samples/charts/data-chart/type-financial-indicator-line/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-financial-indicator-line/webpack.config.js +++ b/samples/charts/data-chart/type-financial-indicator-line/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 072e48195c..8c237e3d6c 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-financial-ohlc-series/webpack.config.js b/samples/charts/data-chart/type-financial-ohlc-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/webpack.config.js +++ b/samples/charts/data-chart/type-financial-ohlc-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index e37b463808..a8e14f7d74 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-financial-overlays/webpack.config.js b/samples/charts/data-chart/type-financial-overlays/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-financial-overlays/webpack.config.js +++ b/samples/charts/data-chart/type-financial-overlays/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 62cd84d0cd..438f7ef8f2 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-financial-series/webpack.config.js b/samples/charts/data-chart/type-financial-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-financial-series/webpack.config.js +++ b/samples/charts/data-chart/type-financial-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index aa6839574c..e2139bd406 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-range-area-series/webpack.config.js b/samples/charts/data-chart/type-range-area-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-range-area-series/webpack.config.js +++ b/samples/charts/data-chart/type-range-area-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index ec399964c1..ae08f2d959 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-range-column-series/webpack.config.js b/samples/charts/data-chart/type-range-column-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-range-column-series/webpack.config.js +++ b/samples/charts/data-chart/type-range-column-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index b0b32f376c..e7f99447be 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-range-series/webpack.config.js b/samples/charts/data-chart/type-range-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-range-series/webpack.config.js +++ b/samples/charts/data-chart/type-range-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 967902cd3e..2866549e07 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-scatter-area-series/webpack.config.js b/samples/charts/data-chart/type-scatter-area-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-scatter-area-series/webpack.config.js +++ b/samples/charts/data-chart/type-scatter-area-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index 99f9cfc2d3..69f5a17e69 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-scatter-bubble-series/webpack.config.js b/samples/charts/data-chart/type-scatter-bubble-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/webpack.config.js +++ b/samples/charts/data-chart/type-scatter-bubble-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index c747b38758..9413e0e6e0 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-scatter-contour-series/webpack.config.js b/samples/charts/data-chart/type-scatter-contour-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/webpack.config.js +++ b/samples/charts/data-chart/type-scatter-contour-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 1f096bba5e..e79f8cfd0a 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-scatter-hd-series/webpack.config.js b/samples/charts/data-chart/type-scatter-hd-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/webpack.config.js +++ b/samples/charts/data-chart/type-scatter-hd-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 295f4db306..a2c070033c 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-scatter-polygon-series/webpack.config.js b/samples/charts/data-chart/type-scatter-polygon-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/webpack.config.js +++ b/samples/charts/data-chart/type-scatter-polygon-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index 9f2e2dd9bc..3a85c36429 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-scatter-polyline-series/webpack.config.js b/samples/charts/data-chart/type-scatter-polyline-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/webpack.config.js +++ b/samples/charts/data-chart/type-scatter-polyline-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index 29684a8976..12806ce05d 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-scatter-series/webpack.config.js b/samples/charts/data-chart/type-scatter-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-scatter-series/webpack.config.js +++ b/samples/charts/data-chart/type-scatter-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 791fdc8cef..29a24f9647 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/type-shape-series/webpack.config.js b/samples/charts/data-chart/type-shape-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/data-chart/type-shape-series/webpack.config.js +++ b/samples/charts/data-chart/type-shape-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-chart/waterfall-chart/webpack.config.js b/samples/charts/data-chart/waterfall-chart/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-chart/waterfall-chart/webpack.config.js +++ b/samples/charts/data-chart/waterfall-chart/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/data-pie-chart/animation-replay/package.json +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-pie-chart/animation-replay/webpack.config.js b/samples/charts/data-pie-chart/animation-replay/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-pie-chart/animation-replay/webpack.config.js +++ b/samples/charts/data-pie-chart/animation-replay/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-pie-chart/animation/webpack.config.js b/samples/charts/data-pie-chart/animation/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-pie-chart/animation/webpack.config.js +++ b/samples/charts/data-pie-chart/animation/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-pie-chart/highlight-filter/webpack.config.js +++ b/samples/charts/data-pie-chart/highlight-filter/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-pie-chart/highlighting/webpack.config.js b/samples/charts/data-pie-chart/highlighting/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-pie-chart/highlighting/webpack.config.js +++ b/samples/charts/data-pie-chart/highlighting/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index f409f6ba89..0c86b64aa1 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-pie-chart/legend/webpack.config.js b/samples/charts/data-pie-chart/legend/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-pie-chart/legend/webpack.config.js +++ b/samples/charts/data-pie-chart/legend/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-pie-chart/others/webpack.config.js b/samples/charts/data-pie-chart/others/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-pie-chart/others/webpack.config.js +++ b/samples/charts/data-pie-chart/others/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-pie-chart/overview/webpack.config.js b/samples/charts/data-pie-chart/overview/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-pie-chart/overview/webpack.config.js +++ b/samples/charts/data-pie-chart/overview/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/data-pie-chart/selection/webpack.config.js b/samples/charts/data-pie-chart/selection/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/data-pie-chart/selection/webpack.config.js +++ b/samples/charts/data-pie-chart/selection/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index a959d0fb15..fe77a398a9 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/doughnut-chart/animation/webpack.config.js b/samples/charts/doughnut-chart/animation/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/doughnut-chart/animation/webpack.config.js +++ b/samples/charts/doughnut-chart/animation/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 14a5bd0143..b50ee149f9 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/doughnut-chart/explosion/webpack.config.js b/samples/charts/doughnut-chart/explosion/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/doughnut-chart/explosion/webpack.config.js +++ b/samples/charts/doughnut-chart/explosion/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/doughnut-chart/legend/webpack.config.js b/samples/charts/doughnut-chart/legend/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/doughnut-chart/legend/webpack.config.js +++ b/samples/charts/doughnut-chart/legend/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/doughnut-chart/overview/webpack.config.js b/samples/charts/doughnut-chart/overview/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/doughnut-chart/overview/webpack.config.js +++ b/samples/charts/doughnut-chart/overview/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/doughnut-chart/rings/webpack.config.js b/samples/charts/doughnut-chart/rings/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/doughnut-chart/rings/webpack.config.js +++ b/samples/charts/doughnut-chart/rings/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index cd9870b9f7..dc05e62d91 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/doughnut-chart/selection/webpack.config.js b/samples/charts/doughnut-chart/selection/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/doughnut-chart/selection/webpack.config.js +++ b/samples/charts/doughnut-chart/selection/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 3d9718954c..3569810e27 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/annotations/webpack.config.js b/samples/charts/financial-chart/annotations/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/annotations/webpack.config.js +++ b/samples/charts/financial-chart/annotations/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 4fa3ae880b..dc062b3638 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/axis-types/webpack.config.js b/samples/charts/financial-chart/axis-types/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/axis-types/webpack.config.js +++ b/samples/charts/financial-chart/axis-types/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/data-legend/webpack.config.js b/samples/charts/financial-chart/data-legend/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/financial-chart/data-legend/webpack.config.js +++ b/samples/charts/financial-chart/data-legend/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/data-tooltip/webpack.config.js b/samples/charts/financial-chart/data-tooltip/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/financial-chart/data-tooltip/webpack.config.js +++ b/samples/charts/financial-chart/data-tooltip/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/format-specifiers/webpack.config.js b/samples/charts/financial-chart/format-specifiers/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/financial-chart/format-specifiers/webpack.config.js +++ b/samples/charts/financial-chart/format-specifiers/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index fc2c5f0f58..69371b34f0 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/high-frequency/webpack.config.js b/samples/charts/financial-chart/high-frequency/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/high-frequency/webpack.config.js +++ b/samples/charts/financial-chart/high-frequency/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 7c91786b22..fc3857c041 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/high-volume/webpack.config.js b/samples/charts/financial-chart/high-volume/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/high-volume/webpack.config.js +++ b/samples/charts/financial-chart/high-volume/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index b1957caced..333cbe3925 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/indicator-customization/webpack.config.js b/samples/charts/financial-chart/indicator-customization/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/indicator-customization/webpack.config.js +++ b/samples/charts/financial-chart/indicator-customization/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 296e1f4597..434b106864 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/indicator-types/webpack.config.js b/samples/charts/financial-chart/indicator-types/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/indicator-types/webpack.config.js +++ b/samples/charts/financial-chart/indicator-types/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index f4ad257990..c5bb6299b0 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/multiple-data/webpack.config.js b/samples/charts/financial-chart/multiple-data/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/multiple-data/webpack.config.js +++ b/samples/charts/financial-chart/multiple-data/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index fce6ec37db..22e37ff1aa 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/overview/webpack.config.js b/samples/charts/financial-chart/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/overview/webpack.config.js +++ b/samples/charts/financial-chart/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index ababdf1967..5b7e6c4593 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/panes/webpack.config.js b/samples/charts/financial-chart/panes/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/panes/webpack.config.js +++ b/samples/charts/financial-chart/panes/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index d1908da8b0..b3e2582d22 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/performance/webpack.config.js b/samples/charts/financial-chart/performance/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/performance/webpack.config.js +++ b/samples/charts/financial-chart/performance/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/scrollbars/webpack.config.js b/samples/charts/financial-chart/scrollbars/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/financial-chart/scrollbars/webpack.config.js +++ b/samples/charts/financial-chart/scrollbars/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index 8e579c1c0d..ffd738e20f 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/stock-index-chart/webpack.config.js b/samples/charts/financial-chart/stock-index-chart/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/stock-index-chart/webpack.config.js +++ b/samples/charts/financial-chart/stock-index-chart/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 90c8dc836d..06c4bf628a 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/styling/webpack.config.js b/samples/charts/financial-chart/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/styling/webpack.config.js +++ b/samples/charts/financial-chart/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 071f6f1114..6e1716db9b 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/titles/webpack.config.js b/samples/charts/financial-chart/titles/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/titles/webpack.config.js +++ b/samples/charts/financial-chart/titles/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 20dce07961..7be382a61f 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/tooltip-types/webpack.config.js b/samples/charts/financial-chart/tooltip-types/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/tooltip-types/webpack.config.js +++ b/samples/charts/financial-chart/tooltip-types/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 39dce02e25..04b7d9ecb1 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/trendlines/webpack.config.js b/samples/charts/financial-chart/trendlines/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/trendlines/webpack.config.js +++ b/samples/charts/financial-chart/trendlines/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 044f27edfd..7d2792557e 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/financial-chart/volume-types/webpack.config.js b/samples/charts/financial-chart/volume-types/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/financial-chart/volume-types/webpack.config.js +++ b/samples/charts/financial-chart/volume-types/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index c3960dba6e..3d29c2fabe 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/pie-chart/animation/webpack.config.js b/samples/charts/pie-chart/animation/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/pie-chart/animation/webpack.config.js +++ b/samples/charts/pie-chart/animation/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 88122f74d9..23206a1964 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/pie-chart/explosion/webpack.config.js b/samples/charts/pie-chart/explosion/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/pie-chart/explosion/webpack.config.js +++ b/samples/charts/pie-chart/explosion/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/pie-chart/legend/webpack.config.js b/samples/charts/pie-chart/legend/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/pie-chart/legend/webpack.config.js +++ b/samples/charts/pie-chart/legend/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/pie-chart/others/webpack.config.js b/samples/charts/pie-chart/others/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/pie-chart/others/webpack.config.js +++ b/samples/charts/pie-chart/others/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/pie-chart/overview/webpack.config.js b/samples/charts/pie-chart/overview/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/pie-chart/overview/webpack.config.js +++ b/samples/charts/pie-chart/overview/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index 19aef334e7..436940a13a 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/pie-chart/selection/webpack.config.js b/samples/charts/pie-chart/selection/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/pie-chart/selection/webpack.config.js +++ b/samples/charts/pie-chart/selection/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/pie-chart/styling/webpack.config.js b/samples/charts/pie-chart/styling/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/pie-chart/styling/webpack.config.js +++ b/samples/charts/pie-chart/styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/sparkline/display-area/webpack.config.js b/samples/charts/sparkline/display-area/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/sparkline/display-area/webpack.config.js +++ b/samples/charts/sparkline/display-area/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/sparkline/display-column/webpack.config.js b/samples/charts/sparkline/display-column/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/sparkline/display-column/webpack.config.js +++ b/samples/charts/sparkline/display-column/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index f409f6ba89..0c86b64aa1 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/sparkline/display-lines/webpack.config.js b/samples/charts/sparkline/display-lines/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/sparkline/display-lines/webpack.config.js +++ b/samples/charts/sparkline/display-lines/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index db53992535..1dbb8c49a8 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/sparkline/display-types/webpack.config.js b/samples/charts/sparkline/display-types/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/sparkline/display-types/webpack.config.js +++ b/samples/charts/sparkline/display-types/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/sparkline/display-winloss/webpack.config.js b/samples/charts/sparkline/display-winloss/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/sparkline/display-winloss/webpack.config.js +++ b/samples/charts/sparkline/display-winloss/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index f7a99045db..bb6f1fe375 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -23,18 +23,19 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/sparkline/grid/webpack.config.js b/samples/charts/sparkline/grid/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/sparkline/grid/webpack.config.js +++ b/samples/charts/sparkline/grid/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/sparkline/markers/webpack.config.js b/samples/charts/sparkline/markers/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/sparkline/markers/webpack.config.js +++ b/samples/charts/sparkline/markers/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/sparkline/normal-range/webpack.config.js b/samples/charts/sparkline/normal-range/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/sparkline/normal-range/webpack.config.js +++ b/samples/charts/sparkline/normal-range/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/sparkline/trendlines/webpack.config.js b/samples/charts/sparkline/trendlines/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/sparkline/trendlines/webpack.config.js +++ b/samples/charts/sparkline/trendlines/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/sparkline/unknown-values/webpack.config.js b/samples/charts/sparkline/unknown-values/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/sparkline/unknown-values/webpack.config.js +++ b/samples/charts/sparkline/unknown-values/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index f409f6ba89..0c86b64aa1 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index f409f6ba89..0c86b64aa1 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index f409f6ba89..0c86b64aa1 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/toolbar/color-editor-support/webpack.config.js b/samples/charts/toolbar/color-editor-support/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/toolbar/color-editor-support/webpack.config.js +++ b/samples/charts/toolbar/color-editor-support/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index f409f6ba89..0c86b64aa1 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/toolbar/custom-tool/webpack.config.js b/samples/charts/toolbar/custom-tool/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/toolbar/custom-tool/webpack.config.js +++ b/samples/charts/toolbar/custom-tool/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index f409f6ba89..0c86b64aa1 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index f409f6ba89..0c86b64aa1 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/webpack.config.js +++ b/samples/charts/toolbar/layout-in-vertical-orientation/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/toolbar/theming/webpack.config.js b/samples/charts/toolbar/theming/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/toolbar/theming/webpack.config.js +++ b/samples/charts/toolbar/theming/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index 652a4c39ec..660055fcfd 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/tree-map/events/webpack.config.js b/samples/charts/tree-map/events/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/tree-map/events/webpack.config.js +++ b/samples/charts/tree-map/events/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/charts/tree-map/highlighting-percent-based/webpack.config.js +++ b/samples/charts/tree-map/highlighting-percent-based/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/tree-map/highlighting/webpack.config.js b/samples/charts/tree-map/highlighting/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/tree-map/highlighting/webpack.config.js +++ b/samples/charts/tree-map/highlighting/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 84b45d65b3..1397268d07 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/tree-map/layout/webpack.config.js b/samples/charts/tree-map/layout/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/tree-map/layout/webpack.config.js +++ b/samples/charts/tree-map/layout/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/tree-map/overview/webpack.config.js b/samples/charts/tree-map/overview/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/tree-map/overview/webpack.config.js +++ b/samples/charts/tree-map/overview/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 978b6ce2d5..41360f32e8 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/tree-map/styling/webpack.config.js b/samples/charts/tree-map/styling/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/charts/tree-map/styling/webpack.config.js +++ b/samples/charts/tree-map/styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index c97e7d3eb3..5b65e4792f 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/charts/zoomslider/overview/webpack.config.js b/samples/charts/zoomslider/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/charts/zoomslider/overview/webpack.config.js +++ b/samples/charts/zoomslider/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/editors/multi-column-combobox/overview/package.json b/samples/editors/multi-column-combobox/overview/package.json index 21490592b1..55ec6b7271 100644 --- a/samples/editors/multi-column-combobox/overview/package.json +++ b/samples/editors/multi-column-combobox/overview/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/editors/multi-column-combobox/overview/webpack.config.js b/samples/editors/multi-column-combobox/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/editors/multi-column-combobox/overview/webpack.config.js +++ b/samples/editors/multi-column-combobox/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/editors/x-date-picker/date-limits/package.json b/samples/editors/x-date-picker/date-limits/package.json index 0a27bae9b8..c52615caed 100644 --- a/samples/editors/x-date-picker/date-limits/package.json +++ b/samples/editors/x-date-picker/date-limits/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/editors/x-date-picker/date-limits/webpack.config.js b/samples/editors/x-date-picker/date-limits/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/editors/x-date-picker/date-limits/webpack.config.js +++ b/samples/editors/x-date-picker/date-limits/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/editors/x-date-picker/editing/package.json b/samples/editors/x-date-picker/editing/package.json index bcf38fbcbc..78238bc4f3 100644 --- a/samples/editors/x-date-picker/editing/package.json +++ b/samples/editors/x-date-picker/editing/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/editors/x-date-picker/editing/webpack.config.js b/samples/editors/x-date-picker/editing/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/editors/x-date-picker/editing/webpack.config.js +++ b/samples/editors/x-date-picker/editing/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/editors/x-date-picker/format/package.json b/samples/editors/x-date-picker/format/package.json index 9a2413512b..a1e8a37424 100644 --- a/samples/editors/x-date-picker/format/package.json +++ b/samples/editors/x-date-picker/format/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/editors/x-date-picker/format/webpack.config.js b/samples/editors/x-date-picker/format/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/editors/x-date-picker/format/webpack.config.js +++ b/samples/editors/x-date-picker/format/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/editors/x-date-picker/overview/package.json b/samples/editors/x-date-picker/overview/package.json index 53e13d544f..90cb76784e 100644 --- a/samples/editors/x-date-picker/overview/package.json +++ b/samples/editors/x-date-picker/overview/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/editors/x-date-picker/overview/webpack.config.js b/samples/editors/x-date-picker/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/editors/x-date-picker/overview/webpack.config.js +++ b/samples/editors/x-date-picker/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/editors/x-date-picker/range/package.json b/samples/editors/x-date-picker/range/package.json index 5a413f1ef6..f335b2bae9 100644 --- a/samples/editors/x-date-picker/range/package.json +++ b/samples/editors/x-date-picker/range/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/editors/x-date-picker/range/webpack.config.js b/samples/editors/x-date-picker/range/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/editors/x-date-picker/range/webpack.config.js +++ b/samples/editors/x-date-picker/range/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index e97667ebf1..08beba6e76 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -25,18 +25,19 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/excel-library/operations-on-workbooks/webpack.config.js b/samples/excel/excel-library/operations-on-workbooks/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/excel-library/operations-on-workbooks/webpack.config.js +++ b/samples/excel/excel-library/operations-on-workbooks/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index 414fd39f10..1ba6dc5f4b 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -25,15 +25,16 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/excel-library/operations-on-worksheets/webpack.config.js b/samples/excel/excel-library/operations-on-worksheets/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/excel-library/operations-on-worksheets/webpack.config.js +++ b/samples/excel/excel-library/operations-on-worksheets/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index d842709bd5..a3456ddfc9 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -25,15 +25,16 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/excel-library/overview/webpack.config.js b/samples/excel/excel-library/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/excel-library/overview/webpack.config.js +++ b/samples/excel/excel-library/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index edf89751b3..33e9709ddb 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -25,15 +25,16 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/excel-library/working-with-cells/webpack.config.js b/samples/excel/excel-library/working-with-cells/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/excel-library/working-with-cells/webpack.config.js +++ b/samples/excel/excel-library/working-with-cells/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index a15ae48385..81e76d0c77 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -25,19 +25,20 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/excel-library/working-with-charts/webpack.config.js b/samples/excel/excel-library/working-with-charts/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/excel-library/working-with-charts/webpack.config.js +++ b/samples/excel/excel-library/working-with-charts/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index a73e0a703c..10371d31cf 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -25,19 +25,20 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/excel-library/working-with-sparklines/webpack.config.js b/samples/excel/excel-library/working-with-sparklines/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/excel-library/working-with-sparklines/webpack.config.js +++ b/samples/excel/excel-library/working-with-sparklines/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 7c77cecd14..24ef52218d 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -25,16 +25,17 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/spreadsheet/activation/webpack.config.js b/samples/excel/spreadsheet/activation/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/spreadsheet/activation/webpack.config.js +++ b/samples/excel/spreadsheet/activation/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index b6075ec4cf..b3b27ae9d6 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -25,18 +25,19 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/spreadsheet/adapter-chart/webpack.config.js b/samples/excel/spreadsheet/adapter-chart/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/spreadsheet/adapter-chart/webpack.config.js +++ b/samples/excel/spreadsheet/adapter-chart/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index bac85c9309..c6924f082e 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -23,18 +23,19 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", - "igniteui-webcomponents-spreadsheet-chart-adapter": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet-chart-adapter": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/spreadsheet/adapter-combo/webpack.config.js b/samples/excel/spreadsheet/adapter-combo/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/spreadsheet/adapter-combo/webpack.config.js +++ b/samples/excel/spreadsheet/adapter-combo/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index ba4538a1ca..0ce49d1d27 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -25,16 +25,17 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/spreadsheet/clipboard/webpack.config.js b/samples/excel/spreadsheet/clipboard/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/spreadsheet/clipboard/webpack.config.js +++ b/samples/excel/spreadsheet/clipboard/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 792eb49216..0d666ceca4 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -25,16 +25,17 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/spreadsheet/commands/webpack.config.js b/samples/excel/spreadsheet/commands/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/spreadsheet/commands/webpack.config.js +++ b/samples/excel/spreadsheet/commands/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index f4ba8a4fb2..809d6a0a00 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -25,16 +25,17 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/spreadsheet/conditional-formatting/webpack.config.js b/samples/excel/spreadsheet/conditional-formatting/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/spreadsheet/conditional-formatting/webpack.config.js +++ b/samples/excel/spreadsheet/conditional-formatting/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 8645738acd..b912a91ff8 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -25,16 +25,17 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/spreadsheet/config-options/webpack.config.js b/samples/excel/spreadsheet/config-options/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/spreadsheet/config-options/webpack.config.js +++ b/samples/excel/spreadsheet/config-options/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 5c266d0f7b..fc14f94071 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/spreadsheet/data-validation/webpack.config.js b/samples/excel/spreadsheet/data-validation/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/spreadsheet/data-validation/webpack.config.js +++ b/samples/excel/spreadsheet/data-validation/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/spreadsheet/filter-dialog/package.json b/samples/excel/spreadsheet/filter-dialog/package.json index 4c91a8e038..7b5784dfd6 100644 --- a/samples/excel/spreadsheet/filter-dialog/package.json +++ b/samples/excel/spreadsheet/filter-dialog/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/spreadsheet/filter-dialog/webpack.config.js b/samples/excel/spreadsheet/filter-dialog/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/spreadsheet/filter-dialog/webpack.config.js +++ b/samples/excel/spreadsheet/filter-dialog/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/spreadsheet/format-dialog/package.json b/samples/excel/spreadsheet/format-dialog/package.json index 3d8529d2a9..1969329f47 100644 --- a/samples/excel/spreadsheet/format-dialog/package.json +++ b/samples/excel/spreadsheet/format-dialog/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/spreadsheet/format-dialog/webpack.config.js b/samples/excel/spreadsheet/format-dialog/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/spreadsheet/format-dialog/webpack.config.js +++ b/samples/excel/spreadsheet/format-dialog/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 8113635ee8..25c56debce 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -25,16 +25,17 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/spreadsheet/hyperlinks/webpack.config.js b/samples/excel/spreadsheet/hyperlinks/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/spreadsheet/hyperlinks/webpack.config.js +++ b/samples/excel/spreadsheet/hyperlinks/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index bf5b7e4dc5..9d4dbb22a3 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -25,16 +25,17 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "file-saver": "^1.3.8", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/spreadsheet/overview/webpack.config.js b/samples/excel/spreadsheet/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/spreadsheet/overview/webpack.config.js +++ b/samples/excel/spreadsheet/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/excel/spreadsheet/sort-dialog/package.json b/samples/excel/spreadsheet/sort-dialog/package.json index e52d806f60..90aa5b0338 100644 --- a/samples/excel/spreadsheet/sort-dialog/package.json +++ b/samples/excel/spreadsheet/sort-dialog/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-excel": "5.2.0", - "igniteui-webcomponents-spreadsheet": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-excel": "5.2.1-beta.0", + "igniteui-webcomponents-spreadsheet": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/excel/spreadsheet/sort-dialog/webpack.config.js b/samples/excel/spreadsheet/sort-dialog/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/excel/spreadsheet/sort-dialog/webpack.config.js +++ b/samples/excel/spreadsheet/sort-dialog/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 42b0239a38..05c997bab6 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/bullet-graph/animation/webpack.config.js b/samples/gauges/bullet-graph/animation/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/bullet-graph/animation/webpack.config.js +++ b/samples/gauges/bullet-graph/animation/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index e14dd41029..f145973d9a 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/bullet-graph/background/webpack.config.js b/samples/gauges/bullet-graph/background/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/bullet-graph/background/webpack.config.js +++ b/samples/gauges/bullet-graph/background/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index a80289f0b6..729152ffeb 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/bullet-graph/highlight-needle/webpack.config.js b/samples/gauges/bullet-graph/highlight-needle/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/bullet-graph/highlight-needle/webpack.config.js +++ b/samples/gauges/bullet-graph/highlight-needle/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 718bf8ffb9..dd9399678c 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/bullet-graph/labels/webpack.config.js b/samples/gauges/bullet-graph/labels/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/bullet-graph/labels/webpack.config.js +++ b/samples/gauges/bullet-graph/labels/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index dd894ba399..e7a444f840 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/bullet-graph/measures/webpack.config.js b/samples/gauges/bullet-graph/measures/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/bullet-graph/measures/webpack.config.js +++ b/samples/gauges/bullet-graph/measures/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index dc810d0970..7701719b24 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/bullet-graph/ranges/webpack.config.js b/samples/gauges/bullet-graph/ranges/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/bullet-graph/ranges/webpack.config.js +++ b/samples/gauges/bullet-graph/ranges/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index c6cbed2a5a..d4d340d07e 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/bullet-graph/scale/webpack.config.js b/samples/gauges/bullet-graph/scale/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/bullet-graph/scale/webpack.config.js +++ b/samples/gauges/bullet-graph/scale/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index a6db447ea9..21dd04cdef 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/bullet-graph/tickmarks/webpack.config.js b/samples/gauges/bullet-graph/tickmarks/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/bullet-graph/tickmarks/webpack.config.js +++ b/samples/gauges/bullet-graph/tickmarks/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/bullet-graph/type-filled/package.json b/samples/gauges/bullet-graph/type-filled/package.json index 7b6ad5ad0f..fa1cf10e79 100644 --- a/samples/gauges/bullet-graph/type-filled/package.json +++ b/samples/gauges/bullet-graph/type-filled/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/bullet-graph/type-filled/webpack.config.js b/samples/gauges/bullet-graph/type-filled/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/bullet-graph/type-filled/webpack.config.js +++ b/samples/gauges/bullet-graph/type-filled/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/bullet-graph/type-horizontal/package.json b/samples/gauges/bullet-graph/type-horizontal/package.json index b60087e425..fe3d318b30 100644 --- a/samples/gauges/bullet-graph/type-horizontal/package.json +++ b/samples/gauges/bullet-graph/type-horizontal/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/bullet-graph/type-horizontal/webpack.config.js b/samples/gauges/bullet-graph/type-horizontal/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/bullet-graph/type-horizontal/webpack.config.js +++ b/samples/gauges/bullet-graph/type-horizontal/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/bullet-graph/type-reversed/package.json b/samples/gauges/bullet-graph/type-reversed/package.json index ae9997c0a5..9b5f588468 100644 --- a/samples/gauges/bullet-graph/type-reversed/package.json +++ b/samples/gauges/bullet-graph/type-reversed/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/bullet-graph/type-reversed/webpack.config.js b/samples/gauges/bullet-graph/type-reversed/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/bullet-graph/type-reversed/webpack.config.js +++ b/samples/gauges/bullet-graph/type-reversed/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/bullet-graph/type-segmented/package.json b/samples/gauges/bullet-graph/type-segmented/package.json index 86aee69db0..3a2f0a808e 100644 --- a/samples/gauges/bullet-graph/type-segmented/package.json +++ b/samples/gauges/bullet-graph/type-segmented/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/bullet-graph/type-segmented/webpack.config.js b/samples/gauges/bullet-graph/type-segmented/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/bullet-graph/type-segmented/webpack.config.js +++ b/samples/gauges/bullet-graph/type-segmented/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/bullet-graph/type-vertical/package.json b/samples/gauges/bullet-graph/type-vertical/package.json index 9df5003df8..9ee8ee7919 100644 --- a/samples/gauges/bullet-graph/type-vertical/package.json +++ b/samples/gauges/bullet-graph/type-vertical/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/bullet-graph/type-vertical/webpack.config.js b/samples/gauges/bullet-graph/type-vertical/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/bullet-graph/type-vertical/webpack.config.js +++ b/samples/gauges/bullet-graph/type-vertical/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index 282b82f9fc..848bb9691a 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/animation/webpack.config.js b/samples/gauges/linear-gauge/animation/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/animation/webpack.config.js +++ b/samples/gauges/linear-gauge/animation/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 04932bfa35..5221e27ebc 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/backing/webpack.config.js b/samples/gauges/linear-gauge/backing/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/backing/webpack.config.js +++ b/samples/gauges/linear-gauge/backing/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index fe0a1652e7..fe143375dc 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/highlight-needle/webpack.config.js b/samples/gauges/linear-gauge/highlight-needle/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/highlight-needle/webpack.config.js +++ b/samples/gauges/linear-gauge/highlight-needle/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index ddf07f42e1..0b4fe790f7 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/labels/webpack.config.js b/samples/gauges/linear-gauge/labels/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/labels/webpack.config.js +++ b/samples/gauges/linear-gauge/labels/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index 61119b22af..d35beea65c 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/needle/webpack.config.js b/samples/gauges/linear-gauge/needle/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/needle/webpack.config.js +++ b/samples/gauges/linear-gauge/needle/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index 64c95d10b7..4a992098a8 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/ranges/webpack.config.js b/samples/gauges/linear-gauge/ranges/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/ranges/webpack.config.js +++ b/samples/gauges/linear-gauge/ranges/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index ffe7c5f20d..e4059902cf 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/scale/webpack.config.js b/samples/gauges/linear-gauge/scale/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/scale/webpack.config.js +++ b/samples/gauges/linear-gauge/scale/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index a2e8f6a950..98ffbcd562 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/tickmarks/webpack.config.js b/samples/gauges/linear-gauge/tickmarks/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/tickmarks/webpack.config.js +++ b/samples/gauges/linear-gauge/tickmarks/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/type-curved/package.json b/samples/gauges/linear-gauge/type-curved/package.json index 1e65e0f0be..8ce6fb206f 100644 --- a/samples/gauges/linear-gauge/type-curved/package.json +++ b/samples/gauges/linear-gauge/type-curved/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/type-curved/webpack.config.js b/samples/gauges/linear-gauge/type-curved/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/type-curved/webpack.config.js +++ b/samples/gauges/linear-gauge/type-curved/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/type-filled/package.json b/samples/gauges/linear-gauge/type-filled/package.json index 687ad63bf2..a9ee3c8957 100644 --- a/samples/gauges/linear-gauge/type-filled/package.json +++ b/samples/gauges/linear-gauge/type-filled/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/type-filled/webpack.config.js b/samples/gauges/linear-gauge/type-filled/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/type-filled/webpack.config.js +++ b/samples/gauges/linear-gauge/type-filled/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/type-horizontal/package.json b/samples/gauges/linear-gauge/type-horizontal/package.json index 3a905977fc..95322cf3c5 100644 --- a/samples/gauges/linear-gauge/type-horizontal/package.json +++ b/samples/gauges/linear-gauge/type-horizontal/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/type-horizontal/webpack.config.js b/samples/gauges/linear-gauge/type-horizontal/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/type-horizontal/webpack.config.js +++ b/samples/gauges/linear-gauge/type-horizontal/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/type-multi-range/package.json b/samples/gauges/linear-gauge/type-multi-range/package.json index 3975703efb..d028fcc36a 100644 --- a/samples/gauges/linear-gauge/type-multi-range/package.json +++ b/samples/gauges/linear-gauge/type-multi-range/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/type-multi-range/webpack.config.js b/samples/gauges/linear-gauge/type-multi-range/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/type-multi-range/webpack.config.js +++ b/samples/gauges/linear-gauge/type-multi-range/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/type-multi-scale/package.json b/samples/gauges/linear-gauge/type-multi-scale/package.json index cf02570cad..248410218e 100644 --- a/samples/gauges/linear-gauge/type-multi-scale/package.json +++ b/samples/gauges/linear-gauge/type-multi-scale/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/type-multi-scale/webpack.config.js b/samples/gauges/linear-gauge/type-multi-scale/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/type-multi-scale/webpack.config.js +++ b/samples/gauges/linear-gauge/type-multi-scale/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/type-segmented/package.json b/samples/gauges/linear-gauge/type-segmented/package.json index b7c60f8aaf..cfcf491c4d 100644 --- a/samples/gauges/linear-gauge/type-segmented/package.json +++ b/samples/gauges/linear-gauge/type-segmented/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/type-segmented/webpack.config.js b/samples/gauges/linear-gauge/type-segmented/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/type-segmented/webpack.config.js +++ b/samples/gauges/linear-gauge/type-segmented/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/linear-gauge/type-vertical/package.json b/samples/gauges/linear-gauge/type-vertical/package.json index 934e6cb69f..b3f9dd82e8 100644 --- a/samples/gauges/linear-gauge/type-vertical/package.json +++ b/samples/gauges/linear-gauge/type-vertical/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/linear-gauge/type-vertical/webpack.config.js b/samples/gauges/linear-gauge/type-vertical/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/linear-gauge/type-vertical/webpack.config.js +++ b/samples/gauges/linear-gauge/type-vertical/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index b096f25255..32290c2fd1 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/animation/webpack.config.js b/samples/gauges/radial-gauge/animation/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/animation/webpack.config.js +++ b/samples/gauges/radial-gauge/animation/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index b0bf3923c9..558cbd993c 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/backing/webpack.config.js b/samples/gauges/radial-gauge/backing/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/backing/webpack.config.js +++ b/samples/gauges/radial-gauge/backing/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index c8927c59d5..760effaa2e 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/highlight-needle/webpack.config.js b/samples/gauges/radial-gauge/highlight-needle/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/highlight-needle/webpack.config.js +++ b/samples/gauges/radial-gauge/highlight-needle/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 724bf2bd88..bb81948bd5 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/labels/webpack.config.js b/samples/gauges/radial-gauge/labels/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/labels/webpack.config.js +++ b/samples/gauges/radial-gauge/labels/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 7e1381c3e0..9a51f05c03 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/needle/webpack.config.js b/samples/gauges/radial-gauge/needle/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/needle/webpack.config.js +++ b/samples/gauges/radial-gauge/needle/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 724bf2bd88..bb81948bd5 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/optical-scaling/webpack.config.js b/samples/gauges/radial-gauge/optical-scaling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/optical-scaling/webpack.config.js +++ b/samples/gauges/radial-gauge/optical-scaling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index 8c23d5ebac..fa0cfed118 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/ranges/webpack.config.js b/samples/gauges/radial-gauge/ranges/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/ranges/webpack.config.js +++ b/samples/gauges/radial-gauge/ranges/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index fb1237ac00..9b36aa156d 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/scale/webpack.config.js b/samples/gauges/radial-gauge/scale/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/scale/webpack.config.js +++ b/samples/gauges/radial-gauge/scale/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index df388d0f10..840dbd001a 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/tickmarks/webpack.config.js b/samples/gauges/radial-gauge/tickmarks/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/tickmarks/webpack.config.js +++ b/samples/gauges/radial-gauge/tickmarks/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/type-column/package.json b/samples/gauges/radial-gauge/type-column/package.json index 3cacf2cd38..afbd42d58e 100644 --- a/samples/gauges/radial-gauge/type-column/package.json +++ b/samples/gauges/radial-gauge/type-column/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/type-column/webpack.config.js b/samples/gauges/radial-gauge/type-column/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/type-column/webpack.config.js +++ b/samples/gauges/radial-gauge/type-column/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/type-curved/package.json b/samples/gauges/radial-gauge/type-curved/package.json index ff584db7d5..8da7a2cef3 100644 --- a/samples/gauges/radial-gauge/type-curved/package.json +++ b/samples/gauges/radial-gauge/type-curved/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/type-curved/webpack.config.js b/samples/gauges/radial-gauge/type-curved/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/type-curved/webpack.config.js +++ b/samples/gauges/radial-gauge/type-curved/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/type-direction/package.json b/samples/gauges/radial-gauge/type-direction/package.json index d1d852a912..77223df959 100644 --- a/samples/gauges/radial-gauge/type-direction/package.json +++ b/samples/gauges/radial-gauge/type-direction/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/type-direction/webpack.config.js b/samples/gauges/radial-gauge/type-direction/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/type-direction/webpack.config.js +++ b/samples/gauges/radial-gauge/type-direction/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/type-full/package.json b/samples/gauges/radial-gauge/type-full/package.json index e6255ce0ce..be0690a780 100644 --- a/samples/gauges/radial-gauge/type-full/package.json +++ b/samples/gauges/radial-gauge/type-full/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/type-full/webpack.config.js b/samples/gauges/radial-gauge/type-full/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/type-full/webpack.config.js +++ b/samples/gauges/radial-gauge/type-full/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/type-half/package.json b/samples/gauges/radial-gauge/type-half/package.json index a2a658035f..9e9807b18a 100644 --- a/samples/gauges/radial-gauge/type-half/package.json +++ b/samples/gauges/radial-gauge/type-half/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/type-half/webpack.config.js b/samples/gauges/radial-gauge/type-half/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/type-half/webpack.config.js +++ b/samples/gauges/radial-gauge/type-half/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/type-quatre/package.json b/samples/gauges/radial-gauge/type-quatre/package.json index 7477f2d5c3..ea72776457 100644 --- a/samples/gauges/radial-gauge/type-quatre/package.json +++ b/samples/gauges/radial-gauge/type-quatre/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/type-quatre/webpack.config.js b/samples/gauges/radial-gauge/type-quatre/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/type-quatre/webpack.config.js +++ b/samples/gauges/radial-gauge/type-quatre/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/type-ring/package.json b/samples/gauges/radial-gauge/type-ring/package.json index e419548de7..48b8094a9b 100644 --- a/samples/gauges/radial-gauge/type-ring/package.json +++ b/samples/gauges/radial-gauge/type-ring/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/type-ring/webpack.config.js b/samples/gauges/radial-gauge/type-ring/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/type-ring/webpack.config.js +++ b/samples/gauges/radial-gauge/type-ring/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/type-segmented/package.json b/samples/gauges/radial-gauge/type-segmented/package.json index b857a63d33..0605633146 100644 --- a/samples/gauges/radial-gauge/type-segmented/package.json +++ b/samples/gauges/radial-gauge/type-segmented/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/type-segmented/webpack.config.js b/samples/gauges/radial-gauge/type-segmented/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/type-segmented/webpack.config.js +++ b/samples/gauges/radial-gauge/type-segmented/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/gauges/radial-gauge/type-semi/package.json b/samples/gauges/radial-gauge/type-semi/package.json index fd39039583..2f08d544d8 100644 --- a/samples/gauges/radial-gauge/type-semi/package.json +++ b/samples/gauges/radial-gauge/type-semi/package.json @@ -23,15 +23,16 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/gauges/radial-gauge/type-semi/webpack.config.js b/samples/gauges/radial-gauge/type-semi/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/gauges/radial-gauge/type-semi/webpack.config.js +++ b/samples/gauges/radial-gauge/type-semi/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/accessibility/package.json b/samples/grids/data-grid/accessibility/package.json index 94a0622c4d..b6a2c24b71 100644 --- a/samples/grids/data-grid/accessibility/package.json +++ b/samples/grids/data-grid/accessibility/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/accessibility/webpack.config.js b/samples/grids/data-grid/accessibility/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/accessibility/webpack.config.js +++ b/samples/grids/data-grid/accessibility/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/binding-data-service/package.json b/samples/grids/data-grid/binding-data-service/package.json index 031743e3bf..7def41e33d 100644 --- a/samples/grids/data-grid/binding-data-service/package.json +++ b/samples/grids/data-grid/binding-data-service/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/binding-data-service/webpack.config.js b/samples/grids/data-grid/binding-data-service/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/binding-data-service/webpack.config.js +++ b/samples/grids/data-grid/binding-data-service/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/binding-live-data/package.json b/samples/grids/data-grid/binding-live-data/package.json index ba4d744d7e..07e0ce2bf1 100644 --- a/samples/grids/data-grid/binding-live-data/package.json +++ b/samples/grids/data-grid/binding-live-data/package.json @@ -29,18 +29,19 @@ "@webcomponents/webcomponentsjs": "2.3.0", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/binding-live-data/webpack.config.js b/samples/grids/data-grid/binding-live-data/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/binding-live-data/webpack.config.js +++ b/samples/grids/data-grid/binding-live-data/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/binding-local-data/package.json b/samples/grids/data-grid/binding-local-data/package.json index 83f3a6a287..8e65cd2c5b 100644 --- a/samples/grids/data-grid/binding-local-data/package.json +++ b/samples/grids/data-grid/binding-local-data/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/binding-local-data/webpack.config.js b/samples/grids/data-grid/binding-local-data/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/binding-local-data/webpack.config.js +++ b/samples/grids/data-grid/binding-local-data/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/binding-remote-data/package.json b/samples/grids/data-grid/binding-remote-data/package.json index df2bfb2a9f..1cc80fa7fc 100644 --- a/samples/grids/data-grid/binding-remote-data/package.json +++ b/samples/grids/data-grid/binding-remote-data/package.json @@ -23,18 +23,19 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-datasources": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-datasources": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/binding-remote-data/webpack.config.js b/samples/grids/data-grid/binding-remote-data/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/binding-remote-data/webpack.config.js +++ b/samples/grids/data-grid/binding-remote-data/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/cell-activation/package.json b/samples/grids/data-grid/cell-activation/package.json index 03ec904f1d..d652da80a4 100644 --- a/samples/grids/data-grid/cell-activation/package.json +++ b/samples/grids/data-grid/cell-activation/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/cell-activation/webpack.config.js b/samples/grids/data-grid/cell-activation/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/cell-activation/webpack.config.js +++ b/samples/grids/data-grid/cell-activation/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/cell-editing/package.json b/samples/grids/data-grid/cell-editing/package.json index 2973f8f399..07a2f0e26b 100644 --- a/samples/grids/data-grid/cell-editing/package.json +++ b/samples/grids/data-grid/cell-editing/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/cell-editing/webpack.config.js b/samples/grids/data-grid/cell-editing/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/cell-editing/webpack.config.js +++ b/samples/grids/data-grid/cell-editing/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/cell-merging/package.json b/samples/grids/data-grid/cell-merging/package.json index 8e6d2ee6a7..dbd39a89b7 100644 --- a/samples/grids/data-grid/cell-merging/package.json +++ b/samples/grids/data-grid/cell-merging/package.json @@ -23,18 +23,19 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-datasources": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-datasources": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/cell-merging/webpack.config.js b/samples/grids/data-grid/cell-merging/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/cell-merging/webpack.config.js +++ b/samples/grids/data-grid/cell-merging/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/cell-selection/package.json b/samples/grids/data-grid/cell-selection/package.json index dcde67d5aa..bc08d9edde 100644 --- a/samples/grids/data-grid/cell-selection/package.json +++ b/samples/grids/data-grid/cell-selection/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/cell-selection/webpack.config.js b/samples/grids/data-grid/cell-selection/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/cell-selection/webpack.config.js +++ b/samples/grids/data-grid/cell-selection/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-animation/package.json b/samples/grids/data-grid/column-animation/package.json index 208a56a1e6..70b1aa4810 100644 --- a/samples/grids/data-grid/column-animation/package.json +++ b/samples/grids/data-grid/column-animation/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-animation/webpack.config.js b/samples/grids/data-grid/column-animation/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-animation/webpack.config.js +++ b/samples/grids/data-grid/column-animation/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-chooser-picker/package.json b/samples/grids/data-grid/column-chooser-picker/package.json index 9ba89c4f9b..8ad81c7352 100644 --- a/samples/grids/data-grid/column-chooser-picker/package.json +++ b/samples/grids/data-grid/column-chooser-picker/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-chooser-picker/webpack.config.js b/samples/grids/data-grid/column-chooser-picker/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-chooser-picker/webpack.config.js +++ b/samples/grids/data-grid/column-chooser-picker/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-chooser-toolbar/package.json b/samples/grids/data-grid/column-chooser-toolbar/package.json index 2c259d846f..63c45a34b1 100644 --- a/samples/grids/data-grid/column-chooser-toolbar/package.json +++ b/samples/grids/data-grid/column-chooser-toolbar/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-chooser-toolbar/webpack.config.js b/samples/grids/data-grid/column-chooser-toolbar/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-chooser-toolbar/webpack.config.js +++ b/samples/grids/data-grid/column-chooser-toolbar/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-filter-expressions/package.json b/samples/grids/data-grid/column-filter-expressions/package.json index 1ada5fe851..d4b70a6336 100644 --- a/samples/grids/data-grid/column-filter-expressions/package.json +++ b/samples/grids/data-grid/column-filter-expressions/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-filter-expressions/webpack.config.js b/samples/grids/data-grid/column-filter-expressions/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-filter-expressions/webpack.config.js +++ b/samples/grids/data-grid/column-filter-expressions/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-filter-operands/package.json b/samples/grids/data-grid/column-filter-operands/package.json index bb3573864e..8e4cb8b4e0 100644 --- a/samples/grids/data-grid/column-filter-operands/package.json +++ b/samples/grids/data-grid/column-filter-operands/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-filter-operands/webpack.config.js b/samples/grids/data-grid/column-filter-operands/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-filter-operands/webpack.config.js +++ b/samples/grids/data-grid/column-filter-operands/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-filtering/package.json b/samples/grids/data-grid/column-filtering/package.json index b6539bc4a3..8bc801ea96 100644 --- a/samples/grids/data-grid/column-filtering/package.json +++ b/samples/grids/data-grid/column-filtering/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-filtering/webpack.config.js b/samples/grids/data-grid/column-filtering/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-filtering/webpack.config.js +++ b/samples/grids/data-grid/column-filtering/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-moving/package.json b/samples/grids/data-grid/column-moving/package.json index 1f3cb479f4..145bebe9d0 100644 --- a/samples/grids/data-grid/column-moving/package.json +++ b/samples/grids/data-grid/column-moving/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-moving/webpack.config.js b/samples/grids/data-grid/column-moving/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-moving/webpack.config.js +++ b/samples/grids/data-grid/column-moving/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-options/package.json b/samples/grids/data-grid/column-options/package.json index 666ad1be25..d948c00feb 100644 --- a/samples/grids/data-grid/column-options/package.json +++ b/samples/grids/data-grid/column-options/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-options/webpack.config.js b/samples/grids/data-grid/column-options/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-options/webpack.config.js +++ b/samples/grids/data-grid/column-options/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-pinning-picker/package.json b/samples/grids/data-grid/column-pinning-picker/package.json index d2309add21..83dc21cd71 100644 --- a/samples/grids/data-grid/column-pinning-picker/package.json +++ b/samples/grids/data-grid/column-pinning-picker/package.json @@ -25,17 +25,18 @@ "@webcomponents/webcomponentsjs": "2.3.0", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-pinning-picker/webpack.config.js b/samples/grids/data-grid/column-pinning-picker/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-pinning-picker/webpack.config.js +++ b/samples/grids/data-grid/column-pinning-picker/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-pinning-toolbar/package.json b/samples/grids/data-grid/column-pinning-toolbar/package.json index 8f7e1bd1ad..f04894ba8c 100644 --- a/samples/grids/data-grid/column-pinning-toolbar/package.json +++ b/samples/grids/data-grid/column-pinning-toolbar/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-pinning-toolbar/webpack.config.js b/samples/grids/data-grid/column-pinning-toolbar/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-pinning-toolbar/webpack.config.js +++ b/samples/grids/data-grid/column-pinning-toolbar/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-resizing/package.json b/samples/grids/data-grid/column-resizing/package.json index 876cfe7f92..6ef2dea9f6 100644 --- a/samples/grids/data-grid/column-resizing/package.json +++ b/samples/grids/data-grid/column-resizing/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-resizing/webpack.config.js b/samples/grids/data-grid/column-resizing/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-resizing/webpack.config.js +++ b/samples/grids/data-grid/column-resizing/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-scrolling/package.json b/samples/grids/data-grid/column-scrolling/package.json index 35f8d63990..bad09208dd 100644 --- a/samples/grids/data-grid/column-scrolling/package.json +++ b/samples/grids/data-grid/column-scrolling/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-scrolling/webpack.config.js b/samples/grids/data-grid/column-scrolling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-scrolling/webpack.config.js +++ b/samples/grids/data-grid/column-scrolling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-sorting/package.json b/samples/grids/data-grid/column-sorting/package.json index 09253e88af..cdbbf4cfde 100644 --- a/samples/grids/data-grid/column-sorting/package.json +++ b/samples/grids/data-grid/column-sorting/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-sorting/webpack.config.js b/samples/grids/data-grid/column-sorting/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-sorting/webpack.config.js +++ b/samples/grids/data-grid/column-sorting/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-summaries/package.json b/samples/grids/data-grid/column-summaries/package.json index fb323abbb5..2d565d0a25 100644 --- a/samples/grids/data-grid/column-summaries/package.json +++ b/samples/grids/data-grid/column-summaries/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-summaries/webpack.config.js b/samples/grids/data-grid/column-summaries/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-summaries/webpack.config.js +++ b/samples/grids/data-grid/column-summaries/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/column-types/package.json b/samples/grids/data-grid/column-types/package.json index 072bc5f6ca..827cea80cd 100644 --- a/samples/grids/data-grid/column-types/package.json +++ b/samples/grids/data-grid/column-types/package.json @@ -23,18 +23,19 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/column-types/webpack.config.js b/samples/grids/data-grid/column-types/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/column-types/webpack.config.js +++ b/samples/grids/data-grid/column-types/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/load-save-layout/package.json b/samples/grids/data-grid/load-save-layout/package.json index 08230c542a..58f5a5d716 100644 --- a/samples/grids/data-grid/load-save-layout/package.json +++ b/samples/grids/data-grid/load-save-layout/package.json @@ -23,18 +23,19 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/load-save-layout/webpack.config.js b/samples/grids/data-grid/load-save-layout/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/load-save-layout/webpack.config.js +++ b/samples/grids/data-grid/load-save-layout/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/localization/package.json b/samples/grids/data-grid/localization/package.json index 5330d24630..68d36ea644 100644 --- a/samples/grids/data-grid/localization/package.json +++ b/samples/grids/data-grid/localization/package.json @@ -23,18 +23,19 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/localization/webpack.config.js b/samples/grids/data-grid/localization/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/localization/webpack.config.js +++ b/samples/grids/data-grid/localization/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/overview/package.json b/samples/grids/data-grid/overview/package.json index 1084d86d8c..ba42e52e23 100644 --- a/samples/grids/data-grid/overview/package.json +++ b/samples/grids/data-grid/overview/package.json @@ -23,18 +23,19 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/overview/webpack.config.js b/samples/grids/data-grid/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/overview/webpack.config.js +++ b/samples/grids/data-grid/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/pager/package.json b/samples/grids/data-grid/pager/package.json index 03c41c7cf8..597266f9ad 100644 --- a/samples/grids/data-grid/pager/package.json +++ b/samples/grids/data-grid/pager/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/pager/webpack.config.js b/samples/grids/data-grid/pager/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/pager/webpack.config.js +++ b/samples/grids/data-grid/pager/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/performance/package.json b/samples/grids/data-grid/performance/package.json index 4ded553f23..55daf9c80a 100644 --- a/samples/grids/data-grid/performance/package.json +++ b/samples/grids/data-grid/performance/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/performance/webpack.config.js b/samples/grids/data-grid/performance/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/performance/webpack.config.js +++ b/samples/grids/data-grid/performance/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/row-group-descriptions/package.json b/samples/grids/data-grid/row-group-descriptions/package.json index 33ccbe36e6..d274980403 100644 --- a/samples/grids/data-grid/row-group-descriptions/package.json +++ b/samples/grids/data-grid/row-group-descriptions/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/row-group-descriptions/webpack.config.js b/samples/grids/data-grid/row-group-descriptions/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/row-group-descriptions/webpack.config.js +++ b/samples/grids/data-grid/row-group-descriptions/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/row-grouping/package.json b/samples/grids/data-grid/row-grouping/package.json index 33ccbe36e6..d274980403 100644 --- a/samples/grids/data-grid/row-grouping/package.json +++ b/samples/grids/data-grid/row-grouping/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/row-grouping/webpack.config.js b/samples/grids/data-grid/row-grouping/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/row-grouping/webpack.config.js +++ b/samples/grids/data-grid/row-grouping/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/row-highlighting/package.json b/samples/grids/data-grid/row-highlighting/package.json index 9da8452589..cd7323d5b9 100644 --- a/samples/grids/data-grid/row-highlighting/package.json +++ b/samples/grids/data-grid/row-highlighting/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/row-highlighting/webpack.config.js b/samples/grids/data-grid/row-highlighting/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/row-highlighting/webpack.config.js +++ b/samples/grids/data-grid/row-highlighting/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/row-paging/package.json b/samples/grids/data-grid/row-paging/package.json index 76266786ff..202a408081 100644 --- a/samples/grids/data-grid/row-paging/package.json +++ b/samples/grids/data-grid/row-paging/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/row-paging/webpack.config.js b/samples/grids/data-grid/row-paging/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/row-paging/webpack.config.js +++ b/samples/grids/data-grid/row-paging/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/row-pinning/package.json b/samples/grids/data-grid/row-pinning/package.json index 0da01d4d32..996993a418 100644 --- a/samples/grids/data-grid/row-pinning/package.json +++ b/samples/grids/data-grid/row-pinning/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/row-pinning/webpack.config.js b/samples/grids/data-grid/row-pinning/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/row-pinning/webpack.config.js +++ b/samples/grids/data-grid/row-pinning/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/row-selection/package.json b/samples/grids/data-grid/row-selection/package.json index dcde67d5aa..bc08d9edde 100644 --- a/samples/grids/data-grid/row-selection/package.json +++ b/samples/grids/data-grid/row-selection/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/row-selection/webpack.config.js b/samples/grids/data-grid/row-selection/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/row-selection/webpack.config.js +++ b/samples/grids/data-grid/row-selection/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/type-comparison-table/package.json b/samples/grids/data-grid/type-comparison-table/package.json index be0a310814..d14bda2f61 100644 --- a/samples/grids/data-grid/type-comparison-table/package.json +++ b/samples/grids/data-grid/type-comparison-table/package.json @@ -23,18 +23,19 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-datasources": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-datasources": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/type-comparison-table/webpack.config.js b/samples/grids/data-grid/type-comparison-table/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/type-comparison-table/webpack.config.js +++ b/samples/grids/data-grid/type-comparison-table/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/type-heatmap-table/package.json b/samples/grids/data-grid/type-heatmap-table/package.json index 518e864fc0..760fe2389b 100644 --- a/samples/grids/data-grid/type-heatmap-table/package.json +++ b/samples/grids/data-grid/type-heatmap-table/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/type-heatmap-table/webpack.config.js b/samples/grids/data-grid/type-heatmap-table/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/type-heatmap-table/webpack.config.js +++ b/samples/grids/data-grid/type-heatmap-table/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/type-marketing-table/package.json b/samples/grids/data-grid/type-marketing-table/package.json index 252562f3ca..7a067be5b2 100644 --- a/samples/grids/data-grid/type-marketing-table/package.json +++ b/samples/grids/data-grid/type-marketing-table/package.json @@ -23,18 +23,19 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/type-marketing-table/webpack.config.js b/samples/grids/data-grid/type-marketing-table/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/type-marketing-table/webpack.config.js +++ b/samples/grids/data-grid/type-marketing-table/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/type-matrix-table/package.json b/samples/grids/data-grid/type-matrix-table/package.json index 8cc720c340..1d624fa3eb 100644 --- a/samples/grids/data-grid/type-matrix-table/package.json +++ b/samples/grids/data-grid/type-matrix-table/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/type-matrix-table/webpack.config.js b/samples/grids/data-grid/type-matrix-table/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/type-matrix-table/webpack.config.js +++ b/samples/grids/data-grid/type-matrix-table/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/type-periodic-table/package.json b/samples/grids/data-grid/type-periodic-table/package.json index 7c688b77db..1676f85cd5 100644 --- a/samples/grids/data-grid/type-periodic-table/package.json +++ b/samples/grids/data-grid/type-periodic-table/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/type-periodic-table/webpack.config.js b/samples/grids/data-grid/type-periodic-table/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/type-periodic-table/webpack.config.js +++ b/samples/grids/data-grid/type-periodic-table/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/data-grid/type-table/package.json b/samples/grids/data-grid/type-table/package.json index f334da6fa3..d3a8eeb620 100644 --- a/samples/grids/data-grid/type-table/package.json +++ b/samples/grids/data-grid/type-table/package.json @@ -23,17 +23,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/data-grid/type-table/webpack.config.js b/samples/grids/data-grid/type-table/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/data-grid/type-table/webpack.config.js +++ b/samples/grids/data-grid/type-table/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/action-strip/package.json b/samples/grids/grid/action-strip/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/action-strip/package.json +++ b/samples/grids/grid/action-strip/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/action-strip/webpack.config.js b/samples/grids/grid/action-strip/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/action-strip/webpack.config.js +++ b/samples/grids/grid/action-strip/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/advanced-filtering-options/package.json b/samples/grids/grid/advanced-filtering-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/advanced-filtering-options/package.json +++ b/samples/grids/grid/advanced-filtering-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/advanced-filtering-options/webpack.config.js b/samples/grids/grid/advanced-filtering-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/advanced-filtering-options/webpack.config.js +++ b/samples/grids/grid/advanced-filtering-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/advanced-filtering-style/package.json b/samples/grids/grid/advanced-filtering-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/advanced-filtering-style/package.json +++ b/samples/grids/grid/advanced-filtering-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/advanced-filtering-style/webpack.config.js b/samples/grids/grid/advanced-filtering-style/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/advanced-filtering-style/webpack.config.js +++ b/samples/grids/grid/advanced-filtering-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/binding-composite-data/package.json +++ b/samples/grids/grid/binding-composite-data/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/binding-composite-data/webpack.config.js b/samples/grids/grid/binding-composite-data/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/binding-composite-data/webpack.config.js +++ b/samples/grids/grid/binding-composite-data/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/binding-crud-data/package.json b/samples/grids/grid/binding-crud-data/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/binding-crud-data/package.json +++ b/samples/grids/grid/binding-crud-data/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/binding-crud-data/webpack.config.js b/samples/grids/grid/binding-crud-data/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/binding-crud-data/webpack.config.js +++ b/samples/grids/grid/binding-crud-data/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/binding-nested-data-1/package.json +++ b/samples/grids/grid/binding-nested-data-1/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/binding-nested-data-1/webpack.config.js +++ b/samples/grids/grid/binding-nested-data-1/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/cascading-combo/package.json b/samples/grids/grid/cascading-combo/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/cascading-combo/package.json +++ b/samples/grids/grid/cascading-combo/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/cascading-combo/webpack.config.js b/samples/grids/grid/cascading-combo/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/cascading-combo/webpack.config.js +++ b/samples/grids/grid/cascading-combo/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/cell-editing-sample/package.json b/samples/grids/grid/cell-editing-sample/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/cell-editing-sample/package.json +++ b/samples/grids/grid/cell-editing-sample/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/cell-editing-sample/webpack.config.js b/samples/grids/grid/cell-editing-sample/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/cell-editing-sample/webpack.config.js +++ b/samples/grids/grid/cell-editing-sample/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/cell-editing-styling/package.json b/samples/grids/grid/cell-editing-styling/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/cell-editing-styling/package.json +++ b/samples/grids/grid/cell-editing-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/cell-editing-styling/webpack.config.js b/samples/grids/grid/cell-editing-styling/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/cell-editing-styling/webpack.config.js +++ b/samples/grids/grid/cell-editing-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/cell-selection-mode/package.json +++ b/samples/grids/grid/cell-selection-mode/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/cell-selection-mode/webpack.config.js b/samples/grids/grid/cell-selection-mode/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/cell-selection-mode/webpack.config.js +++ b/samples/grids/grid/cell-selection-mode/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/cell-selection-style/package.json b/samples/grids/grid/cell-selection-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/cell-selection-style/package.json +++ b/samples/grids/grid/cell-selection-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/cell-selection-style/webpack.config.js b/samples/grids/grid/cell-selection-style/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/cell-selection-style/webpack.config.js +++ b/samples/grids/grid/cell-selection-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/change-icons-custom/package.json b/samples/grids/grid/change-icons-custom/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/grid/change-icons-custom/package.json +++ b/samples/grids/grid/change-icons-custom/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/change-icons-custom/webpack.config.js b/samples/grids/grid/change-icons-custom/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/change-icons-custom/webpack.config.js +++ b/samples/grids/grid/change-icons-custom/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/clipboard-operations/package.json b/samples/grids/grid/clipboard-operations/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/grid/clipboard-operations/package.json +++ b/samples/grids/grid/clipboard-operations/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/clipboard-operations/webpack.config.js b/samples/grids/grid/clipboard-operations/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/clipboard-operations/webpack.config.js +++ b/samples/grids/grid/clipboard-operations/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-auto-sizing/package.json b/samples/grids/grid/column-auto-sizing/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-auto-sizing/package.json +++ b/samples/grids/grid/column-auto-sizing/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-auto-sizing/webpack.config.js b/samples/grids/grid/column-auto-sizing/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-auto-sizing/webpack.config.js +++ b/samples/grids/grid/column-auto-sizing/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-collapsible-groups/package.json b/samples/grids/grid/column-collapsible-groups/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-collapsible-groups/package.json +++ b/samples/grids/grid/column-collapsible-groups/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-collapsible-groups/webpack.config.js b/samples/grids/grid/column-collapsible-groups/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-collapsible-groups/webpack.config.js +++ b/samples/grids/grid/column-collapsible-groups/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-data-types/package.json b/samples/grids/grid/column-data-types/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-data-types/package.json +++ b/samples/grids/grid/column-data-types/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-data-types/webpack.config.js b/samples/grids/grid/column-data-types/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-data-types/webpack.config.js +++ b/samples/grids/grid/column-data-types/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-hiding-options/package.json b/samples/grids/grid/column-hiding-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-hiding-options/package.json +++ b/samples/grids/grid/column-hiding-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-hiding-options/webpack.config.js b/samples/grids/grid/column-hiding-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-hiding-options/webpack.config.js +++ b/samples/grids/grid/column-hiding-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-hiding-toolbar-style/package.json b/samples/grids/grid/column-hiding-toolbar-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/grid/column-hiding-toolbar-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/webpack.config.js +++ b/samples/grids/grid/column-hiding-toolbar-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-hiding-toolbar/package.json b/samples/grids/grid/column-hiding-toolbar/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-hiding-toolbar/package.json +++ b/samples/grids/grid/column-hiding-toolbar/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-hiding-toolbar/webpack.config.js b/samples/grids/grid/column-hiding-toolbar/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-hiding-toolbar/webpack.config.js +++ b/samples/grids/grid/column-hiding-toolbar/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-moving-options/package.json b/samples/grids/grid/column-moving-options/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/column-moving-options/package.json +++ b/samples/grids/grid/column-moving-options/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-moving-options/webpack.config.js b/samples/grids/grid/column-moving-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-moving-options/webpack.config.js +++ b/samples/grids/grid/column-moving-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-moving-styles/package.json b/samples/grids/grid/column-moving-styles/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/column-moving-styles/package.json +++ b/samples/grids/grid/column-moving-styles/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-moving-styles/webpack.config.js b/samples/grids/grid/column-moving-styles/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-moving-styles/webpack.config.js +++ b/samples/grids/grid/column-moving-styles/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-pinning-options/package.json b/samples/grids/grid/column-pinning-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-pinning-options/package.json +++ b/samples/grids/grid/column-pinning-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-pinning-options/webpack.config.js b/samples/grids/grid/column-pinning-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-pinning-options/webpack.config.js +++ b/samples/grids/grid/column-pinning-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-pinning-right-side/package.json b/samples/grids/grid/column-pinning-right-side/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/column-pinning-right-side/package.json +++ b/samples/grids/grid/column-pinning-right-side/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-pinning-right-side/webpack.config.js b/samples/grids/grid/column-pinning-right-side/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-pinning-right-side/webpack.config.js +++ b/samples/grids/grid/column-pinning-right-side/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-pinning-styles/package.json b/samples/grids/grid/column-pinning-styles/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-pinning-styles/package.json +++ b/samples/grids/grid/column-pinning-styles/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-pinning-styles/webpack.config.js b/samples/grids/grid/column-pinning-styles/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-pinning-styles/webpack.config.js +++ b/samples/grids/grid/column-pinning-styles/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-pinning/package.json b/samples/grids/grid/column-pinning/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-pinning/package.json +++ b/samples/grids/grid/column-pinning/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-pinning/webpack.config.js b/samples/grids/grid/column-pinning/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-pinning/webpack.config.js +++ b/samples/grids/grid/column-pinning/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-resize-styling/package.json b/samples/grids/grid/column-resize-styling/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-resize-styling/package.json +++ b/samples/grids/grid/column-resize-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-resize-styling/webpack.config.js b/samples/grids/grid/column-resize-styling/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-resize-styling/webpack.config.js +++ b/samples/grids/grid/column-resize-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-resizing/package.json b/samples/grids/grid/column-resizing/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-resizing/package.json +++ b/samples/grids/grid/column-resizing/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-resizing/webpack.config.js b/samples/grids/grid/column-resizing/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-resizing/webpack.config.js +++ b/samples/grids/grid/column-resizing/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-selection-group/package.json b/samples/grids/grid/column-selection-group/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-selection-group/package.json +++ b/samples/grids/grid/column-selection-group/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-selection-group/webpack.config.js b/samples/grids/grid/column-selection-group/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-selection-group/webpack.config.js +++ b/samples/grids/grid/column-selection-group/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-selection-mode/package.json b/samples/grids/grid/column-selection-mode/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/column-selection-mode/package.json +++ b/samples/grids/grid/column-selection-mode/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-selection-mode/webpack.config.js b/samples/grids/grid/column-selection-mode/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-selection-mode/webpack.config.js +++ b/samples/grids/grid/column-selection-mode/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-selection-styles/package.json b/samples/grids/grid/column-selection-styles/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-selection-styles/package.json +++ b/samples/grids/grid/column-selection-styles/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-selection-styles/webpack.config.js b/samples/grids/grid/column-selection-styles/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-selection-styles/webpack.config.js +++ b/samples/grids/grid/column-selection-styles/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-sorting-indicators/package.json b/samples/grids/grid/column-sorting-indicators/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-sorting-indicators/package.json +++ b/samples/grids/grid/column-sorting-indicators/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-sorting-indicators/webpack.config.js b/samples/grids/grid/column-sorting-indicators/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-sorting-indicators/webpack.config.js +++ b/samples/grids/grid/column-sorting-indicators/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-sorting-options/package.json b/samples/grids/grid/column-sorting-options/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/column-sorting-options/package.json +++ b/samples/grids/grid/column-sorting-options/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-sorting-options/webpack.config.js b/samples/grids/grid/column-sorting-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-sorting-options/webpack.config.js +++ b/samples/grids/grid/column-sorting-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/column-sorting-style/package.json b/samples/grids/grid/column-sorting-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/column-sorting-style/package.json +++ b/samples/grids/grid/column-sorting-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/column-sorting-style/webpack.config.js b/samples/grids/grid/column-sorting-style/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/column-sorting-style/webpack.config.js +++ b/samples/grids/grid/column-sorting-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/conditional-cell-style-1/package.json b/samples/grids/grid/conditional-cell-style-1/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/conditional-cell-style-1/package.json +++ b/samples/grids/grid/conditional-cell-style-1/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/conditional-cell-style-1/webpack.config.js +++ b/samples/grids/grid/conditional-cell-style-1/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/conditional-cell-style-2/package.json b/samples/grids/grid/conditional-cell-style-2/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/conditional-cell-style-2/package.json +++ b/samples/grids/grid/conditional-cell-style-2/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/conditional-cell-style-2/webpack.config.js +++ b/samples/grids/grid/conditional-cell-style-2/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/conditional-row-selectors/package.json b/samples/grids/grid/conditional-row-selectors/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/conditional-row-selectors/package.json +++ b/samples/grids/grid/conditional-row-selectors/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/conditional-row-selectors/webpack.config.js b/samples/grids/grid/conditional-row-selectors/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/conditional-row-selectors/webpack.config.js +++ b/samples/grids/grid/conditional-row-selectors/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/custom-context-menu/package.json b/samples/grids/grid/custom-context-menu/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/grid/custom-context-menu/package.json +++ b/samples/grids/grid/custom-context-menu/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/custom-context-menu/webpack.config.js b/samples/grids/grid/custom-context-menu/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/custom-context-menu/webpack.config.js +++ b/samples/grids/grid/custom-context-menu/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/custom-filtering/package.json b/samples/grids/grid/custom-filtering/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/grid/custom-filtering/package.json +++ b/samples/grids/grid/custom-filtering/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/custom-filtering/webpack.config.js b/samples/grids/grid/custom-filtering/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/custom-filtering/webpack.config.js +++ b/samples/grids/grid/custom-filtering/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/data-batch-editing-actions/package.json b/samples/grids/grid/data-batch-editing-actions/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/data-batch-editing-actions/package.json +++ b/samples/grids/grid/data-batch-editing-actions/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/data-batch-editing-actions/webpack.config.js +++ b/samples/grids/grid/data-batch-editing-actions/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/data-exporting-indicator/package.json b/samples/grids/grid/data-exporting-indicator/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/grid/data-exporting-indicator/package.json +++ b/samples/grids/grid/data-exporting-indicator/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/data-exporting-indicator/webpack.config.js b/samples/grids/grid/data-exporting-indicator/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/data-exporting-indicator/webpack.config.js +++ b/samples/grids/grid/data-exporting-indicator/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/data-paste-options/package.json b/samples/grids/grid/data-paste-options/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/grid/data-paste-options/package.json +++ b/samples/grids/grid/data-paste-options/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/data-paste-options/webpack.config.js b/samples/grids/grid/data-paste-options/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/data-paste-options/webpack.config.js +++ b/samples/grids/grid/data-paste-options/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/data-performance-virtualization/package.json b/samples/grids/grid/data-performance-virtualization/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/data-performance-virtualization/package.json +++ b/samples/grids/grid/data-performance-virtualization/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/data-performance-virtualization/webpack.config.js b/samples/grids/grid/data-performance-virtualization/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/data-performance-virtualization/webpack.config.js +++ b/samples/grids/grid/data-performance-virtualization/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/data-searching/package.json b/samples/grids/grid/data-searching/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/grid/data-searching/package.json +++ b/samples/grids/grid/data-searching/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/data-searching/webpack.config.js b/samples/grids/grid/data-searching/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/data-searching/webpack.config.js +++ b/samples/grids/grid/data-searching/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/data-summaries-custom/package.json b/samples/grids/grid/data-summaries-custom/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/grid/data-summaries-custom/package.json +++ b/samples/grids/grid/data-summaries-custom/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/data-summaries-custom/webpack.config.js b/samples/grids/grid/data-summaries-custom/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/data-summaries-custom/webpack.config.js +++ b/samples/grids/grid/data-summaries-custom/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/data-summary-formatter/package.json b/samples/grids/grid/data-summary-formatter/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/data-summary-formatter/package.json +++ b/samples/grids/grid/data-summary-formatter/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/data-summary-formatter/webpack.config.js b/samples/grids/grid/data-summary-formatter/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/data-summary-formatter/webpack.config.js +++ b/samples/grids/grid/data-summary-formatter/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/data-summary-options/package.json b/samples/grids/grid/data-summary-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/data-summary-options/package.json +++ b/samples/grids/grid/data-summary-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/data-summary-options/webpack.config.js b/samples/grids/grid/data-summary-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/data-summary-options/webpack.config.js +++ b/samples/grids/grid/data-summary-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/data-summary-template/package.json +++ b/samples/grids/grid/data-summary-template/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/data-summary-template/webpack.config.js b/samples/grids/grid/data-summary-template/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/data-summary-template/webpack.config.js +++ b/samples/grids/grid/data-summary-template/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/data-validation-style/package.json b/samples/grids/grid/data-validation-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/data-validation-style/package.json +++ b/samples/grids/grid/data-validation-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/data-validation-style/webpack.config.js b/samples/grids/grid/data-validation-style/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/data-validation-style/webpack.config.js +++ b/samples/grids/grid/data-validation-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/data-validator-service-cross-field/package.json b/samples/grids/grid/data-validator-service-cross-field/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/data-validator-service-cross-field/package.json +++ b/samples/grids/grid/data-validator-service-cross-field/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/data-validator-service-extended/package.json +++ b/samples/grids/grid/data-validator-service-extended/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/data-validator-service-extended/webpack.config.js +++ b/samples/grids/grid/data-validator-service-extended/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/data-validator-service/package.json +++ b/samples/grids/grid/data-validator-service/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/data-validator-service/webpack.config.js b/samples/grids/grid/data-validator-service/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/data-validator-service/webpack.config.js +++ b/samples/grids/grid/data-validator-service/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/editing-columns/package.json b/samples/grids/grid/editing-columns/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/editing-columns/package.json +++ b/samples/grids/grid/editing-columns/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/editing-columns/webpack.config.js b/samples/grids/grid/editing-columns/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/editing-columns/webpack.config.js +++ b/samples/grids/grid/editing-columns/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/editing-events/package.json b/samples/grids/grid/editing-events/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/editing-events/package.json +++ b/samples/grids/grid/editing-events/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/editing-events/webpack.config.js b/samples/grids/grid/editing-events/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/editing-events/webpack.config.js +++ b/samples/grids/grid/editing-events/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/editing-excel-style-custom/package.json b/samples/grids/grid/editing-excel-style-custom/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/grid/editing-excel-style-custom/package.json +++ b/samples/grids/grid/editing-excel-style-custom/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/editing-excel-style-custom/webpack.config.js b/samples/grids/grid/editing-excel-style-custom/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/editing-excel-style-custom/webpack.config.js +++ b/samples/grids/grid/editing-excel-style-custom/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/editing-excel-style/package.json b/samples/grids/grid/editing-excel-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/editing-excel-style/package.json +++ b/samples/grids/grid/editing-excel-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/editing-excel-style/webpack.config.js b/samples/grids/grid/editing-excel-style/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/editing-excel-style/webpack.config.js +++ b/samples/grids/grid/editing-excel-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/editing-lifecycle/package.json b/samples/grids/grid/editing-lifecycle/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/editing-lifecycle/package.json +++ b/samples/grids/grid/editing-lifecycle/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/editing-lifecycle/webpack.config.js b/samples/grids/grid/editing-lifecycle/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/editing-lifecycle/webpack.config.js +++ b/samples/grids/grid/editing-lifecycle/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/excel-exporting/package.json b/samples/grids/grid/excel-exporting/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/excel-exporting/package.json +++ b/samples/grids/grid/excel-exporting/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/excel-exporting/webpack.config.js b/samples/grids/grid/excel-exporting/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/excel-exporting/webpack.config.js +++ b/samples/grids/grid/excel-exporting/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/excel-style-filtering-sample-1/package.json b/samples/grids/grid/excel-style-filtering-sample-1/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/excel-style-filtering-sample-2/package.json b/samples/grids/grid/excel-style-filtering-sample-2/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/excel-style-filtering-sample-3/package.json b/samples/grids/grid/excel-style-filtering-sample-3/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/excel-style-filtering-style/package.json b/samples/grids/grid/excel-style-filtering-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/excel-style-filtering-style/package.json +++ b/samples/grids/grid/excel-style-filtering-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/excel-style-filtering-style/webpack.config.js +++ b/samples/grids/grid/excel-style-filtering-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/external-advanced-filtering/package.json b/samples/grids/grid/external-advanced-filtering/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/external-advanced-filtering/package.json +++ b/samples/grids/grid/external-advanced-filtering/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/external-advanced-filtering/webpack.config.js b/samples/grids/grid/external-advanced-filtering/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/external-advanced-filtering/webpack.config.js +++ b/samples/grids/grid/external-advanced-filtering/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/filtering-options/package.json b/samples/grids/grid/filtering-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/filtering-options/package.json +++ b/samples/grids/grid/filtering-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/filtering-options/webpack.config.js b/samples/grids/grid/filtering-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/filtering-options/webpack.config.js +++ b/samples/grids/grid/filtering-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/filtering-strategy/package.json b/samples/grids/grid/filtering-strategy/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/filtering-strategy/package.json +++ b/samples/grids/grid/filtering-strategy/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/filtering-strategy/webpack.config.js b/samples/grids/grid/filtering-strategy/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/filtering-strategy/webpack.config.js +++ b/samples/grids/grid/filtering-strategy/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/filtering-style/package.json +++ b/samples/grids/grid/filtering-style/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/filtering-style/webpack.config.js b/samples/grids/grid/filtering-style/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/filtering-style/webpack.config.js +++ b/samples/grids/grid/filtering-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/finjs/package.json b/samples/grids/grid/finjs/package.json index 2f11499b49..a416730c1c 100644 --- a/samples/grids/grid/finjs/package.json +++ b/samples/grids/grid/finjs/package.json @@ -26,18 +26,19 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/finjs/webpack.config.js b/samples/grids/grid/finjs/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/finjs/webpack.config.js +++ b/samples/grids/grid/finjs/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/groupby-custom/package.json b/samples/grids/grid/groupby-custom/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/grid/groupby-custom/package.json +++ b/samples/grids/grid/groupby-custom/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/groupby-custom/webpack.config.js b/samples/grids/grid/groupby-custom/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/groupby-custom/webpack.config.js +++ b/samples/grids/grid/groupby-custom/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/groupby-expressions/package.json b/samples/grids/grid/groupby-expressions/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/groupby-expressions/package.json +++ b/samples/grids/grid/groupby-expressions/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/groupby-expressions/webpack.config.js b/samples/grids/grid/groupby-expressions/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/groupby-expressions/webpack.config.js +++ b/samples/grids/grid/groupby-expressions/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/groupby-paging/package.json b/samples/grids/grid/groupby-paging/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/groupby-paging/package.json +++ b/samples/grids/grid/groupby-paging/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/groupby-paging/webpack.config.js b/samples/grids/grid/groupby-paging/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/groupby-paging/webpack.config.js +++ b/samples/grids/grid/groupby-paging/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/groupby-styling/package.json b/samples/grids/grid/groupby-styling/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/groupby-styling/package.json +++ b/samples/grids/grid/groupby-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/groupby-styling/webpack.config.js b/samples/grids/grid/groupby-styling/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/groupby-styling/webpack.config.js +++ b/samples/grids/grid/groupby-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/groupby-summary-options/package.json b/samples/grids/grid/groupby-summary-options/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/groupby-summary-options/package.json +++ b/samples/grids/grid/groupby-summary-options/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/groupby-summary-options/webpack.config.js b/samples/grids/grid/groupby-summary-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/groupby-summary-options/webpack.config.js +++ b/samples/grids/grid/groupby-summary-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/groupby-summary-styling/package.json b/samples/grids/grid/groupby-summary-styling/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/groupby-summary-styling/package.json +++ b/samples/grids/grid/groupby-summary-styling/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/groupby-summary-styling/webpack.config.js b/samples/grids/grid/groupby-summary-styling/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/groupby-summary-styling/webpack.config.js +++ b/samples/grids/grid/groupby-summary-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/infinite-scroll/package.json b/samples/grids/grid/infinite-scroll/package.json index c2be155ce8..f381e483e3 100644 --- a/samples/grids/grid/infinite-scroll/package.json +++ b/samples/grids/grid/infinite-scroll/package.json @@ -26,10 +26,10 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "rxjs": "7.8.1", "tslib": "^2.0.0" @@ -37,7 +37,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/infinite-scroll/webpack.config.js b/samples/grids/grid/infinite-scroll/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/infinite-scroll/webpack.config.js +++ b/samples/grids/grid/infinite-scroll/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/keyboard-custom-navigation/package.json b/samples/grids/grid/keyboard-custom-navigation/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/keyboard-custom-navigation/package.json +++ b/samples/grids/grid/keyboard-custom-navigation/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/keyboard-custom-navigation/webpack.config.js b/samples/grids/grid/keyboard-custom-navigation/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/keyboard-custom-navigation/webpack.config.js +++ b/samples/grids/grid/keyboard-custom-navigation/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/keyboard-mrl-navigation/package.json b/samples/grids/grid/keyboard-mrl-navigation/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/package.json +++ b/samples/grids/grid/keyboard-mrl-navigation/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/keyboard-mrl-navigation/webpack.config.js b/samples/grids/grid/keyboard-mrl-navigation/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/webpack.config.js +++ b/samples/grids/grid/keyboard-mrl-navigation/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/keyboard-navigation-guide/package.json b/samples/grids/grid/keyboard-navigation-guide/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/grid/keyboard-navigation-guide/package.json +++ b/samples/grids/grid/keyboard-navigation-guide/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/keyboard-navigation-guide/webpack.config.js b/samples/grids/grid/keyboard-navigation-guide/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/keyboard-navigation-guide/webpack.config.js +++ b/samples/grids/grid/keyboard-navigation-guide/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/layout-display-density/package.json b/samples/grids/grid/layout-display-density/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/layout-display-density/package.json +++ b/samples/grids/grid/layout-display-density/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/layout-display-density/webpack.config.js b/samples/grids/grid/layout-display-density/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/layout-display-density/webpack.config.js +++ b/samples/grids/grid/layout-display-density/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/master-detail/package.json b/samples/grids/grid/master-detail/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/master-detail/package.json +++ b/samples/grids/grid/master-detail/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/master-detail/webpack.config.js b/samples/grids/grid/master-detail/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/master-detail/webpack.config.js +++ b/samples/grids/grid/master-detail/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/multi-cell-selection-mode/package.json b/samples/grids/grid/multi-cell-selection-mode/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/grid/multi-cell-selection-mode/package.json +++ b/samples/grids/grid/multi-cell-selection-mode/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/multi-cell-selection-mode/webpack.config.js b/samples/grids/grid/multi-cell-selection-mode/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/multi-cell-selection-mode/webpack.config.js +++ b/samples/grids/grid/multi-cell-selection-mode/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/multi-column-headers-export/package.json b/samples/grids/grid/multi-column-headers-export/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/multi-column-headers-export/package.json +++ b/samples/grids/grid/multi-column-headers-export/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/multi-column-headers-export/webpack.config.js +++ b/samples/grids/grid/multi-column-headers-export/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/multi-column-headers-overview/package.json b/samples/grids/grid/multi-column-headers-overview/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/multi-column-headers-overview/package.json +++ b/samples/grids/grid/multi-column-headers-overview/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/multi-column-headers-overview/webpack.config.js +++ b/samples/grids/grid/multi-column-headers-overview/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/multi-column-headers-styling/package.json b/samples/grids/grid/multi-column-headers-styling/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/multi-column-headers-styling/package.json +++ b/samples/grids/grid/multi-column-headers-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/multi-column-headers-styling/webpack.config.js +++ b/samples/grids/grid/multi-column-headers-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/multi-column-headers-template/package.json b/samples/grids/grid/multi-column-headers-template/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/multi-column-headers-template/package.json +++ b/samples/grids/grid/multi-column-headers-template/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/multi-column-headers-template/webpack.config.js +++ b/samples/grids/grid/multi-column-headers-template/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/multi-row-layout-options/package.json b/samples/grids/grid/multi-row-layout-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/multi-row-layout-options/package.json +++ b/samples/grids/grid/multi-row-layout-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/multi-row-layout-options/webpack.config.js +++ b/samples/grids/grid/multi-row-layout-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/multi-row-layout-style/package.json b/samples/grids/grid/multi-row-layout-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/multi-row-layout-style/package.json +++ b/samples/grids/grid/multi-row-layout-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/multi-row-layout-style/webpack.config.js +++ b/samples/grids/grid/multi-row-layout-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/overview/package.json b/samples/grids/grid/overview/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/overview/package.json +++ b/samples/grids/grid/overview/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/overview/webpack.config.js b/samples/grids/grid/overview/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/overview/webpack.config.js +++ b/samples/grids/grid/overview/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/paste/package.json b/samples/grids/grid/paste/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/paste/package.json +++ b/samples/grids/grid/paste/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/paste/webpack.config.js b/samples/grids/grid/paste/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/paste/webpack.config.js +++ b/samples/grids/grid/paste/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/remote-paging-data/package.json b/samples/grids/grid/remote-paging-data/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/remote-paging-data/package.json +++ b/samples/grids/grid/remote-paging-data/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/remote-paging-data/webpack.config.js b/samples/grids/grid/remote-paging-data/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/remote-paging-data/webpack.config.js +++ b/samples/grids/grid/remote-paging-data/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/remote-paging-grid/package.json b/samples/grids/grid/remote-paging-grid/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/grid/remote-paging-grid/package.json +++ b/samples/grids/grid/remote-paging-grid/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/remote-paging-grid/webpack.config.js b/samples/grids/grid/remote-paging-grid/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/remote-paging-grid/webpack.config.js +++ b/samples/grids/grid/remote-paging-grid/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-adding/package.json b/samples/grids/grid/row-adding/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/row-adding/package.json +++ b/samples/grids/grid/row-adding/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/row-adding/webpack.config.js b/samples/grids/grid/row-adding/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-adding/webpack.config.js +++ b/samples/grids/grid/row-adding/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-classes/package.json b/samples/grids/grid/row-classes/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/row-classes/package.json +++ b/samples/grids/grid/row-classes/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/row-classes/webpack.config.js b/samples/grids/grid/row-classes/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-classes/webpack.config.js +++ b/samples/grids/grid/row-classes/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-drag-base/package.json b/samples/grids/grid/row-drag-base/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/grid/row-drag-base/package.json +++ b/samples/grids/grid/row-drag-base/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/row-drag-base/webpack.config.js b/samples/grids/grid/row-drag-base/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/row-drag-base/webpack.config.js +++ b/samples/grids/grid/row-drag-base/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-editing-options/package.json b/samples/grids/grid/row-editing-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/row-editing-options/package.json +++ b/samples/grids/grid/row-editing-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/row-editing-options/webpack.config.js b/samples/grids/grid/row-editing-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-editing-options/webpack.config.js +++ b/samples/grids/grid/row-editing-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-editing-style/package.json b/samples/grids/grid/row-editing-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/row-editing-style/package.json +++ b/samples/grids/grid/row-editing-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/row-editing-style/webpack.config.js b/samples/grids/grid/row-editing-style/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-editing-style/webpack.config.js +++ b/samples/grids/grid/row-editing-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/row-paging-basic/package.json +++ b/samples/grids/grid/row-paging-basic/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/row-paging-basic/webpack.config.js b/samples/grids/grid/row-paging-basic/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-paging-basic/webpack.config.js +++ b/samples/grids/grid/row-paging-basic/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-paging-options/package.json b/samples/grids/grid/row-paging-options/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/row-paging-options/package.json +++ b/samples/grids/grid/row-paging-options/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/row-paging-options/webpack.config.js b/samples/grids/grid/row-paging-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-paging-options/webpack.config.js +++ b/samples/grids/grid/row-paging-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-pinning-drag/package.json b/samples/grids/grid/row-pinning-drag/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/row-pinning-drag/package.json +++ b/samples/grids/grid/row-pinning-drag/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/row-pinning-drag/webpack.config.js b/samples/grids/grid/row-pinning-drag/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-pinning-drag/webpack.config.js +++ b/samples/grids/grid/row-pinning-drag/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-pinning-extra-column/package.json b/samples/grids/grid/row-pinning-extra-column/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/row-pinning-extra-column/package.json +++ b/samples/grids/grid/row-pinning-extra-column/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-pinning-extra-column/webpack.config.js +++ b/samples/grids/grid/row-pinning-extra-column/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-pinning-options/package.json b/samples/grids/grid/row-pinning-options/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/row-pinning-options/package.json +++ b/samples/grids/grid/row-pinning-options/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/row-pinning-options/webpack.config.js b/samples/grids/grid/row-pinning-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-pinning-options/webpack.config.js +++ b/samples/grids/grid/row-pinning-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-pinning-style/package.json b/samples/grids/grid/row-pinning-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/row-pinning-style/package.json +++ b/samples/grids/grid/row-pinning-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/row-pinning-style/webpack.config.js b/samples/grids/grid/row-pinning-style/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-pinning-style/webpack.config.js +++ b/samples/grids/grid/row-pinning-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-reorder/package.json b/samples/grids/grid/row-reorder/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/row-reorder/package.json +++ b/samples/grids/grid/row-reorder/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/row-reorder/webpack.config.js b/samples/grids/grid/row-reorder/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-reorder/webpack.config.js +++ b/samples/grids/grid/row-reorder/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-selection-mode/package.json b/samples/grids/grid/row-selection-mode/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/row-selection-mode/package.json +++ b/samples/grids/grid/row-selection-mode/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/row-selection-mode/webpack.config.js b/samples/grids/grid/row-selection-mode/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-selection-mode/webpack.config.js +++ b/samples/grids/grid/row-selection-mode/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-selection-template-excel/package.json b/samples/grids/grid/row-selection-template-excel/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/row-selection-template-excel/package.json +++ b/samples/grids/grid/row-selection-template-excel/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-selection-template-excel/webpack.config.js +++ b/samples/grids/grid/row-selection-template-excel/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-selection-template-numbers/package.json b/samples/grids/grid/row-selection-template-numbers/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/row-selection-template-numbers/package.json +++ b/samples/grids/grid/row-selection-template-numbers/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-selection-template-numbers/webpack.config.js +++ b/samples/grids/grid/row-selection-template-numbers/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/row-styles/package.json b/samples/grids/grid/row-styles/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/grid/row-styles/package.json +++ b/samples/grids/grid/row-styles/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/row-styles/webpack.config.js b/samples/grids/grid/row-styles/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/row-styles/webpack.config.js +++ b/samples/grids/grid/row-styles/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/state-persistence-about/package.json b/samples/grids/grid/state-persistence-about/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/grid/state-persistence-about/package.json +++ b/samples/grids/grid/state-persistence-about/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/state-persistence-about/webpack.config.js b/samples/grids/grid/state-persistence-about/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/state-persistence-about/webpack.config.js +++ b/samples/grids/grid/state-persistence-about/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/state-persistence-main/package.json b/samples/grids/grid/state-persistence-main/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/grid/state-persistence-main/package.json +++ b/samples/grids/grid/state-persistence-main/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/state-persistence-main/webpack.config.js b/samples/grids/grid/state-persistence-main/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/state-persistence-main/webpack.config.js +++ b/samples/grids/grid/state-persistence-main/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/styling-custom-CSS/package.json b/samples/grids/grid/styling-custom-CSS/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/styling-custom-CSS/package.json +++ b/samples/grids/grid/styling-custom-CSS/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/styling-custom-CSS/webpack.config.js b/samples/grids/grid/styling-custom-CSS/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/styling-custom-CSS/webpack.config.js +++ b/samples/grids/grid/styling-custom-CSS/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/toolbar-sample-1/package.json b/samples/grids/grid/toolbar-sample-1/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/toolbar-sample-1/package.json +++ b/samples/grids/grid/toolbar-sample-1/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/toolbar-sample-1/webpack.config.js b/samples/grids/grid/toolbar-sample-1/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/toolbar-sample-1/webpack.config.js +++ b/samples/grids/grid/toolbar-sample-1/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/toolbar-sample-2/package.json b/samples/grids/grid/toolbar-sample-2/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/toolbar-sample-2/package.json +++ b/samples/grids/grid/toolbar-sample-2/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/toolbar-sample-2/webpack.config.js b/samples/grids/grid/toolbar-sample-2/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/toolbar-sample-2/webpack.config.js +++ b/samples/grids/grid/toolbar-sample-2/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/toolbar-sample-3/package.json b/samples/grids/grid/toolbar-sample-3/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/toolbar-sample-3/package.json +++ b/samples/grids/grid/toolbar-sample-3/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/toolbar-sample-3/webpack.config.js b/samples/grids/grid/toolbar-sample-3/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/toolbar-sample-3/webpack.config.js +++ b/samples/grids/grid/toolbar-sample-3/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/toolbar-sample-4/package.json b/samples/grids/grid/toolbar-sample-4/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/grid/toolbar-sample-4/package.json +++ b/samples/grids/grid/toolbar-sample-4/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/toolbar-sample-4/webpack.config.js b/samples/grids/grid/toolbar-sample-4/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/grid/toolbar-sample-4/webpack.config.js +++ b/samples/grids/grid/toolbar-sample-4/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/grid/toolbar-style/package.json b/samples/grids/grid/toolbar-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/grid/toolbar-style/package.json +++ b/samples/grids/grid/toolbar-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/grid/toolbar-style/webpack.config.js b/samples/grids/grid/toolbar-style/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/grid/toolbar-style/webpack.config.js +++ b/samples/grids/grid/toolbar-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/action-strip/package.json b/samples/grids/hierarchical-grid/action-strip/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/action-strip/package.json +++ b/samples/grids/hierarchical-grid/action-strip/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/action-strip/webpack.config.js b/samples/grids/hierarchical-grid/action-strip/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/action-strip/webpack.config.js +++ b/samples/grids/hierarchical-grid/action-strip/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/package.json b/samples/grids/hierarchical-grid/cell-editing-sample/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/webpack.config.js +++ b/samples/grids/hierarchical-grid/cell-editing-sample/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/package.json b/samples/grids/hierarchical-grid/cell-editing-styling/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/webpack.config.js +++ b/samples/grids/hierarchical-grid/cell-editing-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/package.json b/samples/grids/hierarchical-grid/cell-selection-mode/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/webpack.config.js +++ b/samples/grids/hierarchical-grid/cell-selection-mode/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/package.json b/samples/grids/hierarchical-grid/cell-selection-overview/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/webpack.config.js +++ b/samples/grids/hierarchical-grid/cell-selection-overview/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/cell-selection-style/package.json b/samples/grids/hierarchical-grid/cell-selection-style/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/cell-selection-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/cell-selection-styling/package.json b/samples/grids/hierarchical-grid/cell-selection-styling/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/hierarchical-grid/cell-selection-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-styling/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/cell-selection-styling/webpack.config.js b/samples/grids/hierarchical-grid/cell-selection-styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/hierarchical-grid/cell-selection-styling/webpack.config.js +++ b/samples/grids/hierarchical-grid/cell-selection-styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/package.json b/samples/grids/hierarchical-grid/column-auto-sizing/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/package.json +++ b/samples/grids/hierarchical-grid/column-auto-sizing/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/webpack.config.js b/samples/grids/hierarchical-grid/column-auto-sizing/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-auto-sizing/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-moving-options/package.json b/samples/grids/hierarchical-grid/column-moving-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/package.json +++ b/samples/grids/hierarchical-grid/column-moving-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-moving-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-moving-styles/package.json b/samples/grids/hierarchical-grid/column-moving-styles/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/package.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-moving-styles/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-pinning-options/package.json b/samples/grids/hierarchical-grid/column-pinning-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-pinning-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/package.json b/samples/grids/hierarchical-grid/column-pinning-styles/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-pinning-styles/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-pinning/package.json b/samples/grids/hierarchical-grid/column-pinning/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-pinning/package.json +++ b/samples/grids/hierarchical-grid/column-pinning/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/column-pinning/webpack.config.js b/samples/grids/hierarchical-grid/column-pinning/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-pinning/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-pinning/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-resize-styling/package.json b/samples/grids/hierarchical-grid/column-resize-styling/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/package.json +++ b/samples/grids/hierarchical-grid/column-resize-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-resize-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-resizing/package.json b/samples/grids/hierarchical-grid/column-resizing/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-resizing/package.json +++ b/samples/grids/hierarchical-grid/column-resizing/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/column-resizing/webpack.config.js b/samples/grids/hierarchical-grid/column-resizing/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-resizing/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-resizing/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-selection-group/package.json b/samples/grids/hierarchical-grid/column-selection-group/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/package.json +++ b/samples/grids/hierarchical-grid/column-selection-group/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-selection-group/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-selection-mode/package.json b/samples/grids/hierarchical-grid/column-selection-mode/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-selection-mode/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-selection-styles/package.json b/samples/grids/hierarchical-grid/column-selection-styles/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/package.json +++ b/samples/grids/hierarchical-grid/column-selection-styles/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-selection-styles/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-sorting-options/package.json b/samples/grids/hierarchical-grid/column-sorting-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-sorting-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/column-sorting-style/package.json b/samples/grids/hierarchical-grid/column-sorting-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/column-sorting-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/webpack.config.js +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/custom-filtering/package.json b/samples/grids/hierarchical-grid/custom-filtering/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/package.json +++ b/samples/grids/hierarchical-grid/custom-filtering/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/custom-filtering/webpack.config.js b/samples/grids/hierarchical-grid/custom-filtering/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/webpack.config.js +++ b/samples/grids/hierarchical-grid/custom-filtering/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/webpack.config.js b/samples/grids/hierarchical-grid/data-exporting-indicator/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/webpack.config.js +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/webpack.config.js b/samples/grids/hierarchical-grid/data-performance-virtualization/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/webpack.config.js +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/package.json b/samples/grids/hierarchical-grid/data-summary-formatter/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/package.json +++ b/samples/grids/hierarchical-grid/data-summary-formatter/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/webpack.config.js +++ b/samples/grids/hierarchical-grid/data-summary-formatter/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/data-summary-options/package.json b/samples/grids/hierarchical-grid/data-summary-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/data-summary-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/data-summary-template/package.json b/samples/grids/hierarchical-grid/data-summary-template/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/package.json +++ b/samples/grids/hierarchical-grid/data-summary-template/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/webpack.config.js +++ b/samples/grids/hierarchical-grid/data-summary-template/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/editing-columns/package.json b/samples/grids/hierarchical-grid/editing-columns/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/editing-columns/package.json +++ b/samples/grids/hierarchical-grid/editing-columns/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/editing-columns/webpack.config.js b/samples/grids/hierarchical-grid/editing-columns/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/editing-columns/webpack.config.js +++ b/samples/grids/hierarchical-grid/editing-columns/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/editing-events/package.json b/samples/grids/hierarchical-grid/editing-events/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/editing-events/package.json +++ b/samples/grids/hierarchical-grid/editing-events/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/editing-events/webpack.config.js b/samples/grids/hierarchical-grid/editing-events/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/editing-events/webpack.config.js +++ b/samples/grids/hierarchical-grid/editing-events/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/package.json b/samples/grids/hierarchical-grid/editing-lifecycle/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/package.json +++ b/samples/grids/hierarchical-grid/editing-lifecycle/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/webpack.config.js b/samples/grids/hierarchical-grid/editing-lifecycle/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/webpack.config.js +++ b/samples/grids/hierarchical-grid/editing-lifecycle/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/excel-exporting/package.json b/samples/grids/hierarchical-grid/excel-exporting/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/package.json +++ b/samples/grids/hierarchical-grid/excel-exporting/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/excel-exporting/webpack.config.js b/samples/grids/hierarchical-grid/excel-exporting/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/webpack.config.js +++ b/samples/grids/hierarchical-grid/excel-exporting/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/filtering-options/package.json b/samples/grids/hierarchical-grid/filtering-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/filtering-options/package.json +++ b/samples/grids/hierarchical-grid/filtering-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/filtering-options/webpack.config.js b/samples/grids/hierarchical-grid/filtering-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/filtering-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/filtering-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/filtering-style/package.json b/samples/grids/hierarchical-grid/filtering-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/filtering-style/package.json +++ b/samples/grids/hierarchical-grid/filtering-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/filtering-style/webpack.config.js b/samples/grids/hierarchical-grid/filtering-style/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/filtering-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/filtering-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/webpack.config.js +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/layout-display-density/package.json b/samples/grids/hierarchical-grid/layout-display-density/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/package.json +++ b/samples/grids/hierarchical-grid/layout-display-density/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/webpack.config.js +++ b/samples/grids/hierarchical-grid/layout-display-density/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/overview/package.json b/samples/grids/hierarchical-grid/overview/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/overview/package.json +++ b/samples/grids/hierarchical-grid/overview/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/overview/webpack.config.js b/samples/grids/hierarchical-grid/overview/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/overview/webpack.config.js +++ b/samples/grids/hierarchical-grid/overview/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/package.json b/samples/grids/hierarchical-grid/remote-paging-sample/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/hierarchical-grid/remote-paging-sample/package.json +++ b/samples/grids/hierarchical-grid/remote-paging-sample/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/remote-paging-sample/webpack.config.js b/samples/grids/hierarchical-grid/remote-paging-sample/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/hierarchical-grid/remote-paging-sample/webpack.config.js +++ b/samples/grids/hierarchical-grid/remote-paging-sample/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/row-adding/package.json b/samples/grids/hierarchical-grid/row-adding/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/row-adding/package.json +++ b/samples/grids/hierarchical-grid/row-adding/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/row-adding/webpack.config.js b/samples/grids/hierarchical-grid/row-adding/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/row-adding/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-adding/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/row-classes/package.json b/samples/grids/hierarchical-grid/row-classes/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/row-classes/package.json +++ b/samples/grids/hierarchical-grid/row-classes/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/row-classes/webpack.config.js b/samples/grids/hierarchical-grid/row-classes/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/row-classes/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-classes/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/row-drag-base/package.json b/samples/grids/hierarchical-grid/row-drag-base/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/package.json +++ b/samples/grids/hierarchical-grid/row-drag-base/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/row-drag-base/webpack.config.js b/samples/grids/hierarchical-grid/row-drag-base/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-drag-base/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/row-editing-options/package.json b/samples/grids/hierarchical-grid/row-editing-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/package.json +++ b/samples/grids/hierarchical-grid/row-editing-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-editing-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/row-editing-style/package.json b/samples/grids/hierarchical-grid/row-editing-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/package.json +++ b/samples/grids/hierarchical-grid/row-editing-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-editing-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/row-pinning-options/package.json b/samples/grids/hierarchical-grid/row-pinning-options/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-pinning-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/row-pinning-style/package.json b/samples/grids/hierarchical-grid/row-pinning-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-pinning-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/row-reorder/package.json b/samples/grids/hierarchical-grid/row-reorder/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/row-reorder/package.json +++ b/samples/grids/hierarchical-grid/row-reorder/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/row-reorder/webpack.config.js b/samples/grids/hierarchical-grid/row-reorder/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/row-reorder/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-reorder/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/row-selection-mode/package.json b/samples/grids/hierarchical-grid/row-selection-mode/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-selection-mode/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/row-styles/package.json b/samples/grids/hierarchical-grid/row-styles/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/row-styles/package.json +++ b/samples/grids/hierarchical-grid/row-styles/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/row-styles/webpack.config.js b/samples/grids/hierarchical-grid/row-styles/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/row-styles/webpack.config.js +++ b/samples/grids/hierarchical-grid/row-styles/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/state-persistence-about/package.json b/samples/grids/hierarchical-grid/state-persistence-about/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-about/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/state-persistence-about/webpack.config.js b/samples/grids/hierarchical-grid/state-persistence-about/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/webpack.config.js +++ b/samples/grids/hierarchical-grid/state-persistence-about/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/state-persistence-main/package.json b/samples/grids/hierarchical-grid/state-persistence-main/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-main/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/state-persistence-main/webpack.config.js b/samples/grids/hierarchical-grid/state-persistence-main/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/webpack.config.js +++ b/samples/grids/hierarchical-grid/state-persistence-main/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-1/package.json b/samples/grids/hierarchical-grid/toolbar-sample-1/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-1/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-1/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-1/webpack.config.js +++ b/samples/grids/hierarchical-grid/toolbar-sample-1/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-2/package.json b/samples/grids/hierarchical-grid/toolbar-sample-2/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-2/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-2/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-2/webpack.config.js +++ b/samples/grids/hierarchical-grid/toolbar-sample-2/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/webpack.config.js +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/webpack.config.js b/samples/grids/hierarchical-grid/toolbar-sample-4/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/webpack.config.js +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/hierarchical-grid/toolbar-style/package.json b/samples/grids/hierarchical-grid/toolbar-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/toolbar-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/hierarchical-grid/toolbar-style/webpack.config.js b/samples/grids/hierarchical-grid/toolbar-style/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/webpack.config.js +++ b/samples/grids/hierarchical-grid/toolbar-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/list/add-list-items/package.json b/samples/grids/list/add-list-items/package.json index 834b13342a..00539d5074 100644 --- a/samples/grids/list/add-list-items/package.json +++ b/samples/grids/list/add-list-items/package.json @@ -24,7 +24,7 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit": "^3.2.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" @@ -32,7 +32,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/list/add-list-items/webpack.config.js b/samples/grids/list/add-list-items/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/list/add-list-items/webpack.config.js +++ b/samples/grids/list/add-list-items/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/list/list-item-content/package.json b/samples/grids/list/list-item-content/package.json index fd07fed2b1..37cb0e4282 100644 --- a/samples/grids/list/list-item-content/package.json +++ b/samples/grids/list/list-item-content/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/list/list-item-content/webpack.config.js b/samples/grids/list/list-item-content/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/list/list-item-content/webpack.config.js +++ b/samples/grids/list/list-item-content/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/list/overview/package.json b/samples/grids/list/overview/package.json index d76b51d4e3..466edace64 100644 --- a/samples/grids/list/overview/package.json +++ b/samples/grids/list/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/list/overview/webpack.config.js b/samples/grids/list/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/list/overview/webpack.config.js +++ b/samples/grids/list/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/list/styling/package.json b/samples/grids/list/styling/package.json index 9e26367b5f..c30ad15888 100644 --- a/samples/grids/list/styling/package.json +++ b/samples/grids/list/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/list/styling/webpack.config.js b/samples/grids/list/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/list/styling/webpack.config.js +++ b/samples/grids/list/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/pivot-grid/aggregate-max-sales/package.json b/samples/grids/pivot-grid/aggregate-max-sales/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/package.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/webpack.config.js +++ b/samples/grids/pivot-grid/aggregate-max-sales/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/pivot-grid/aggregate-units-sold/package.json b/samples/grids/pivot-grid/aggregate-units-sold/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/package.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/webpack.config.js +++ b/samples/grids/pivot-grid/aggregate-units-sold/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/pivot-grid/basic/package.json b/samples/grids/pivot-grid/basic/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/pivot-grid/basic/package.json +++ b/samples/grids/pivot-grid/basic/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/pivot-grid/basic/webpack.config.js b/samples/grids/pivot-grid/basic/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/pivot-grid/basic/webpack.config.js +++ b/samples/grids/pivot-grid/basic/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/pivot-grid/data-persistence-noop/package.json b/samples/grids/pivot-grid/data-persistence-noop/package.json index 9a7373f3e9..4e28279b1a 100644 --- a/samples/grids/pivot-grid/data-persistence-noop/package.json +++ b/samples/grids/pivot-grid/data-persistence-noop/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/pivot-grid/data-persistence-noop/webpack.config.js b/samples/grids/pivot-grid/data-persistence-noop/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/pivot-grid/data-persistence-noop/webpack.config.js +++ b/samples/grids/pivot-grid/data-persistence-noop/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/pivot-grid/data-selector/package.json b/samples/grids/pivot-grid/data-selector/package.json index eb76ad7c02..21eb5d7435 100644 --- a/samples/grids/pivot-grid/data-selector/package.json +++ b/samples/grids/pivot-grid/data-selector/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/pivot-grid/data-selector/webpack.config.js b/samples/grids/pivot-grid/data-selector/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/pivot-grid/data-selector/webpack.config.js +++ b/samples/grids/pivot-grid/data-selector/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/pivot-grid/features/package.json b/samples/grids/pivot-grid/features/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/pivot-grid/features/package.json +++ b/samples/grids/pivot-grid/features/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/pivot-grid/features/webpack.config.js b/samples/grids/pivot-grid/features/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/pivot-grid/features/webpack.config.js +++ b/samples/grids/pivot-grid/features/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/pivot-grid/remote/package.json b/samples/grids/pivot-grid/remote/package.json index eb76ad7c02..21eb5d7435 100644 --- a/samples/grids/pivot-grid/remote/package.json +++ b/samples/grids/pivot-grid/remote/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/pivot-grid/remote/webpack.config.js b/samples/grids/pivot-grid/remote/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/pivot-grid/remote/webpack.config.js +++ b/samples/grids/pivot-grid/remote/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/pivot-grid/state-persistence-about/package.json b/samples/grids/pivot-grid/state-persistence-about/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/pivot-grid/state-persistence-about/package.json +++ b/samples/grids/pivot-grid/state-persistence-about/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/pivot-grid/state-persistence-about/webpack.config.js b/samples/grids/pivot-grid/state-persistence-about/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/pivot-grid/state-persistence-about/webpack.config.js +++ b/samples/grids/pivot-grid/state-persistence-about/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/pivot-grid/state-persistence-main/package.json b/samples/grids/pivot-grid/state-persistence-main/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/pivot-grid/state-persistence-main/package.json +++ b/samples/grids/pivot-grid/state-persistence-main/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/pivot-grid/state-persistence-main/webpack.config.js b/samples/grids/pivot-grid/state-persistence-main/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/pivot-grid/state-persistence-main/webpack.config.js +++ b/samples/grids/pivot-grid/state-persistence-main/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/action-strip/package.json b/samples/grids/tree-grid/action-strip/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/action-strip/package.json +++ b/samples/grids/tree-grid/action-strip/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/action-strip/webpack.config.js b/samples/grids/tree-grid/action-strip/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/action-strip/webpack.config.js +++ b/samples/grids/tree-grid/action-strip/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/advanced-filtering-options/package.json b/samples/grids/tree-grid/advanced-filtering-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/package.json +++ b/samples/grids/tree-grid/advanced-filtering-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/webpack.config.js +++ b/samples/grids/tree-grid/advanced-filtering-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/advanced-filtering-style/package.json b/samples/grids/tree-grid/advanced-filtering-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/package.json +++ b/samples/grids/tree-grid/advanced-filtering-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/webpack.config.js +++ b/samples/grids/tree-grid/advanced-filtering-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/cell-editing-sample/package.json +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/cell-editing-sample/webpack.config.js +++ b/samples/grids/tree-grid/cell-editing-sample/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/cell-editing-styling/package.json b/samples/grids/tree-grid/cell-editing-styling/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/cell-editing-styling/package.json +++ b/samples/grids/tree-grid/cell-editing-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/cell-editing-styling/webpack.config.js +++ b/samples/grids/tree-grid/cell-editing-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/cell-selection-mode/package.json b/samples/grids/tree-grid/cell-selection-mode/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/cell-selection-mode/package.json +++ b/samples/grids/tree-grid/cell-selection-mode/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/cell-selection-mode/webpack.config.js +++ b/samples/grids/tree-grid/cell-selection-mode/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/cell-selection-style/package.json b/samples/grids/tree-grid/cell-selection-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/cell-selection-style/package.json +++ b/samples/grids/tree-grid/cell-selection-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/cell-selection-style/webpack.config.js +++ b/samples/grids/tree-grid/cell-selection-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/clipboard-operations/package.json b/samples/grids/tree-grid/clipboard-operations/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/tree-grid/clipboard-operations/package.json +++ b/samples/grids/tree-grid/clipboard-operations/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/clipboard-operations/webpack.config.js b/samples/grids/tree-grid/clipboard-operations/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/clipboard-operations/webpack.config.js +++ b/samples/grids/tree-grid/clipboard-operations/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-auto-sizing/package.json b/samples/grids/tree-grid/column-auto-sizing/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-auto-sizing/package.json +++ b/samples/grids/tree-grid/column-auto-sizing/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-auto-sizing/webpack.config.js +++ b/samples/grids/tree-grid/column-auto-sizing/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-collapsible-groups/package.json b/samples/grids/tree-grid/column-collapsible-groups/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/package.json +++ b/samples/grids/tree-grid/column-collapsible-groups/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/webpack.config.js +++ b/samples/grids/tree-grid/column-collapsible-groups/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-data-types/package.json b/samples/grids/tree-grid/column-data-types/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/tree-grid/column-data-types/package.json +++ b/samples/grids/tree-grid/column-data-types/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/column-data-types/webpack.config.js b/samples/grids/tree-grid/column-data-types/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/column-data-types/webpack.config.js +++ b/samples/grids/tree-grid/column-data-types/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-hiding-toolbar/package.json b/samples/grids/tree-grid/column-hiding-toolbar/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/webpack.config.js +++ b/samples/grids/tree-grid/column-hiding-toolbar/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-moving-options/package.json b/samples/grids/tree-grid/column-moving-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-moving-options/package.json +++ b/samples/grids/tree-grid/column-moving-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-moving-options/webpack.config.js +++ b/samples/grids/tree-grid/column-moving-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-moving-styles/package.json b/samples/grids/tree-grid/column-moving-styles/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-moving-styles/package.json +++ b/samples/grids/tree-grid/column-moving-styles/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-moving-styles/webpack.config.js +++ b/samples/grids/tree-grid/column-moving-styles/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-pinning-options/package.json b/samples/grids/tree-grid/column-pinning-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-pinning-options/package.json +++ b/samples/grids/tree-grid/column-pinning-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-pinning-options/webpack.config.js +++ b/samples/grids/tree-grid/column-pinning-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-pinning-right-side/package.json b/samples/grids/tree-grid/column-pinning-right-side/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/package.json +++ b/samples/grids/tree-grid/column-pinning-right-side/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-pinning-styles/package.json b/samples/grids/tree-grid/column-pinning-styles/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-pinning-styles/package.json +++ b/samples/grids/tree-grid/column-pinning-styles/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-pinning-styles/webpack.config.js +++ b/samples/grids/tree-grid/column-pinning-styles/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-pinning-toolbar/package.json b/samples/grids/tree-grid/column-pinning-toolbar/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/package.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/webpack.config.js +++ b/samples/grids/tree-grid/column-pinning-toolbar/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-pinning/package.json b/samples/grids/tree-grid/column-pinning/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-pinning/package.json +++ b/samples/grids/tree-grid/column-pinning/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/column-pinning/webpack.config.js b/samples/grids/tree-grid/column-pinning/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-pinning/webpack.config.js +++ b/samples/grids/tree-grid/column-pinning/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-resize-styling/package.json b/samples/grids/tree-grid/column-resize-styling/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-resize-styling/package.json +++ b/samples/grids/tree-grid/column-resize-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-resize-styling/webpack.config.js +++ b/samples/grids/tree-grid/column-resize-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-resizing/package.json b/samples/grids/tree-grid/column-resizing/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-resizing/package.json +++ b/samples/grids/tree-grid/column-resizing/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/column-resizing/webpack.config.js b/samples/grids/tree-grid/column-resizing/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-resizing/webpack.config.js +++ b/samples/grids/tree-grid/column-resizing/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-selection-group/package.json b/samples/grids/tree-grid/column-selection-group/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-selection-group/package.json +++ b/samples/grids/tree-grid/column-selection-group/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-selection-group/webpack.config.js +++ b/samples/grids/tree-grid/column-selection-group/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-selection-mode/package.json b/samples/grids/tree-grid/column-selection-mode/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/column-selection-mode/package.json +++ b/samples/grids/tree-grid/column-selection-mode/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-selection-mode/webpack.config.js +++ b/samples/grids/tree-grid/column-selection-mode/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-selection-style/package.json b/samples/grids/tree-grid/column-selection-style/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/tree-grid/column-selection-style/package.json +++ b/samples/grids/tree-grid/column-selection-style/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/column-selection-style/webpack.config.js b/samples/grids/tree-grid/column-selection-style/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/column-selection-style/webpack.config.js +++ b/samples/grids/tree-grid/column-selection-style/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-selection-styles/package.json b/samples/grids/tree-grid/column-selection-styles/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-selection-styles/package.json +++ b/samples/grids/tree-grid/column-selection-styles/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-selection-styles/webpack.config.js +++ b/samples/grids/tree-grid/column-selection-styles/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-sorting-indicators/package.json b/samples/grids/tree-grid/column-sorting-indicators/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/package.json +++ b/samples/grids/tree-grid/column-sorting-indicators/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/webpack.config.js +++ b/samples/grids/tree-grid/column-sorting-indicators/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-sorting-options/package.json b/samples/grids/tree-grid/column-sorting-options/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/column-sorting-options/package.json +++ b/samples/grids/tree-grid/column-sorting-options/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-sorting-options/webpack.config.js +++ b/samples/grids/tree-grid/column-sorting-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/column-sorting-style/package.json b/samples/grids/tree-grid/column-sorting-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/column-sorting-style/package.json +++ b/samples/grids/tree-grid/column-sorting-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/column-sorting-style/webpack.config.js +++ b/samples/grids/tree-grid/column-sorting-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/conditional-cell-style-1/package.json b/samples/grids/tree-grid/conditional-cell-style-1/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/conditional-cell-style-2/package.json b/samples/grids/tree-grid/conditional-cell-style-2/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-2/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/conditional-row-selectors/package.json b/samples/grids/tree-grid/conditional-row-selectors/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/package.json +++ b/samples/grids/tree-grid/conditional-row-selectors/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/webpack.config.js +++ b/samples/grids/tree-grid/conditional-row-selectors/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/custom-filtering/package.json b/samples/grids/tree-grid/custom-filtering/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/tree-grid/custom-filtering/package.json +++ b/samples/grids/tree-grid/custom-filtering/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/custom-filtering/webpack.config.js b/samples/grids/tree-grid/custom-filtering/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/custom-filtering/webpack.config.js +++ b/samples/grids/tree-grid/custom-filtering/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/data-exporting-indicator/package.json b/samples/grids/tree-grid/data-exporting-indicator/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/package.json +++ b/samples/grids/tree-grid/data-exporting-indicator/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/data-exporting-indicator/webpack.config.js b/samples/grids/tree-grid/data-exporting-indicator/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/webpack.config.js +++ b/samples/grids/tree-grid/data-exporting-indicator/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/data-searching/package.json b/samples/grids/tree-grid/data-searching/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/tree-grid/data-searching/package.json +++ b/samples/grids/tree-grid/data-searching/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/data-searching/webpack.config.js b/samples/grids/tree-grid/data-searching/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/data-searching/webpack.config.js +++ b/samples/grids/tree-grid/data-searching/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/data-summaries-custom/package.json b/samples/grids/tree-grid/data-summaries-custom/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/tree-grid/data-summaries-custom/package.json +++ b/samples/grids/tree-grid/data-summaries-custom/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/data-summaries-custom/webpack.config.js b/samples/grids/tree-grid/data-summaries-custom/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/data-summaries-custom/webpack.config.js +++ b/samples/grids/tree-grid/data-summaries-custom/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/data-summary-children/package.json b/samples/grids/tree-grid/data-summary-children/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/data-summary-children/package.json +++ b/samples/grids/tree-grid/data-summary-children/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/data-summary-children/webpack.config.js +++ b/samples/grids/tree-grid/data-summary-children/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/data-summary-formatter/package.json b/samples/grids/tree-grid/data-summary-formatter/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/data-summary-formatter/package.json +++ b/samples/grids/tree-grid/data-summary-formatter/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/data-summary-formatter/webpack.config.js +++ b/samples/grids/tree-grid/data-summary-formatter/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/data-summary-options-styling/package.json b/samples/grids/tree-grid/data-summary-options-styling/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/package.json +++ b/samples/grids/tree-grid/data-summary-options-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/data-summary-options/package.json b/samples/grids/tree-grid/data-summary-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/data-summary-options/package.json +++ b/samples/grids/tree-grid/data-summary-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/data-summary-options/webpack.config.js +++ b/samples/grids/tree-grid/data-summary-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/data-summary-template/package.json b/samples/grids/tree-grid/data-summary-template/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/data-summary-template/package.json +++ b/samples/grids/tree-grid/data-summary-template/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/data-summary-template/webpack.config.js +++ b/samples/grids/tree-grid/data-summary-template/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/editing-columns/package.json b/samples/grids/tree-grid/editing-columns/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/editing-columns/package.json +++ b/samples/grids/tree-grid/editing-columns/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/editing-columns/webpack.config.js b/samples/grids/tree-grid/editing-columns/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/editing-columns/webpack.config.js +++ b/samples/grids/tree-grid/editing-columns/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/editing-events/package.json b/samples/grids/tree-grid/editing-events/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/editing-events/package.json +++ b/samples/grids/tree-grid/editing-events/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/editing-events/webpack.config.js b/samples/grids/tree-grid/editing-events/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/editing-events/webpack.config.js +++ b/samples/grids/tree-grid/editing-events/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/editing-lifecycle/package.json b/samples/grids/tree-grid/editing-lifecycle/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/editing-lifecycle/package.json +++ b/samples/grids/tree-grid/editing-lifecycle/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/editing-lifecycle/webpack.config.js b/samples/grids/tree-grid/editing-lifecycle/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/editing-lifecycle/webpack.config.js +++ b/samples/grids/tree-grid/editing-lifecycle/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/excel-exporting/package.json b/samples/grids/tree-grid/excel-exporting/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/excel-exporting/package.json +++ b/samples/grids/tree-grid/excel-exporting/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/excel-exporting/webpack.config.js b/samples/grids/tree-grid/excel-exporting/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/excel-exporting/webpack.config.js +++ b/samples/grids/tree-grid/excel-exporting/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/excel-style-filtering-style/package.json b/samples/grids/tree-grid/excel-style-filtering-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/filtering-options/package.json b/samples/grids/tree-grid/filtering-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/filtering-options/package.json +++ b/samples/grids/tree-grid/filtering-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/filtering-options/webpack.config.js b/samples/grids/tree-grid/filtering-options/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/filtering-options/webpack.config.js +++ b/samples/grids/tree-grid/filtering-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/filtering-style/package.json b/samples/grids/tree-grid/filtering-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/filtering-style/package.json +++ b/samples/grids/tree-grid/filtering-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/filtering-style/webpack.config.js b/samples/grids/tree-grid/filtering-style/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/filtering-style/webpack.config.js +++ b/samples/grids/tree-grid/filtering-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/finjs/package.json b/samples/grids/tree-grid/finjs/package.json index 2f11499b49..a416730c1c 100644 --- a/samples/grids/tree-grid/finjs/package.json +++ b/samples/grids/tree-grid/finjs/package.json @@ -26,18 +26,19 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/finjs/webpack.config.js b/samples/grids/tree-grid/finjs/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/finjs/webpack.config.js +++ b/samples/grids/tree-grid/finjs/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/package.json b/samples/grids/tree-grid/keyboard-custom-navigation/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/package.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/webpack.config.js +++ b/samples/grids/tree-grid/keyboard-custom-navigation/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/package.json b/samples/grids/tree-grid/keyboard-navigation-guide/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/tree-grid/keyboard-navigation-guide/package.json +++ b/samples/grids/tree-grid/keyboard-navigation-guide/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/keyboard-navigation-guide/webpack.config.js b/samples/grids/tree-grid/keyboard-navigation-guide/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/keyboard-navigation-guide/webpack.config.js +++ b/samples/grids/tree-grid/keyboard-navigation-guide/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/layout-display-density/package.json b/samples/grids/tree-grid/layout-display-density/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/layout-display-density/package.json +++ b/samples/grids/tree-grid/layout-display-density/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/layout-display-density/webpack.config.js +++ b/samples/grids/tree-grid/layout-display-density/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/load-on-demand/package.json b/samples/grids/tree-grid/load-on-demand/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/tree-grid/load-on-demand/package.json +++ b/samples/grids/tree-grid/load-on-demand/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/load-on-demand/webpack.config.js b/samples/grids/tree-grid/load-on-demand/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/load-on-demand/webpack.config.js +++ b/samples/grids/tree-grid/load-on-demand/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/package.json b/samples/grids/tree-grid/multi-cell-selection-mode/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/package.json +++ b/samples/grids/tree-grid/multi-cell-selection-mode/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/webpack.config.js b/samples/grids/tree-grid/multi-cell-selection-mode/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/webpack.config.js +++ b/samples/grids/tree-grid/multi-cell-selection-mode/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/multi-column-headers-export/package.json b/samples/grids/tree-grid/multi-column-headers-export/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/package.json +++ b/samples/grids/tree-grid/multi-column-headers-export/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/multi-column-headers-overview/package.json b/samples/grids/tree-grid/multi-column-headers-overview/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/package.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/multi-column-headers-styling/package.json b/samples/grids/tree-grid/multi-column-headers-styling/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/package.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/multi-column-headers-template/package.json b/samples/grids/tree-grid/multi-column-headers-template/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/package.json +++ b/samples/grids/tree-grid/multi-column-headers-template/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/overview-styling/package.json b/samples/grids/tree-grid/overview-styling/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/overview-styling/package.json +++ b/samples/grids/tree-grid/overview-styling/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/overview-styling/webpack.config.js b/samples/grids/tree-grid/overview-styling/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/overview-styling/webpack.config.js +++ b/samples/grids/tree-grid/overview-styling/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/overview/package.json b/samples/grids/tree-grid/overview/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/overview/package.json +++ b/samples/grids/tree-grid/overview/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/overview/webpack.config.js b/samples/grids/tree-grid/overview/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/overview/webpack.config.js +++ b/samples/grids/tree-grid/overview/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-adding/package.json b/samples/grids/tree-grid/row-adding/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/row-adding/package.json +++ b/samples/grids/tree-grid/row-adding/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/row-adding/webpack.config.js b/samples/grids/tree-grid/row-adding/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/row-adding/webpack.config.js +++ b/samples/grids/tree-grid/row-adding/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-classes/package.json b/samples/grids/tree-grid/row-classes/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/row-classes/package.json +++ b/samples/grids/tree-grid/row-classes/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/row-classes/webpack.config.js b/samples/grids/tree-grid/row-classes/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/row-classes/webpack.config.js +++ b/samples/grids/tree-grid/row-classes/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-drag-base/package.json b/samples/grids/tree-grid/row-drag-base/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/tree-grid/row-drag-base/package.json +++ b/samples/grids/tree-grid/row-drag-base/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/row-drag-base/webpack.config.js b/samples/grids/tree-grid/row-drag-base/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/row-drag-base/webpack.config.js +++ b/samples/grids/tree-grid/row-drag-base/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-editing-options/package.json b/samples/grids/tree-grid/row-editing-options/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/row-editing-options/package.json +++ b/samples/grids/tree-grid/row-editing-options/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/row-editing-options/webpack.config.js +++ b/samples/grids/tree-grid/row-editing-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-editing-style/package.json b/samples/grids/tree-grid/row-editing-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/row-editing-style/package.json +++ b/samples/grids/tree-grid/row-editing-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/row-editing-style/webpack.config.js +++ b/samples/grids/tree-grid/row-editing-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-paging-basic/package.json b/samples/grids/tree-grid/row-paging-basic/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/row-paging-basic/package.json +++ b/samples/grids/tree-grid/row-paging-basic/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/row-paging-basic/webpack.config.js +++ b/samples/grids/tree-grid/row-paging-basic/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-paging-options/package.json b/samples/grids/tree-grid/row-paging-options/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/row-paging-options/package.json +++ b/samples/grids/tree-grid/row-paging-options/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/row-paging-options/webpack.config.js +++ b/samples/grids/tree-grid/row-paging-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-paging-style/package.json b/samples/grids/tree-grid/row-paging-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/row-paging-style/package.json +++ b/samples/grids/tree-grid/row-paging-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/row-paging-style/webpack.config.js +++ b/samples/grids/tree-grid/row-paging-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-pinning-extra-column/package.json b/samples/grids/tree-grid/row-pinning-extra-column/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/package.json +++ b/samples/grids/tree-grid/row-pinning-extra-column/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-pinning-options/package.json b/samples/grids/tree-grid/row-pinning-options/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/row-pinning-options/package.json +++ b/samples/grids/tree-grid/row-pinning-options/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/row-pinning-options/webpack.config.js +++ b/samples/grids/tree-grid/row-pinning-options/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-pinning-style/package.json b/samples/grids/tree-grid/row-pinning-style/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/row-pinning-style/package.json +++ b/samples/grids/tree-grid/row-pinning-style/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/row-pinning-style/webpack.config.js +++ b/samples/grids/tree-grid/row-pinning-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-reorder/package.json b/samples/grids/tree-grid/row-reorder/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/row-reorder/package.json +++ b/samples/grids/tree-grid/row-reorder/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/row-reorder/webpack.config.js b/samples/grids/tree-grid/row-reorder/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/row-reorder/webpack.config.js +++ b/samples/grids/tree-grid/row-reorder/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-selection-mode/package.json b/samples/grids/tree-grid/row-selection-mode/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/row-selection-mode/package.json +++ b/samples/grids/tree-grid/row-selection-mode/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/row-selection-mode/webpack.config.js +++ b/samples/grids/tree-grid/row-selection-mode/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-selection-template-excel/package.json b/samples/grids/tree-grid/row-selection-template-excel/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/package.json +++ b/samples/grids/tree-grid/row-selection-template-excel/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-selection-template-numbers/package.json b/samples/grids/tree-grid/row-selection-template-numbers/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/package.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/row-styles/package.json b/samples/grids/tree-grid/row-styles/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/row-styles/package.json +++ b/samples/grids/tree-grid/row-styles/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/row-styles/webpack.config.js b/samples/grids/tree-grid/row-styles/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/row-styles/webpack.config.js +++ b/samples/grids/tree-grid/row-styles/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/state-persistence-about/package.json b/samples/grids/tree-grid/state-persistence-about/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/tree-grid/state-persistence-about/package.json +++ b/samples/grids/tree-grid/state-persistence-about/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/state-persistence-about/webpack.config.js b/samples/grids/tree-grid/state-persistence-about/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/state-persistence-about/webpack.config.js +++ b/samples/grids/tree-grid/state-persistence-about/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/state-persistence-main/package.json b/samples/grids/tree-grid/state-persistence-main/package.json index adac97a09e..8d33b71264 100644 --- a/samples/grids/tree-grid/state-persistence-main/package.json +++ b/samples/grids/tree-grid/state-persistence-main/package.json @@ -27,17 +27,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/state-persistence-main/webpack.config.js b/samples/grids/tree-grid/state-persistence-main/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/state-persistence-main/webpack.config.js +++ b/samples/grids/tree-grid/state-persistence-main/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/toolbar-sample-1/package.json b/samples/grids/tree-grid/toolbar-sample-1/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/package.json +++ b/samples/grids/tree-grid/toolbar-sample-1/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/webpack.config.js +++ b/samples/grids/tree-grid/toolbar-sample-1/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/toolbar-sample-2/package.json b/samples/grids/tree-grid/toolbar-sample-2/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/package.json +++ b/samples/grids/tree-grid/toolbar-sample-2/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/toolbar-sample-2/webpack.config.js b/samples/grids/tree-grid/toolbar-sample-2/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/webpack.config.js +++ b/samples/grids/tree-grid/toolbar-sample-2/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/toolbar-sample-3/package.json b/samples/grids/tree-grid/toolbar-sample-3/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/package.json +++ b/samples/grids/tree-grid/toolbar-sample-3/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/webpack.config.js +++ b/samples/grids/tree-grid/toolbar-sample-3/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/toolbar-sample-4/package.json b/samples/grids/tree-grid/toolbar-sample-4/package.json index cdb657b4e1..dc6c474090 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/package.json +++ b/samples/grids/tree-grid/toolbar-sample-4/package.json @@ -26,17 +26,18 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/toolbar-sample-4/webpack.config.js b/samples/grids/tree-grid/toolbar-sample-4/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/webpack.config.js +++ b/samples/grids/tree-grid/toolbar-sample-4/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/toolbar-style/package.json b/samples/grids/tree-grid/toolbar-style/package.json index 5edf764eb8..3cee119924 100644 --- a/samples/grids/tree-grid/toolbar-style/package.json +++ b/samples/grids/tree-grid/toolbar-style/package.json @@ -24,17 +24,18 @@ "dependencies": { "babel-runtime": "^6.26.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree-grid/toolbar-style/webpack.config.js b/samples/grids/tree-grid/toolbar-style/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/grids/tree-grid/toolbar-style/webpack.config.js +++ b/samples/grids/tree-grid/toolbar-style/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/package.json b/samples/grids/tree-grid/using-primary-foreign-keys/package.json index 83cda268f9..c533caca72 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/package.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/package.json @@ -23,17 +23,18 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-grids": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", - "igniteui-webcomponents-layouts": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", 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 1de7f08279..e90479cd73 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 @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree/basic-example/package.json b/samples/grids/tree/basic-example/package.json index 312f0b2bd7..b6a9202891 100644 --- a/samples/grids/tree/basic-example/package.json +++ b/samples/grids/tree/basic-example/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree/basic-example/webpack.config.js b/samples/grids/tree/basic-example/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree/basic-example/webpack.config.js +++ b/samples/grids/tree/basic-example/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree/load-on-demand-virtualized/package.json b/samples/grids/tree/load-on-demand-virtualized/package.json index ba04c8410d..b949be0348 100644 --- a/samples/grids/tree/load-on-demand-virtualized/package.json +++ b/samples/grids/tree/load-on-demand-virtualized/package.json @@ -33,7 +33,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree/load-on-demand-virtualized/webpack.config.js b/samples/grids/tree/load-on-demand-virtualized/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree/load-on-demand-virtualized/webpack.config.js +++ b/samples/grids/tree/load-on-demand-virtualized/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/grids/tree/load-on-demand/package.json b/samples/grids/tree/load-on-demand/package.json index dbd4c5fdad..510d101b40 100644 --- a/samples/grids/tree/load-on-demand/package.json +++ b/samples/grids/tree/load-on-demand/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/grids/tree/load-on-demand/webpack.config.js b/samples/grids/tree/load-on-demand/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/grids/tree/load-on-demand/webpack.config.js +++ b/samples/grids/tree/load-on-demand/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/badge/outlined/package.json b/samples/inputs/badge/outlined/package.json index cfde1c1c60..aeb708fd24 100644 --- a/samples/inputs/badge/outlined/package.json +++ b/samples/inputs/badge/outlined/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/badge/outlined/webpack.config.js b/samples/inputs/badge/outlined/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/badge/outlined/webpack.config.js +++ b/samples/inputs/badge/outlined/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/badge/shape/package.json b/samples/inputs/badge/shape/package.json index 24bd3ebecf..4475cc8f3b 100644 --- a/samples/inputs/badge/shape/package.json +++ b/samples/inputs/badge/shape/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/badge/shape/webpack.config.js b/samples/inputs/badge/shape/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/badge/shape/webpack.config.js +++ b/samples/inputs/badge/shape/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/badge/variants/package.json b/samples/inputs/badge/variants/package.json index 72eff6857d..d11d1c39f7 100644 --- a/samples/inputs/badge/variants/package.json +++ b/samples/inputs/badge/variants/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/badge/variants/webpack.config.js b/samples/inputs/badge/variants/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/badge/variants/webpack.config.js +++ b/samples/inputs/badge/variants/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/button-group/alignment/package.json b/samples/inputs/button-group/alignment/package.json index a888b906a6..556fbb5e65 100644 --- a/samples/inputs/button-group/alignment/package.json +++ b/samples/inputs/button-group/alignment/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/button-group/alignment/webpack.config.js b/samples/inputs/button-group/alignment/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/button-group/alignment/webpack.config.js +++ b/samples/inputs/button-group/alignment/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/button-group/overview/package.json b/samples/inputs/button-group/overview/package.json index 0f33ab51d9..761a9b23eb 100644 --- a/samples/inputs/button-group/overview/package.json +++ b/samples/inputs/button-group/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/button-group/overview/webpack.config.js b/samples/inputs/button-group/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/button-group/overview/webpack.config.js +++ b/samples/inputs/button-group/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/button-group/selection/package.json b/samples/inputs/button-group/selection/package.json index dbaadb0521..e21d08a746 100644 --- a/samples/inputs/button-group/selection/package.json +++ b/samples/inputs/button-group/selection/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/button-group/selection/webpack.config.js b/samples/inputs/button-group/selection/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/button-group/selection/webpack.config.js +++ b/samples/inputs/button-group/selection/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/button-group/size/package.json b/samples/inputs/button-group/size/package.json index fd86d04e78..04a9b51fda 100644 --- a/samples/inputs/button-group/size/package.json +++ b/samples/inputs/button-group/size/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/button-group/size/webpack.config.js b/samples/inputs/button-group/size/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/button-group/size/webpack.config.js +++ b/samples/inputs/button-group/size/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/button-group/styling/package.json b/samples/inputs/button-group/styling/package.json index 157fd4900c..94ebe8eeb1 100644 --- a/samples/inputs/button-group/styling/package.json +++ b/samples/inputs/button-group/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/button-group/styling/webpack.config.js b/samples/inputs/button-group/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/button-group/styling/webpack.config.js +++ b/samples/inputs/button-group/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/button/contained/package.json b/samples/inputs/button/contained/package.json index ae562841e8..cf289deaba 100644 --- a/samples/inputs/button/contained/package.json +++ b/samples/inputs/button/contained/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/button/contained/webpack.config.js b/samples/inputs/button/contained/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/button/contained/webpack.config.js +++ b/samples/inputs/button/contained/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/button/download/package.json b/samples/inputs/button/download/package.json index c6697e6c3e..c8e70944f0 100644 --- a/samples/inputs/button/download/package.json +++ b/samples/inputs/button/download/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/button/download/webpack.config.js b/samples/inputs/button/download/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/button/download/webpack.config.js +++ b/samples/inputs/button/download/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/button/fab/package.json b/samples/inputs/button/fab/package.json index 8fb2dd7082..af36b6c3a1 100644 --- a/samples/inputs/button/fab/package.json +++ b/samples/inputs/button/fab/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/button/fab/webpack.config.js b/samples/inputs/button/fab/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/button/fab/webpack.config.js +++ b/samples/inputs/button/fab/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/button/flat/package.json b/samples/inputs/button/flat/package.json index 749bf6ce19..19b64aaef7 100644 --- a/samples/inputs/button/flat/package.json +++ b/samples/inputs/button/flat/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/button/flat/webpack.config.js b/samples/inputs/button/flat/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/button/flat/webpack.config.js +++ b/samples/inputs/button/flat/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/button/outlined/package.json b/samples/inputs/button/outlined/package.json index 5b99529282..e6aaca4b65 100644 --- a/samples/inputs/button/outlined/package.json +++ b/samples/inputs/button/outlined/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/button/outlined/webpack.config.js b/samples/inputs/button/outlined/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/button/outlined/webpack.config.js +++ b/samples/inputs/button/outlined/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/button/overview/package.json b/samples/inputs/button/overview/package.json index a435519e62..759b426ad5 100644 --- a/samples/inputs/button/overview/package.json +++ b/samples/inputs/button/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/button/overview/webpack.config.js b/samples/inputs/button/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/button/overview/webpack.config.js +++ b/samples/inputs/button/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/button/size/package.json b/samples/inputs/button/size/package.json index 42e59894f1..ae4f680efb 100644 --- a/samples/inputs/button/size/package.json +++ b/samples/inputs/button/size/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/button/size/webpack.config.js b/samples/inputs/button/size/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/button/size/webpack.config.js +++ b/samples/inputs/button/size/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/button/styling/package.json b/samples/inputs/button/styling/package.json index bb8c4d396f..cb478d7a1d 100644 --- a/samples/inputs/button/styling/package.json +++ b/samples/inputs/button/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/button/styling/webpack.config.js b/samples/inputs/button/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/button/styling/webpack.config.js +++ b/samples/inputs/button/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/checkbox/checking/package.json b/samples/inputs/checkbox/checking/package.json index b5541375f3..1c26d5a6ba 100644 --- a/samples/inputs/checkbox/checking/package.json +++ b/samples/inputs/checkbox/checking/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/checkbox/checking/webpack.config.js b/samples/inputs/checkbox/checking/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/checkbox/checking/webpack.config.js +++ b/samples/inputs/checkbox/checking/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/checkbox/disabled/package.json b/samples/inputs/checkbox/disabled/package.json index 3db8b57e6a..f40e3d52e2 100644 --- a/samples/inputs/checkbox/disabled/package.json +++ b/samples/inputs/checkbox/disabled/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/checkbox/disabled/webpack.config.js b/samples/inputs/checkbox/disabled/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/checkbox/disabled/webpack.config.js +++ b/samples/inputs/checkbox/disabled/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/checkbox/indeterminate/package.json b/samples/inputs/checkbox/indeterminate/package.json index f019e644ef..29e1f7a38e 100644 --- a/samples/inputs/checkbox/indeterminate/package.json +++ b/samples/inputs/checkbox/indeterminate/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/checkbox/indeterminate/webpack.config.js b/samples/inputs/checkbox/indeterminate/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/checkbox/indeterminate/webpack.config.js +++ b/samples/inputs/checkbox/indeterminate/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/checkbox/label/package.json b/samples/inputs/checkbox/label/package.json index 8e83e551df..c00b2745d7 100644 --- a/samples/inputs/checkbox/label/package.json +++ b/samples/inputs/checkbox/label/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/checkbox/label/webpack.config.js b/samples/inputs/checkbox/label/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/checkbox/label/webpack.config.js +++ b/samples/inputs/checkbox/label/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/checkbox/overview/package.json b/samples/inputs/checkbox/overview/package.json index ff6b7bb252..f1ec953421 100644 --- a/samples/inputs/checkbox/overview/package.json +++ b/samples/inputs/checkbox/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/checkbox/overview/webpack.config.js b/samples/inputs/checkbox/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/checkbox/overview/webpack.config.js +++ b/samples/inputs/checkbox/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/chip/multiple/package.json b/samples/inputs/chip/multiple/package.json index b5541375f3..1c26d5a6ba 100644 --- a/samples/inputs/chip/multiple/package.json +++ b/samples/inputs/chip/multiple/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/chip/multiple/webpack.config.js b/samples/inputs/chip/multiple/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/chip/multiple/webpack.config.js +++ b/samples/inputs/chip/multiple/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/chip/overview/package.json b/samples/inputs/chip/overview/package.json index b5541375f3..1c26d5a6ba 100644 --- a/samples/inputs/chip/overview/package.json +++ b/samples/inputs/chip/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/chip/overview/webpack.config.js b/samples/inputs/chip/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/chip/overview/webpack.config.js +++ b/samples/inputs/chip/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/chip/size/package.json b/samples/inputs/chip/size/package.json index b5541375f3..1c26d5a6ba 100644 --- a/samples/inputs/chip/size/package.json +++ b/samples/inputs/chip/size/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/chip/size/webpack.config.js b/samples/inputs/chip/size/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/chip/size/webpack.config.js +++ b/samples/inputs/chip/size/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/chip/styling/package.json b/samples/inputs/chip/styling/package.json index b5541375f3..1c26d5a6ba 100644 --- a/samples/inputs/chip/styling/package.json +++ b/samples/inputs/chip/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/chip/styling/webpack.config.js b/samples/inputs/chip/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/chip/styling/webpack.config.js +++ b/samples/inputs/chip/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/chip/variants/package.json b/samples/inputs/chip/variants/package.json index b5541375f3..1c26d5a6ba 100644 --- a/samples/inputs/chip/variants/package.json +++ b/samples/inputs/chip/variants/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/chip/variants/webpack.config.js b/samples/inputs/chip/variants/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/chip/variants/webpack.config.js +++ b/samples/inputs/chip/variants/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/circular-progress-indicator/dynamic/package.json b/samples/inputs/circular-progress-indicator/dynamic/package.json index 70e510419e..5ae9e6e2c6 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/package.json +++ b/samples/inputs/circular-progress-indicator/dynamic/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/circular-progress-indicator/dynamic/webpack.config.js b/samples/inputs/circular-progress-indicator/dynamic/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/webpack.config.js +++ b/samples/inputs/circular-progress-indicator/dynamic/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/circular-progress-indicator/indeterminate/package.json b/samples/inputs/circular-progress-indicator/indeterminate/package.json index 52a46a6f09..cfd609454b 100644 --- a/samples/inputs/circular-progress-indicator/indeterminate/package.json +++ b/samples/inputs/circular-progress-indicator/indeterminate/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/circular-progress-indicator/indeterminate/webpack.config.js b/samples/inputs/circular-progress-indicator/indeterminate/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/circular-progress-indicator/indeterminate/webpack.config.js +++ b/samples/inputs/circular-progress-indicator/indeterminate/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/circular-progress-indicator/simple/package.json b/samples/inputs/circular-progress-indicator/simple/package.json index 403f8a13d9..ee4b821ffb 100644 --- a/samples/inputs/circular-progress-indicator/simple/package.json +++ b/samples/inputs/circular-progress-indicator/simple/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/circular-progress-indicator/simple/webpack.config.js b/samples/inputs/circular-progress-indicator/simple/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/circular-progress-indicator/simple/webpack.config.js +++ b/samples/inputs/circular-progress-indicator/simple/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/circular-progress-indicator/styling/package.json b/samples/inputs/circular-progress-indicator/styling/package.json index db40385a23..70cad6703b 100644 --- a/samples/inputs/circular-progress-indicator/styling/package.json +++ b/samples/inputs/circular-progress-indicator/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/circular-progress-indicator/styling/webpack.config.js b/samples/inputs/circular-progress-indicator/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/circular-progress-indicator/styling/webpack.config.js +++ b/samples/inputs/circular-progress-indicator/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index 3384edda3b..3a9392dc83 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -23,15 +23,16 @@ }, "dependencies": { "babel-runtime": "^6.26.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-inputs": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/color-editor/overview/webpack.config.js b/samples/inputs/color-editor/overview/webpack.config.js index 1de7f08279..e90479cd73 100644 --- a/samples/inputs/color-editor/overview/webpack.config.js +++ b/samples/inputs/color-editor/overview/webpack.config.js @@ -63,7 +63,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -76,7 +77,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/combo/features/package.json b/samples/inputs/combo/features/package.json index 7049b3d1db..35916736e7 100644 --- a/samples/inputs/combo/features/package.json +++ b/samples/inputs/combo/features/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/combo/features/webpack.config.js b/samples/inputs/combo/features/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/combo/features/webpack.config.js +++ b/samples/inputs/combo/features/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/combo/overview/package.json b/samples/inputs/combo/overview/package.json index 425778ed5f..aef5461509 100644 --- a/samples/inputs/combo/overview/package.json +++ b/samples/inputs/combo/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/combo/overview/webpack.config.js b/samples/inputs/combo/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/combo/overview/webpack.config.js +++ b/samples/inputs/combo/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/combo/selection/package.json b/samples/inputs/combo/selection/package.json index bd0a844c49..e8cba200aa 100644 --- a/samples/inputs/combo/selection/package.json +++ b/samples/inputs/combo/selection/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/combo/selection/webpack.config.js b/samples/inputs/combo/selection/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/combo/selection/webpack.config.js +++ b/samples/inputs/combo/selection/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/combo/simplified/package.json b/samples/inputs/combo/simplified/package.json index e2794cf6d7..5c76c0e1b4 100644 --- a/samples/inputs/combo/simplified/package.json +++ b/samples/inputs/combo/simplified/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/combo/simplified/webpack.config.js b/samples/inputs/combo/simplified/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/combo/simplified/webpack.config.js +++ b/samples/inputs/combo/simplified/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/combo/styling/package.json b/samples/inputs/combo/styling/package.json index c5dcf29133..9d53d629b8 100644 --- a/samples/inputs/combo/styling/package.json +++ b/samples/inputs/combo/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/combo/styling/webpack.config.js b/samples/inputs/combo/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/combo/styling/webpack.config.js +++ b/samples/inputs/combo/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/combo/templates/package.json b/samples/inputs/combo/templates/package.json index b277700fd3..f0d8965483 100644 --- a/samples/inputs/combo/templates/package.json +++ b/samples/inputs/combo/templates/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/combo/templates/webpack.config.js b/samples/inputs/combo/templates/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/combo/templates/webpack.config.js +++ b/samples/inputs/combo/templates/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/date-time-input/input-format-display-format/package.json b/samples/inputs/date-time-input/input-format-display-format/package.json index 42cde79cbf..904396f70c 100644 --- a/samples/inputs/date-time-input/input-format-display-format/package.json +++ b/samples/inputs/date-time-input/input-format-display-format/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/date-time-input/input-format-display-format/webpack.config.js b/samples/inputs/date-time-input/input-format-display-format/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/date-time-input/input-format-display-format/webpack.config.js +++ b/samples/inputs/date-time-input/input-format-display-format/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/date-time-input/min-max-value/package.json b/samples/inputs/date-time-input/min-max-value/package.json index 82328c4ced..b80216e9b8 100644 --- a/samples/inputs/date-time-input/min-max-value/package.json +++ b/samples/inputs/date-time-input/min-max-value/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/date-time-input/min-max-value/webpack.config.js b/samples/inputs/date-time-input/min-max-value/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/date-time-input/min-max-value/webpack.config.js +++ b/samples/inputs/date-time-input/min-max-value/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/date-time-input/overview/package.json b/samples/inputs/date-time-input/overview/package.json index a14fcb3b71..da1c4c6149 100644 --- a/samples/inputs/date-time-input/overview/package.json +++ b/samples/inputs/date-time-input/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/date-time-input/overview/webpack.config.js b/samples/inputs/date-time-input/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/date-time-input/overview/webpack.config.js +++ b/samples/inputs/date-time-input/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/date-time-input/step-up-down/package.json b/samples/inputs/date-time-input/step-up-down/package.json index 2e21fe2b51..65ad7dd6df 100644 --- a/samples/inputs/date-time-input/step-up-down/package.json +++ b/samples/inputs/date-time-input/step-up-down/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/date-time-input/step-up-down/webpack.config.js b/samples/inputs/date-time-input/step-up-down/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/date-time-input/step-up-down/webpack.config.js +++ b/samples/inputs/date-time-input/step-up-down/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/dropdown/group/package.json b/samples/inputs/dropdown/group/package.json index 2510928f04..96a9310afd 100644 --- a/samples/inputs/dropdown/group/package.json +++ b/samples/inputs/dropdown/group/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/dropdown/group/webpack.config.js b/samples/inputs/dropdown/group/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/dropdown/group/webpack.config.js +++ b/samples/inputs/dropdown/group/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/dropdown/header/package.json b/samples/inputs/dropdown/header/package.json index bfdb87b51c..96838cda10 100644 --- a/samples/inputs/dropdown/header/package.json +++ b/samples/inputs/dropdown/header/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/dropdown/header/webpack.config.js b/samples/inputs/dropdown/header/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/dropdown/header/webpack.config.js +++ b/samples/inputs/dropdown/header/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/dropdown/item/package.json b/samples/inputs/dropdown/item/package.json index 9f56942089..6393cbdbfe 100644 --- a/samples/inputs/dropdown/item/package.json +++ b/samples/inputs/dropdown/item/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/dropdown/item/webpack.config.js b/samples/inputs/dropdown/item/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/dropdown/item/webpack.config.js +++ b/samples/inputs/dropdown/item/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/dropdown/overview/package.json b/samples/inputs/dropdown/overview/package.json index 44aefb8462..4588f30233 100644 --- a/samples/inputs/dropdown/overview/package.json +++ b/samples/inputs/dropdown/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/dropdown/overview/webpack.config.js b/samples/inputs/dropdown/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/dropdown/overview/webpack.config.js +++ b/samples/inputs/dropdown/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/dropdown/position/package.json b/samples/inputs/dropdown/position/package.json index 3d436ec429..22f1b28c07 100644 --- a/samples/inputs/dropdown/position/package.json +++ b/samples/inputs/dropdown/position/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/dropdown/position/webpack.config.js b/samples/inputs/dropdown/position/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/dropdown/position/webpack.config.js +++ b/samples/inputs/dropdown/position/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/dropdown/styling/package.json b/samples/inputs/dropdown/styling/package.json index 9a428aadf9..bbcfd7dde4 100644 --- a/samples/inputs/dropdown/styling/package.json +++ b/samples/inputs/dropdown/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/dropdown/styling/webpack.config.js b/samples/inputs/dropdown/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/dropdown/styling/webpack.config.js +++ b/samples/inputs/dropdown/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/dropdown/target/package.json b/samples/inputs/dropdown/target/package.json index 5c2f5e58de..7284fb428b 100644 --- a/samples/inputs/dropdown/target/package.json +++ b/samples/inputs/dropdown/target/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/dropdown/target/webpack.config.js b/samples/inputs/dropdown/target/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/dropdown/target/webpack.config.js +++ b/samples/inputs/dropdown/target/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/icon-button/size/package.json b/samples/inputs/icon-button/size/package.json index ae562841e8..cf289deaba 100644 --- a/samples/inputs/icon-button/size/package.json +++ b/samples/inputs/icon-button/size/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/icon-button/size/webpack.config.js b/samples/inputs/icon-button/size/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/icon-button/size/webpack.config.js +++ b/samples/inputs/icon-button/size/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/icon-button/styling/package.json b/samples/inputs/icon-button/styling/package.json index ae562841e8..cf289deaba 100644 --- a/samples/inputs/icon-button/styling/package.json +++ b/samples/inputs/icon-button/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/icon-button/styling/webpack.config.js b/samples/inputs/icon-button/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/icon-button/styling/webpack.config.js +++ b/samples/inputs/icon-button/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/icon-button/variant/package.json b/samples/inputs/icon-button/variant/package.json index ae562841e8..cf289deaba 100644 --- a/samples/inputs/icon-button/variant/package.json +++ b/samples/inputs/icon-button/variant/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/icon-button/variant/webpack.config.js b/samples/inputs/icon-button/variant/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/icon-button/variant/webpack.config.js +++ b/samples/inputs/icon-button/variant/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/input/helper-text/package.json b/samples/inputs/input/helper-text/package.json index ec78005144..f4a82f422a 100644 --- a/samples/inputs/input/helper-text/package.json +++ b/samples/inputs/input/helper-text/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/input/helper-text/webpack.config.js b/samples/inputs/input/helper-text/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/input/helper-text/webpack.config.js +++ b/samples/inputs/input/helper-text/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/input/overview/package.json b/samples/inputs/input/overview/package.json index 6ef60a0be5..57ef50fb4b 100644 --- a/samples/inputs/input/overview/package.json +++ b/samples/inputs/input/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/input/overview/webpack.config.js b/samples/inputs/input/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/input/overview/webpack.config.js +++ b/samples/inputs/input/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/input/prefix-suffix/package.json b/samples/inputs/input/prefix-suffix/package.json index 205fcf5e33..6a33cf8ee7 100644 --- a/samples/inputs/input/prefix-suffix/package.json +++ b/samples/inputs/input/prefix-suffix/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/input/prefix-suffix/webpack.config.js b/samples/inputs/input/prefix-suffix/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/input/prefix-suffix/webpack.config.js +++ b/samples/inputs/input/prefix-suffix/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/input/size/package.json b/samples/inputs/input/size/package.json index 1dc83b1bbd..d0afab4533 100644 --- a/samples/inputs/input/size/package.json +++ b/samples/inputs/input/size/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/input/size/webpack.config.js b/samples/inputs/input/size/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/input/size/webpack.config.js +++ b/samples/inputs/input/size/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/input/styling/package.json b/samples/inputs/input/styling/package.json index 2405873aa8..1158bebb65 100644 --- a/samples/inputs/input/styling/package.json +++ b/samples/inputs/input/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/input/styling/webpack.config.js b/samples/inputs/input/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/input/styling/webpack.config.js +++ b/samples/inputs/input/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/linear-progress-indicator/dynamic/package.json b/samples/inputs/linear-progress-indicator/dynamic/package.json index 70e510419e..5ae9e6e2c6 100644 --- a/samples/inputs/linear-progress-indicator/dynamic/package.json +++ b/samples/inputs/linear-progress-indicator/dynamic/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/linear-progress-indicator/dynamic/webpack.config.js b/samples/inputs/linear-progress-indicator/dynamic/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/linear-progress-indicator/dynamic/webpack.config.js +++ b/samples/inputs/linear-progress-indicator/dynamic/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/linear-progress-indicator/simple/package.json b/samples/inputs/linear-progress-indicator/simple/package.json index 392d02fd74..5005f0d1f1 100644 --- a/samples/inputs/linear-progress-indicator/simple/package.json +++ b/samples/inputs/linear-progress-indicator/simple/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/linear-progress-indicator/simple/webpack.config.js b/samples/inputs/linear-progress-indicator/simple/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/linear-progress-indicator/simple/webpack.config.js +++ b/samples/inputs/linear-progress-indicator/simple/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/linear-progress-indicator/striped/package.json b/samples/inputs/linear-progress-indicator/striped/package.json index af4a98a828..4dba03cc15 100644 --- a/samples/inputs/linear-progress-indicator/striped/package.json +++ b/samples/inputs/linear-progress-indicator/striped/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/linear-progress-indicator/striped/webpack.config.js b/samples/inputs/linear-progress-indicator/striped/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/linear-progress-indicator/striped/webpack.config.js +++ b/samples/inputs/linear-progress-indicator/striped/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/linear-progress-indicator/styling/package.json b/samples/inputs/linear-progress-indicator/styling/package.json index dce190319a..7c17b14790 100644 --- a/samples/inputs/linear-progress-indicator/styling/package.json +++ b/samples/inputs/linear-progress-indicator/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/linear-progress-indicator/styling/webpack.config.js b/samples/inputs/linear-progress-indicator/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/linear-progress-indicator/styling/webpack.config.js +++ b/samples/inputs/linear-progress-indicator/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/linear-progress-indicator/types/package.json b/samples/inputs/linear-progress-indicator/types/package.json index 2c6dc5f7a9..de4f0aae66 100644 --- a/samples/inputs/linear-progress-indicator/types/package.json +++ b/samples/inputs/linear-progress-indicator/types/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/linear-progress-indicator/types/webpack.config.js b/samples/inputs/linear-progress-indicator/types/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/linear-progress-indicator/types/webpack.config.js +++ b/samples/inputs/linear-progress-indicator/types/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/mask-input/applying-mask/package.json b/samples/inputs/mask-input/applying-mask/package.json index 9efcab15cf..764970781e 100644 --- a/samples/inputs/mask-input/applying-mask/package.json +++ b/samples/inputs/mask-input/applying-mask/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/mask-input/applying-mask/webpack.config.js b/samples/inputs/mask-input/applying-mask/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/mask-input/applying-mask/webpack.config.js +++ b/samples/inputs/mask-input/applying-mask/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/mask-input/overview/package.json b/samples/inputs/mask-input/overview/package.json index 130f99a95a..0926059f58 100644 --- a/samples/inputs/mask-input/overview/package.json +++ b/samples/inputs/mask-input/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/mask-input/overview/webpack.config.js b/samples/inputs/mask-input/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/mask-input/overview/webpack.config.js +++ b/samples/inputs/mask-input/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/mask-input/value-modes/package.json b/samples/inputs/mask-input/value-modes/package.json index 6cad065492..a7c10f88d1 100644 --- a/samples/inputs/mask-input/value-modes/package.json +++ b/samples/inputs/mask-input/value-modes/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/mask-input/value-modes/webpack.config.js b/samples/inputs/mask-input/value-modes/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/mask-input/value-modes/webpack.config.js +++ b/samples/inputs/mask-input/value-modes/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/radio/alignment/package.json b/samples/inputs/radio/alignment/package.json index 6235e29911..b3ef2e240f 100644 --- a/samples/inputs/radio/alignment/package.json +++ b/samples/inputs/radio/alignment/package.json @@ -33,7 +33,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/radio/alignment/webpack.config.js b/samples/inputs/radio/alignment/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/radio/alignment/webpack.config.js +++ b/samples/inputs/radio/alignment/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/radio/disabled/package.json b/samples/inputs/radio/disabled/package.json index 0da8972535..f455f2c7cc 100644 --- a/samples/inputs/radio/disabled/package.json +++ b/samples/inputs/radio/disabled/package.json @@ -33,7 +33,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/radio/disabled/webpack.config.js b/samples/inputs/radio/disabled/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/radio/disabled/webpack.config.js +++ b/samples/inputs/radio/disabled/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/radio/group/package.json b/samples/inputs/radio/group/package.json index c7c9b233d7..b0a430cb8c 100644 --- a/samples/inputs/radio/group/package.json +++ b/samples/inputs/radio/group/package.json @@ -33,7 +33,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/radio/group/webpack.config.js b/samples/inputs/radio/group/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/radio/group/webpack.config.js +++ b/samples/inputs/radio/group/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/radio/invalid/package.json b/samples/inputs/radio/invalid/package.json index 6533d2f44a..2b522dcb6e 100644 --- a/samples/inputs/radio/invalid/package.json +++ b/samples/inputs/radio/invalid/package.json @@ -33,7 +33,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/radio/invalid/webpack.config.js b/samples/inputs/radio/invalid/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/radio/invalid/webpack.config.js +++ b/samples/inputs/radio/invalid/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/radio/label/package.json b/samples/inputs/radio/label/package.json index 4f17b9d9fd..7cea171643 100644 --- a/samples/inputs/radio/label/package.json +++ b/samples/inputs/radio/label/package.json @@ -33,7 +33,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/radio/label/webpack.config.js b/samples/inputs/radio/label/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/radio/label/webpack.config.js +++ b/samples/inputs/radio/label/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/radio/styling/package.json b/samples/inputs/radio/styling/package.json index 0df1906438..d0a912d82a 100644 --- a/samples/inputs/radio/styling/package.json +++ b/samples/inputs/radio/styling/package.json @@ -33,7 +33,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/radio/styling/webpack.config.js b/samples/inputs/radio/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/radio/styling/webpack.config.js +++ b/samples/inputs/radio/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/rating/basic/package.json b/samples/inputs/rating/basic/package.json index cfde1c1c60..aeb708fd24 100644 --- a/samples/inputs/rating/basic/package.json +++ b/samples/inputs/rating/basic/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/rating/basic/webpack.config.js b/samples/inputs/rating/basic/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/rating/basic/webpack.config.js +++ b/samples/inputs/rating/basic/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/rating/custom/package.json b/samples/inputs/rating/custom/package.json index 675cf7412a..1c7ae1586e 100644 --- a/samples/inputs/rating/custom/package.json +++ b/samples/inputs/rating/custom/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/rating/custom/webpack.config.js b/samples/inputs/rating/custom/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/rating/custom/webpack.config.js +++ b/samples/inputs/rating/custom/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/rating/empty/package.json b/samples/inputs/rating/empty/package.json index 2733e28a63..06902c586b 100644 --- a/samples/inputs/rating/empty/package.json +++ b/samples/inputs/rating/empty/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/rating/empty/webpack.config.js b/samples/inputs/rating/empty/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/rating/empty/webpack.config.js +++ b/samples/inputs/rating/empty/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/rating/single-selection/package.json b/samples/inputs/rating/single-selection/package.json index 4f330ffb09..e197019ad9 100644 --- a/samples/inputs/rating/single-selection/package.json +++ b/samples/inputs/rating/single-selection/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/rating/single-selection/webpack.config.js b/samples/inputs/rating/single-selection/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/rating/single-selection/webpack.config.js +++ b/samples/inputs/rating/single-selection/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/rating/styling/package.json b/samples/inputs/rating/styling/package.json index cfde1c1c60..aeb708fd24 100644 --- a/samples/inputs/rating/styling/package.json +++ b/samples/inputs/rating/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/rating/styling/webpack.config.js b/samples/inputs/rating/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/rating/styling/webpack.config.js +++ b/samples/inputs/rating/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/ripple/button/package.json b/samples/inputs/ripple/button/package.json index 6c2a7df7ab..8787b06213 100644 --- a/samples/inputs/ripple/button/package.json +++ b/samples/inputs/ripple/button/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/ripple/button/webpack.config.js b/samples/inputs/ripple/button/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/ripple/button/webpack.config.js +++ b/samples/inputs/ripple/button/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/ripple/color/package.json b/samples/inputs/ripple/color/package.json index cf08597820..9a242780bd 100644 --- a/samples/inputs/ripple/color/package.json +++ b/samples/inputs/ripple/color/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/ripple/color/webpack.config.js b/samples/inputs/ripple/color/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/ripple/color/webpack.config.js +++ b/samples/inputs/ripple/color/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/select/group/package.json b/samples/inputs/select/group/package.json index 684099bea8..b290008631 100644 --- a/samples/inputs/select/group/package.json +++ b/samples/inputs/select/group/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/select/group/webpack.config.js b/samples/inputs/select/group/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/select/group/webpack.config.js +++ b/samples/inputs/select/group/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/select/header/package.json b/samples/inputs/select/header/package.json index 46cf267ab8..31ef351505 100644 --- a/samples/inputs/select/header/package.json +++ b/samples/inputs/select/header/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/select/header/webpack.config.js b/samples/inputs/select/header/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/select/header/webpack.config.js +++ b/samples/inputs/select/header/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/select/item/package.json b/samples/inputs/select/item/package.json index 694b804a85..ac217eff44 100644 --- a/samples/inputs/select/item/package.json +++ b/samples/inputs/select/item/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/select/item/webpack.config.js b/samples/inputs/select/item/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/select/item/webpack.config.js +++ b/samples/inputs/select/item/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/select/overview/package.json b/samples/inputs/select/overview/package.json index 909df82ca1..bcffffad66 100644 --- a/samples/inputs/select/overview/package.json +++ b/samples/inputs/select/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/select/overview/webpack.config.js b/samples/inputs/select/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/select/overview/webpack.config.js +++ b/samples/inputs/select/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/select/styling/package.json b/samples/inputs/select/styling/package.json index 391100c270..192efdd20c 100644 --- a/samples/inputs/select/styling/package.json +++ b/samples/inputs/select/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/select/styling/webpack.config.js b/samples/inputs/select/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/select/styling/webpack.config.js +++ b/samples/inputs/select/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/slider/constraints/package.json b/samples/inputs/slider/constraints/package.json index ac57015439..0005549bf5 100644 --- a/samples/inputs/slider/constraints/package.json +++ b/samples/inputs/slider/constraints/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/slider/constraints/webpack.config.js b/samples/inputs/slider/constraints/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/slider/constraints/webpack.config.js +++ b/samples/inputs/slider/constraints/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/slider/disabled/package.json b/samples/inputs/slider/disabled/package.json index 5776cfc8c9..6b96a5d864 100644 --- a/samples/inputs/slider/disabled/package.json +++ b/samples/inputs/slider/disabled/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/slider/disabled/webpack.config.js b/samples/inputs/slider/disabled/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/slider/disabled/webpack.config.js +++ b/samples/inputs/slider/disabled/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/slider/discrete/package.json b/samples/inputs/slider/discrete/package.json index a6027add58..36565a02e1 100644 --- a/samples/inputs/slider/discrete/package.json +++ b/samples/inputs/slider/discrete/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/slider/discrete/webpack.config.js b/samples/inputs/slider/discrete/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/slider/discrete/webpack.config.js +++ b/samples/inputs/slider/discrete/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/slider/labels/package.json b/samples/inputs/slider/labels/package.json index 1c10bdb47b..9d661bccb1 100644 --- a/samples/inputs/slider/labels/package.json +++ b/samples/inputs/slider/labels/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/slider/labels/webpack.config.js b/samples/inputs/slider/labels/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/slider/labels/webpack.config.js +++ b/samples/inputs/slider/labels/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/slider/overview/package.json b/samples/inputs/slider/overview/package.json index 659439cb8f..e590db83b0 100644 --- a/samples/inputs/slider/overview/package.json +++ b/samples/inputs/slider/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/slider/overview/webpack.config.js b/samples/inputs/slider/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/slider/overview/webpack.config.js +++ b/samples/inputs/slider/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/slider/styling/package.json b/samples/inputs/slider/styling/package.json index e382404313..bf7c50310a 100644 --- a/samples/inputs/slider/styling/package.json +++ b/samples/inputs/slider/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/slider/styling/webpack.config.js b/samples/inputs/slider/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/slider/styling/webpack.config.js +++ b/samples/inputs/slider/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/slider/tick-labels/package.json b/samples/inputs/slider/tick-labels/package.json index 4081006d92..754d403a2f 100644 --- a/samples/inputs/slider/tick-labels/package.json +++ b/samples/inputs/slider/tick-labels/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/slider/tick-labels/webpack.config.js b/samples/inputs/slider/tick-labels/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/slider/tick-labels/webpack.config.js +++ b/samples/inputs/slider/tick-labels/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/slider/ticks/package.json b/samples/inputs/slider/ticks/package.json index 1d8483313b..68569af714 100644 --- a/samples/inputs/slider/ticks/package.json +++ b/samples/inputs/slider/ticks/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/slider/ticks/webpack.config.js b/samples/inputs/slider/ticks/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/slider/ticks/webpack.config.js +++ b/samples/inputs/slider/ticks/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/slider/value-format/package.json b/samples/inputs/slider/value-format/package.json index c98ca6a4da..f866c9ef45 100644 --- a/samples/inputs/slider/value-format/package.json +++ b/samples/inputs/slider/value-format/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/slider/value-format/webpack.config.js b/samples/inputs/slider/value-format/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/slider/value-format/webpack.config.js +++ b/samples/inputs/slider/value-format/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/slider/value/package.json b/samples/inputs/slider/value/package.json index f161e45f0e..a455c79266 100644 --- a/samples/inputs/slider/value/package.json +++ b/samples/inputs/slider/value/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/slider/value/webpack.config.js b/samples/inputs/slider/value/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/slider/value/webpack.config.js +++ b/samples/inputs/slider/value/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/switches/checking/package.json b/samples/inputs/switches/checking/package.json index aa2e9232ed..42c5a42751 100644 --- a/samples/inputs/switches/checking/package.json +++ b/samples/inputs/switches/checking/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/switches/checking/webpack.config.js b/samples/inputs/switches/checking/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/switches/checking/webpack.config.js +++ b/samples/inputs/switches/checking/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/switches/disabled/package.json b/samples/inputs/switches/disabled/package.json index 5d58f2b479..ea321afaa1 100644 --- a/samples/inputs/switches/disabled/package.json +++ b/samples/inputs/switches/disabled/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/switches/disabled/webpack.config.js b/samples/inputs/switches/disabled/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/switches/disabled/webpack.config.js +++ b/samples/inputs/switches/disabled/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/switches/label/package.json b/samples/inputs/switches/label/package.json index ee23b9f6fb..28d8a97a93 100644 --- a/samples/inputs/switches/label/package.json +++ b/samples/inputs/switches/label/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/switches/label/webpack.config.js b/samples/inputs/switches/label/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/switches/label/webpack.config.js +++ b/samples/inputs/switches/label/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/switches/overview/package.json b/samples/inputs/switches/overview/package.json index bf2a991834..693d39c93a 100644 --- a/samples/inputs/switches/overview/package.json +++ b/samples/inputs/switches/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/switches/overview/webpack.config.js b/samples/inputs/switches/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/switches/overview/webpack.config.js +++ b/samples/inputs/switches/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/textarea/form-integration/package.json b/samples/inputs/textarea/form-integration/package.json index 427b3641ba..c6d1150e31 100644 --- a/samples/inputs/textarea/form-integration/package.json +++ b/samples/inputs/textarea/form-integration/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/textarea/form-integration/webpack.config.js b/samples/inputs/textarea/form-integration/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/textarea/form-integration/webpack.config.js +++ b/samples/inputs/textarea/form-integration/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/textarea/overview/package.json b/samples/inputs/textarea/overview/package.json index c9327e978d..edc1d9a3d2 100644 --- a/samples/inputs/textarea/overview/package.json +++ b/samples/inputs/textarea/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/textarea/overview/webpack.config.js b/samples/inputs/textarea/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/textarea/overview/webpack.config.js +++ b/samples/inputs/textarea/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/textarea/resize/package.json b/samples/inputs/textarea/resize/package.json index b1e09567bf..0c528aca33 100644 --- a/samples/inputs/textarea/resize/package.json +++ b/samples/inputs/textarea/resize/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/textarea/resize/webpack.config.js b/samples/inputs/textarea/resize/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/textarea/resize/webpack.config.js +++ b/samples/inputs/textarea/resize/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/textarea/slots/package.json b/samples/inputs/textarea/slots/package.json index 131d7b709b..f62343b565 100644 --- a/samples/inputs/textarea/slots/package.json +++ b/samples/inputs/textarea/slots/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/textarea/slots/webpack.config.js b/samples/inputs/textarea/slots/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/textarea/slots/webpack.config.js +++ b/samples/inputs/textarea/slots/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/inputs/textarea/styling/package.json b/samples/inputs/textarea/styling/package.json index ac76d20d5d..292a4235fc 100644 --- a/samples/inputs/textarea/styling/package.json +++ b/samples/inputs/textarea/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/inputs/textarea/styling/webpack.config.js b/samples/inputs/textarea/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/inputs/textarea/styling/webpack.config.js +++ b/samples/inputs/textarea/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/accordion/customization/package.json b/samples/layouts/accordion/customization/package.json index cbe3a37362..60d29b0326 100644 --- a/samples/layouts/accordion/customization/package.json +++ b/samples/layouts/accordion/customization/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/accordion/customization/webpack.config.js b/samples/layouts/accordion/customization/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/accordion/customization/webpack.config.js +++ b/samples/layouts/accordion/customization/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/accordion/nested-scenario/package.json b/samples/layouts/accordion/nested-scenario/package.json index cbe3a37362..60d29b0326 100644 --- a/samples/layouts/accordion/nested-scenario/package.json +++ b/samples/layouts/accordion/nested-scenario/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/accordion/nested-scenario/webpack.config.js b/samples/layouts/accordion/nested-scenario/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/accordion/nested-scenario/webpack.config.js +++ b/samples/layouts/accordion/nested-scenario/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/accordion/overview/package.json b/samples/layouts/accordion/overview/package.json index cbe3a37362..60d29b0326 100644 --- a/samples/layouts/accordion/overview/package.json +++ b/samples/layouts/accordion/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/accordion/overview/webpack.config.js b/samples/layouts/accordion/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/accordion/overview/webpack.config.js +++ b/samples/layouts/accordion/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/avatar/icon/package.json b/samples/layouts/avatar/icon/package.json index 8cf9326d9e..50b74009bd 100644 --- a/samples/layouts/avatar/icon/package.json +++ b/samples/layouts/avatar/icon/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/avatar/icon/webpack.config.js b/samples/layouts/avatar/icon/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/avatar/icon/webpack.config.js +++ b/samples/layouts/avatar/icon/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/avatar/image/package.json b/samples/layouts/avatar/image/package.json index a023eab393..ef59e67893 100644 --- a/samples/layouts/avatar/image/package.json +++ b/samples/layouts/avatar/image/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/avatar/image/webpack.config.js b/samples/layouts/avatar/image/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/avatar/image/webpack.config.js +++ b/samples/layouts/avatar/image/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/avatar/initials/package.json b/samples/layouts/avatar/initials/package.json index 07ac3f7718..bd78a526e6 100644 --- a/samples/layouts/avatar/initials/package.json +++ b/samples/layouts/avatar/initials/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/avatar/initials/webpack.config.js b/samples/layouts/avatar/initials/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/avatar/initials/webpack.config.js +++ b/samples/layouts/avatar/initials/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/avatar/shape/package.json b/samples/layouts/avatar/shape/package.json index eb732d771f..2f5ab90fc6 100644 --- a/samples/layouts/avatar/shape/package.json +++ b/samples/layouts/avatar/shape/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/avatar/shape/webpack.config.js b/samples/layouts/avatar/shape/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/avatar/shape/webpack.config.js +++ b/samples/layouts/avatar/shape/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/avatar/size/package.json b/samples/layouts/avatar/size/package.json index 98225bddf6..213184b7ea 100644 --- a/samples/layouts/avatar/size/package.json +++ b/samples/layouts/avatar/size/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/avatar/size/webpack.config.js b/samples/layouts/avatar/size/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/avatar/size/webpack.config.js +++ b/samples/layouts/avatar/size/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/card/horizontal/package.json b/samples/layouts/card/horizontal/package.json index 5eb5e68bb3..016be229dc 100644 --- a/samples/layouts/card/horizontal/package.json +++ b/samples/layouts/card/horizontal/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/card/horizontal/webpack.config.js b/samples/layouts/card/horizontal/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/card/horizontal/webpack.config.js +++ b/samples/layouts/card/horizontal/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/card/integration/package.json b/samples/layouts/card/integration/package.json index 0455c43bf5..129484f8c7 100644 --- a/samples/layouts/card/integration/package.json +++ b/samples/layouts/card/integration/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/card/integration/webpack.config.js b/samples/layouts/card/integration/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/card/integration/webpack.config.js +++ b/samples/layouts/card/integration/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/card/overview/package.json b/samples/layouts/card/overview/package.json index e28f7ee16b..1a6e54976f 100644 --- a/samples/layouts/card/overview/package.json +++ b/samples/layouts/card/overview/package.json @@ -32,7 +32,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/card/overview/webpack.config.js b/samples/layouts/card/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/card/overview/webpack.config.js +++ b/samples/layouts/card/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/card/semi-horizontal/package.json b/samples/layouts/card/semi-horizontal/package.json index 86d00e25f0..bbb89427cb 100644 --- a/samples/layouts/card/semi-horizontal/package.json +++ b/samples/layouts/card/semi-horizontal/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/card/semi-horizontal/webpack.config.js b/samples/layouts/card/semi-horizontal/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/card/semi-horizontal/webpack.config.js +++ b/samples/layouts/card/semi-horizontal/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/card/styling/package.json b/samples/layouts/card/styling/package.json index 5fe6afa53e..978e43db74 100644 --- a/samples/layouts/card/styling/package.json +++ b/samples/layouts/card/styling/package.json @@ -32,7 +32,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/card/styling/webpack.config.js b/samples/layouts/card/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/card/styling/webpack.config.js +++ b/samples/layouts/card/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/carousel/animations/package.json b/samples/layouts/carousel/animations/package.json index deeb43cdcf..718bc4e908 100644 --- a/samples/layouts/carousel/animations/package.json +++ b/samples/layouts/carousel/animations/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/carousel/animations/webpack.config.js b/samples/layouts/carousel/animations/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/carousel/animations/webpack.config.js +++ b/samples/layouts/carousel/animations/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/carousel/components/package.json b/samples/layouts/carousel/components/package.json index 79bf1ad548..a6cd1f6fe3 100644 --- a/samples/layouts/carousel/components/package.json +++ b/samples/layouts/carousel/components/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/carousel/components/webpack.config.js b/samples/layouts/carousel/components/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/carousel/components/webpack.config.js +++ b/samples/layouts/carousel/components/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/carousel/overview/package.json b/samples/layouts/carousel/overview/package.json index bdc7e5644c..2a55eca2eb 100644 --- a/samples/layouts/carousel/overview/package.json +++ b/samples/layouts/carousel/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/carousel/overview/webpack.config.js b/samples/layouts/carousel/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/carousel/overview/webpack.config.js +++ b/samples/layouts/carousel/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/carousel/thumbnail/package.json b/samples/layouts/carousel/thumbnail/package.json index 1f319c75ce..53a3a16a04 100644 --- a/samples/layouts/carousel/thumbnail/package.json +++ b/samples/layouts/carousel/thumbnail/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/carousel/thumbnail/webpack.config.js b/samples/layouts/carousel/thumbnail/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/carousel/thumbnail/webpack.config.js +++ b/samples/layouts/carousel/thumbnail/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/divider/dashed/package.json b/samples/layouts/divider/dashed/package.json index 909df82ca1..bcffffad66 100644 --- a/samples/layouts/divider/dashed/package.json +++ b/samples/layouts/divider/dashed/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/divider/dashed/webpack.config.js b/samples/layouts/divider/dashed/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/divider/dashed/webpack.config.js +++ b/samples/layouts/divider/dashed/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/divider/middle/package.json b/samples/layouts/divider/middle/package.json index 391100c270..192efdd20c 100644 --- a/samples/layouts/divider/middle/package.json +++ b/samples/layouts/divider/middle/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/divider/middle/webpack.config.js b/samples/layouts/divider/middle/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/divider/middle/webpack.config.js +++ b/samples/layouts/divider/middle/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/divider/overview/package.json b/samples/layouts/divider/overview/package.json index 909df82ca1..bcffffad66 100644 --- a/samples/layouts/divider/overview/package.json +++ b/samples/layouts/divider/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/divider/overview/webpack.config.js b/samples/layouts/divider/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/divider/overview/webpack.config.js +++ b/samples/layouts/divider/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/divider/select/package.json b/samples/layouts/divider/select/package.json index 909df82ca1..bcffffad66 100644 --- a/samples/layouts/divider/select/package.json +++ b/samples/layouts/divider/select/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/divider/select/webpack.config.js b/samples/layouts/divider/select/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/divider/select/webpack.config.js +++ b/samples/layouts/divider/select/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/divider/vertical/package.json b/samples/layouts/divider/vertical/package.json index 391100c270..192efdd20c 100644 --- a/samples/layouts/divider/vertical/package.json +++ b/samples/layouts/divider/vertical/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/divider/vertical/webpack.config.js b/samples/layouts/divider/vertical/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/divider/vertical/webpack.config.js +++ b/samples/layouts/divider/vertical/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/dock-manager/add-content-runtime/package.json b/samples/layouts/dock-manager/add-content-runtime/package.json index 5df1007e9f..6252e3bffc 100644 --- a/samples/layouts/dock-manager/add-content-runtime/package.json +++ b/samples/layouts/dock-manager/add-content-runtime/package.json @@ -30,7 +30,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/dock-manager/add-content-runtime/webpack.config.js b/samples/layouts/dock-manager/add-content-runtime/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/dock-manager/add-content-runtime/webpack.config.js +++ b/samples/layouts/dock-manager/add-content-runtime/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/dock-manager/contained-in-boundaries/package.json b/samples/layouts/dock-manager/contained-in-boundaries/package.json index 67deda2e56..23b11a9979 100644 --- a/samples/layouts/dock-manager/contained-in-boundaries/package.json +++ b/samples/layouts/dock-manager/contained-in-boundaries/package.json @@ -30,7 +30,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/dock-manager/contained-in-boundaries/webpack.config.js b/samples/layouts/dock-manager/contained-in-boundaries/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/dock-manager/contained-in-boundaries/webpack.config.js +++ b/samples/layouts/dock-manager/contained-in-boundaries/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/dock-manager/customize-buttons/package.json b/samples/layouts/dock-manager/customize-buttons/package.json index 49f800916e..26073ab942 100644 --- a/samples/layouts/dock-manager/customize-buttons/package.json +++ b/samples/layouts/dock-manager/customize-buttons/package.json @@ -30,7 +30,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/dock-manager/customize-buttons/webpack.config.js b/samples/layouts/dock-manager/customize-buttons/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/dock-manager/customize-buttons/webpack.config.js +++ b/samples/layouts/dock-manager/customize-buttons/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/dock-manager/embedding-frames/package.json b/samples/layouts/dock-manager/embedding-frames/package.json index fdc7b3fdbb..6bc5791302 100644 --- a/samples/layouts/dock-manager/embedding-frames/package.json +++ b/samples/layouts/dock-manager/embedding-frames/package.json @@ -24,14 +24,15 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.16.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/dock-manager/embedding-frames/webpack.config.js b/samples/layouts/dock-manager/embedding-frames/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/dock-manager/embedding-frames/webpack.config.js +++ b/samples/layouts/dock-manager/embedding-frames/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/dock-manager/focus-panes/package.json b/samples/layouts/dock-manager/focus-panes/package.json index 5df1007e9f..6252e3bffc 100644 --- a/samples/layouts/dock-manager/focus-panes/package.json +++ b/samples/layouts/dock-manager/focus-panes/package.json @@ -30,7 +30,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/dock-manager/focus-panes/webpack.config.js b/samples/layouts/dock-manager/focus-panes/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/dock-manager/focus-panes/webpack.config.js +++ b/samples/layouts/dock-manager/focus-panes/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/dock-manager/hide-pane-headers/package.json b/samples/layouts/dock-manager/hide-pane-headers/package.json index 5df1007e9f..6252e3bffc 100644 --- a/samples/layouts/dock-manager/hide-pane-headers/package.json +++ b/samples/layouts/dock-manager/hide-pane-headers/package.json @@ -30,7 +30,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/dock-manager/hide-pane-headers/webpack.config.js b/samples/layouts/dock-manager/hide-pane-headers/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/dock-manager/hide-pane-headers/webpack.config.js +++ b/samples/layouts/dock-manager/hide-pane-headers/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/dock-manager/hiding-panes/package.json b/samples/layouts/dock-manager/hiding-panes/package.json index 3d947a3cf7..32f9a47682 100644 --- a/samples/layouts/dock-manager/hiding-panes/package.json +++ b/samples/layouts/dock-manager/hiding-panes/package.json @@ -24,14 +24,15 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.16.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/dock-manager/hiding-panes/webpack.config.js b/samples/layouts/dock-manager/hiding-panes/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/dock-manager/hiding-panes/webpack.config.js +++ b/samples/layouts/dock-manager/hiding-panes/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/dock-manager/overview/package.json b/samples/layouts/dock-manager/overview/package.json index 6cecd25fbb..eabe6769ae 100644 --- a/samples/layouts/dock-manager/overview/package.json +++ b/samples/layouts/dock-manager/overview/package.json @@ -24,14 +24,15 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.16.0", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/dock-manager/overview/webpack.config.js b/samples/layouts/dock-manager/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/dock-manager/overview/webpack.config.js +++ b/samples/layouts/dock-manager/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/dock-manager/proximity-dock/package.json b/samples/layouts/dock-manager/proximity-dock/package.json index 38cd8adb61..7d89e5effa 100644 --- a/samples/layouts/dock-manager/proximity-dock/package.json +++ b/samples/layouts/dock-manager/proximity-dock/package.json @@ -30,7 +30,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/dock-manager/proximity-dock/webpack.config.js b/samples/layouts/dock-manager/proximity-dock/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/dock-manager/proximity-dock/webpack.config.js +++ b/samples/layouts/dock-manager/proximity-dock/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/dock-manager/split-pane-fixed-size/package.json b/samples/layouts/dock-manager/split-pane-fixed-size/package.json index 5373222db0..b5244479f7 100644 --- a/samples/layouts/dock-manager/split-pane-fixed-size/package.json +++ b/samples/layouts/dock-manager/split-pane-fixed-size/package.json @@ -30,7 +30,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/dock-manager/split-pane-fixed-size/webpack.config.js b/samples/layouts/dock-manager/split-pane-fixed-size/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/dock-manager/split-pane-fixed-size/webpack.config.js +++ b/samples/layouts/dock-manager/split-pane-fixed-size/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/dock-manager/styling/package.json b/samples/layouts/dock-manager/styling/package.json index 21bc3c6cea..fe6e5e255b 100644 --- a/samples/layouts/dock-manager/styling/package.json +++ b/samples/layouts/dock-manager/styling/package.json @@ -26,14 +26,15 @@ "core-js": "^3.6.5", "igniteui-dockmanager": "1.16.0", "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/dock-manager/styling/webpack.config.js b/samples/layouts/dock-manager/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/dock-manager/styling/webpack.config.js +++ b/samples/layouts/dock-manager/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/dock-manager/toggle-inner-dock/package.json b/samples/layouts/dock-manager/toggle-inner-dock/package.json index fb5e505b97..db84c47517 100644 --- a/samples/layouts/dock-manager/toggle-inner-dock/package.json +++ b/samples/layouts/dock-manager/toggle-inner-dock/package.json @@ -30,7 +30,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/dock-manager/toggle-inner-dock/webpack.config.js b/samples/layouts/dock-manager/toggle-inner-dock/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/dock-manager/toggle-inner-dock/webpack.config.js +++ b/samples/layouts/dock-manager/toggle-inner-dock/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/dock-manager/updating-panes/package.json b/samples/layouts/dock-manager/updating-panes/package.json index 98b99b7b35..eb3851f3bd 100644 --- a/samples/layouts/dock-manager/updating-panes/package.json +++ b/samples/layouts/dock-manager/updating-panes/package.json @@ -24,17 +24,18 @@ "babel-runtime": "^6.26.0", "core-js": "^3.6.5", "igniteui-dockmanager": "1.16.0", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-gauges": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-gauges": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/dock-manager/updating-panes/webpack.config.js b/samples/layouts/dock-manager/updating-panes/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/dock-manager/updating-panes/webpack.config.js +++ b/samples/layouts/dock-manager/updating-panes/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/expansion-panel/component-customization/package.json b/samples/layouts/expansion-panel/component-customization/package.json index 1d203507fe..f63d1052d7 100644 --- a/samples/layouts/expansion-panel/component-customization/package.json +++ b/samples/layouts/expansion-panel/component-customization/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/expansion-panel/component-customization/webpack.config.js b/samples/layouts/expansion-panel/component-customization/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/expansion-panel/component-customization/webpack.config.js +++ b/samples/layouts/expansion-panel/component-customization/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/expansion-panel/properties-and-events/package.json b/samples/layouts/expansion-panel/properties-and-events/package.json index 3d109130d4..c4176c779e 100644 --- a/samples/layouts/expansion-panel/properties-and-events/package.json +++ b/samples/layouts/expansion-panel/properties-and-events/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/expansion-panel/properties-and-events/webpack.config.js b/samples/layouts/expansion-panel/properties-and-events/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/expansion-panel/properties-and-events/webpack.config.js +++ b/samples/layouts/expansion-panel/properties-and-events/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/expansion-panel/styling/package.json b/samples/layouts/expansion-panel/styling/package.json index d5f11b6a77..4341d50236 100644 --- a/samples/layouts/expansion-panel/styling/package.json +++ b/samples/layouts/expansion-panel/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/expansion-panel/styling/webpack.config.js b/samples/layouts/expansion-panel/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/expansion-panel/styling/webpack.config.js +++ b/samples/layouts/expansion-panel/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/expansion-panel/usage/package.json b/samples/layouts/expansion-panel/usage/package.json index cbe3a37362..60d29b0326 100644 --- a/samples/layouts/expansion-panel/usage/package.json +++ b/samples/layouts/expansion-panel/usage/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/expansion-panel/usage/webpack.config.js b/samples/layouts/expansion-panel/usage/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/expansion-panel/usage/webpack.config.js +++ b/samples/layouts/expansion-panel/usage/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/icon/sizing/package.json b/samples/layouts/icon/sizing/package.json index 3962f3067b..e200d58a84 100644 --- a/samples/layouts/icon/sizing/package.json +++ b/samples/layouts/icon/sizing/package.json @@ -34,7 +34,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/icon/sizing/webpack.config.js b/samples/layouts/icon/sizing/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/icon/sizing/webpack.config.js +++ b/samples/layouts/icon/sizing/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/icon/styling/package.json b/samples/layouts/icon/styling/package.json index 3962f3067b..e200d58a84 100644 --- a/samples/layouts/icon/styling/package.json +++ b/samples/layouts/icon/styling/package.json @@ -34,7 +34,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/icon/styling/webpack.config.js b/samples/layouts/icon/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/icon/styling/webpack.config.js +++ b/samples/layouts/icon/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/stepper/animations/package.json b/samples/layouts/stepper/animations/package.json index 502a444f8d..92b14b656e 100644 --- a/samples/layouts/stepper/animations/package.json +++ b/samples/layouts/stepper/animations/package.json @@ -33,7 +33,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/stepper/animations/webpack.config.js b/samples/layouts/stepper/animations/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/stepper/animations/webpack.config.js +++ b/samples/layouts/stepper/animations/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/stepper/linear/package.json b/samples/layouts/stepper/linear/package.json index 7e18f11361..9c43c6b418 100644 --- a/samples/layouts/stepper/linear/package.json +++ b/samples/layouts/stepper/linear/package.json @@ -33,7 +33,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/stepper/linear/webpack.config.js b/samples/layouts/stepper/linear/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/stepper/linear/webpack.config.js +++ b/samples/layouts/stepper/linear/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/stepper/orientation/package.json b/samples/layouts/stepper/orientation/package.json index b446991e58..caeaedfc0e 100644 --- a/samples/layouts/stepper/orientation/package.json +++ b/samples/layouts/stepper/orientation/package.json @@ -33,7 +33,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/stepper/orientation/webpack.config.js b/samples/layouts/stepper/orientation/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/stepper/orientation/webpack.config.js +++ b/samples/layouts/stepper/orientation/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/stepper/overview/package.json b/samples/layouts/stepper/overview/package.json index a759d62bd2..76c5c41d2b 100644 --- a/samples/layouts/stepper/overview/package.json +++ b/samples/layouts/stepper/overview/package.json @@ -33,7 +33,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/stepper/overview/webpack.config.js b/samples/layouts/stepper/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/stepper/overview/webpack.config.js +++ b/samples/layouts/stepper/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/stepper/steptypes/package.json b/samples/layouts/stepper/steptypes/package.json index eb1f6d8907..91b1f69ef8 100644 --- a/samples/layouts/stepper/steptypes/package.json +++ b/samples/layouts/stepper/steptypes/package.json @@ -33,7 +33,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/stepper/steptypes/webpack.config.js b/samples/layouts/stepper/steptypes/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/stepper/steptypes/webpack.config.js +++ b/samples/layouts/stepper/steptypes/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/tabs/alignment/package.json b/samples/layouts/tabs/alignment/package.json index fe933027fb..3e209a3091 100644 --- a/samples/layouts/tabs/alignment/package.json +++ b/samples/layouts/tabs/alignment/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/tabs/alignment/webpack.config.js b/samples/layouts/tabs/alignment/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/tabs/alignment/webpack.config.js +++ b/samples/layouts/tabs/alignment/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/tabs/overview/package.json b/samples/layouts/tabs/overview/package.json index 2f52710195..888fe62e33 100644 --- a/samples/layouts/tabs/overview/package.json +++ b/samples/layouts/tabs/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/tabs/overview/webpack.config.js b/samples/layouts/tabs/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/tabs/overview/webpack.config.js +++ b/samples/layouts/tabs/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/tabs/prefix-suffix/package.json b/samples/layouts/tabs/prefix-suffix/package.json index c2aff5ea09..7912bc715b 100644 --- a/samples/layouts/tabs/prefix-suffix/package.json +++ b/samples/layouts/tabs/prefix-suffix/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/tabs/prefix-suffix/webpack.config.js b/samples/layouts/tabs/prefix-suffix/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/tabs/prefix-suffix/webpack.config.js +++ b/samples/layouts/tabs/prefix-suffix/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/layouts/tabs/scrolling/package.json b/samples/layouts/tabs/scrolling/package.json index 0ee256a7c7..6cd3e2b6ab 100644 --- a/samples/layouts/tabs/scrolling/package.json +++ b/samples/layouts/tabs/scrolling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/layouts/tabs/scrolling/webpack.config.js b/samples/layouts/tabs/scrolling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/layouts/tabs/scrolling/webpack.config.js +++ b/samples/layouts/tabs/scrolling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index 606da64eee..51553588c3 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/binding-data-csv/webpack.config.js b/samples/maps/geo-map/binding-data-csv/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/binding-data-csv/webpack.config.js +++ b/samples/maps/geo-map/binding-data-csv/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 623196b7f6..1e3a4776af 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/binding-data-json-points/webpack.config.js b/samples/maps/geo-map/binding-data-json-points/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/binding-data-json-points/webpack.config.js +++ b/samples/maps/geo-map/binding-data-json-points/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 5206a436c8..4409bbf2a4 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/binding-data-model/webpack.config.js b/samples/maps/geo-map/binding-data-model/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/binding-data-model/webpack.config.js +++ b/samples/maps/geo-map/binding-data-model/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index 64e3e7c030..b27c7b7fe8 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/binding-multiple-shapes/webpack.config.js b/samples/maps/geo-map/binding-multiple-shapes/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/webpack.config.js +++ b/samples/maps/geo-map/binding-multiple-shapes/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 3b471ebad8..1b2429fd3c 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/binding-multiple-sources/webpack.config.js b/samples/maps/geo-map/binding-multiple-sources/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/binding-multiple-sources/webpack.config.js +++ b/samples/maps/geo-map/binding-multiple-sources/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 93874938ed..5aec95b14f 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/binding-shp-points/webpack.config.js b/samples/maps/geo-map/binding-shp-points/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/binding-shp-points/webpack.config.js +++ b/samples/maps/geo-map/binding-shp-points/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 7fa7c4c912..d1c3588877 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/binding-shp-polygons/webpack.config.js b/samples/maps/geo-map/binding-shp-polygons/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/binding-shp-polygons/webpack.config.js +++ b/samples/maps/geo-map/binding-shp-polygons/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index 48f79a3df7..82f933a445 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/binding-shp-polylines/webpack.config.js b/samples/maps/geo-map/binding-shp-polylines/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/binding-shp-polylines/webpack.config.js +++ b/samples/maps/geo-map/binding-shp-polylines/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 4fe5811497..6fa96e8f87 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/custom-tooltips/webpack.config.js b/samples/maps/geo-map/custom-tooltips/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/custom-tooltips/webpack.config.js +++ b/samples/maps/geo-map/custom-tooltips/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/display-all-imagery/package.json b/samples/maps/geo-map/display-all-imagery/package.json index e05ca374ad..a5c8da40db 100644 --- a/samples/maps/geo-map/display-all-imagery/package.json +++ b/samples/maps/geo-map/display-all-imagery/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/display-all-imagery/webpack.config.js b/samples/maps/geo-map/display-all-imagery/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/display-all-imagery/webpack.config.js +++ b/samples/maps/geo-map/display-all-imagery/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index 181b0d59fc..650c4bce10 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/display-bing-imagery/webpack.config.js b/samples/maps/geo-map/display-bing-imagery/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/display-bing-imagery/webpack.config.js +++ b/samples/maps/geo-map/display-bing-imagery/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 7b417813fb..c17550258a 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/display-esri-imagery/webpack.config.js b/samples/maps/geo-map/display-esri-imagery/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/display-esri-imagery/webpack.config.js +++ b/samples/maps/geo-map/display-esri-imagery/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index 5a2a6e6bfa..50dff4a59e 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/display-heat-imagery/webpack.config.js b/samples/maps/geo-map/display-heat-imagery/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/display-heat-imagery/webpack.config.js +++ b/samples/maps/geo-map/display-heat-imagery/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index e518ebcce7..de3a4e57f5 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/display-osm-imagery/webpack.config.js b/samples/maps/geo-map/display-osm-imagery/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/display-osm-imagery/webpack.config.js +++ b/samples/maps/geo-map/display-osm-imagery/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index a94553455d..1af9485d7e 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/marker-template/webpack.config.js b/samples/maps/geo-map/marker-template/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/marker-template/webpack.config.js +++ b/samples/maps/geo-map/marker-template/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 24d5029bb5..7469d80250 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/marker-type/webpack.config.js b/samples/maps/geo-map/marker-type/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/marker-type/webpack.config.js +++ b/samples/maps/geo-map/marker-type/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index cf65019ca2..e9a3dd5efc 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/navigation/webpack.config.js b/samples/maps/geo-map/navigation/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/navigation/webpack.config.js +++ b/samples/maps/geo-map/navigation/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index 3d33a59556..5f7afa77a9 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/overview/webpack.config.js b/samples/maps/geo-map/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/overview/webpack.config.js +++ b/samples/maps/geo-map/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index 2549061390..3856f0beb5 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/shape-styling/webpack.config.js b/samples/maps/geo-map/shape-styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/shape-styling/webpack.config.js +++ b/samples/maps/geo-map/shape-styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/synchronization/package.json b/samples/maps/geo-map/synchronization/package.json index 132ea690ac..5b18aa343c 100644 --- a/samples/maps/geo-map/synchronization/package.json +++ b/samples/maps/geo-map/synchronization/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/synchronization/webpack.config.js b/samples/maps/geo-map/synchronization/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/synchronization/webpack.config.js +++ b/samples/maps/geo-map/synchronization/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index 38ff3d58dd..d932f4fb46 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/triangulating-data/webpack.config.js b/samples/maps/geo-map/triangulating-data/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/triangulating-data/webpack.config.js +++ b/samples/maps/geo-map/triangulating-data/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index b11b12612f..eac477d7b5 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/type-scatter-area-series/webpack.config.js b/samples/maps/geo-map/type-scatter-area-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/type-scatter-area-series/webpack.config.js +++ b/samples/maps/geo-map/type-scatter-area-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 01b92c7d5f..ea4900c8f8 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/type-scatter-bubble-series/webpack.config.js b/samples/maps/geo-map/type-scatter-bubble-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/webpack.config.js +++ b/samples/maps/geo-map/type-scatter-bubble-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index bea1e819fe..00ad5dfbde 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/type-scatter-contour-series/webpack.config.js b/samples/maps/geo-map/type-scatter-contour-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/webpack.config.js +++ b/samples/maps/geo-map/type-scatter-contour-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index 54fcc263dc..e22e3ca90f 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/type-scatter-density-series/webpack.config.js b/samples/maps/geo-map/type-scatter-density-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/type-scatter-density-series/webpack.config.js +++ b/samples/maps/geo-map/type-scatter-density-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index c1819b9039..896d2edcc4 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/type-scatter-symbol-series/webpack.config.js b/samples/maps/geo-map/type-scatter-symbol-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/webpack.config.js +++ b/samples/maps/geo-map/type-scatter-symbol-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index 1fc87a684c..400b84e8a6 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/type-shape-polygon-series/webpack.config.js b/samples/maps/geo-map/type-shape-polygon-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/webpack.config.js +++ b/samples/maps/geo-map/type-shape-polygon-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index 2753da0d30..91986676b9 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -23,16 +23,17 @@ "@webcomponents/template": "^1.4.2", "babel-runtime": "^6.26.0", "core-js": "^3.6.5", - "igniteui-webcomponents-charts": "5.2.0", - "igniteui-webcomponents-core": "5.2.0", - "igniteui-webcomponents-maps": "5.2.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-maps": "5.2.1-beta.0", "lit-html": "^3.2.0", "tslib": "^2.0.0" }, "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/maps/geo-map/type-shape-polyline-series/webpack.config.js b/samples/maps/geo-map/type-shape-polyline-series/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/webpack.config.js +++ b/samples/maps/geo-map/type-shape-polyline-series/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/menus/nav-bar/overview/package.json b/samples/menus/nav-bar/overview/package.json index 09184df9a0..5af3df6865 100644 --- a/samples/menus/nav-bar/overview/package.json +++ b/samples/menus/nav-bar/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/menus/nav-bar/overview/webpack.config.js b/samples/menus/nav-bar/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/menus/nav-bar/overview/webpack.config.js +++ b/samples/menus/nav-bar/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/menus/nav-bar/styling/package.json b/samples/menus/nav-bar/styling/package.json index 5f9782a9bb..daf2b635cd 100644 --- a/samples/menus/nav-bar/styling/package.json +++ b/samples/menus/nav-bar/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/menus/nav-bar/styling/webpack.config.js b/samples/menus/nav-bar/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/menus/nav-bar/styling/webpack.config.js +++ b/samples/menus/nav-bar/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/menus/nav-drawer/add-drawer-items/package.json b/samples/menus/nav-drawer/add-drawer-items/package.json index 15f33fed2d..d1536990c8 100644 --- a/samples/menus/nav-drawer/add-drawer-items/package.json +++ b/samples/menus/nav-drawer/add-drawer-items/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/menus/nav-drawer/add-drawer-items/webpack.config.js b/samples/menus/nav-drawer/add-drawer-items/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/menus/nav-drawer/add-drawer-items/webpack.config.js +++ b/samples/menus/nav-drawer/add-drawer-items/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/menus/nav-drawer/add-mini/package.json b/samples/menus/nav-drawer/add-mini/package.json index 14914e5028..f7b8796c41 100644 --- a/samples/menus/nav-drawer/add-mini/package.json +++ b/samples/menus/nav-drawer/add-mini/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/menus/nav-drawer/add-mini/webpack.config.js b/samples/menus/nav-drawer/add-mini/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/menus/nav-drawer/add-mini/webpack.config.js +++ b/samples/menus/nav-drawer/add-mini/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/menus/nav-drawer/add-positions-navbar/package.json b/samples/menus/nav-drawer/add-positions-navbar/package.json index 9e9a411bbd..5c10b4fda5 100644 --- a/samples/menus/nav-drawer/add-positions-navbar/package.json +++ b/samples/menus/nav-drawer/add-positions-navbar/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/menus/nav-drawer/add-positions-navbar/webpack.config.js b/samples/menus/nav-drawer/add-positions-navbar/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/menus/nav-drawer/add-positions-navbar/webpack.config.js +++ b/samples/menus/nav-drawer/add-positions-navbar/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/menus/nav-drawer/styling/package.json b/samples/menus/nav-drawer/styling/package.json index 833ba60655..9c6b65cd33 100644 --- a/samples/menus/nav-drawer/styling/package.json +++ b/samples/menus/nav-drawer/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/menus/nav-drawer/styling/webpack.config.js b/samples/menus/nav-drawer/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/menus/nav-drawer/styling/webpack.config.js +++ b/samples/menus/nav-drawer/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/banner/banner-advanced-sample/package.json b/samples/notifications/banner/banner-advanced-sample/package.json index 990f8dcbb0..0b3969c317 100644 --- a/samples/notifications/banner/banner-advanced-sample/package.json +++ b/samples/notifications/banner/banner-advanced-sample/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/banner/banner-advanced-sample/webpack.config.js b/samples/notifications/banner/banner-advanced-sample/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/banner/banner-advanced-sample/webpack.config.js +++ b/samples/notifications/banner/banner-advanced-sample/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/banner/banner-sample-1/package.json b/samples/notifications/banner/banner-sample-1/package.json index 2b480f6bc2..c3caac6eab 100644 --- a/samples/notifications/banner/banner-sample-1/package.json +++ b/samples/notifications/banner/banner-sample-1/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/banner/banner-sample-1/webpack.config.js b/samples/notifications/banner/banner-sample-1/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/banner/banner-sample-1/webpack.config.js +++ b/samples/notifications/banner/banner-sample-1/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/banner/banner-sample-2/package.json b/samples/notifications/banner/banner-sample-2/package.json index 6b18d2f516..a696bf764a 100644 --- a/samples/notifications/banner/banner-sample-2/package.json +++ b/samples/notifications/banner/banner-sample-2/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/banner/banner-sample-2/webpack.config.js b/samples/notifications/banner/banner-sample-2/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/banner/banner-sample-2/webpack.config.js +++ b/samples/notifications/banner/banner-sample-2/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/banner/banner-styling/package.json b/samples/notifications/banner/banner-styling/package.json index b18f61def0..3ba6b75acf 100644 --- a/samples/notifications/banner/banner-styling/package.json +++ b/samples/notifications/banner/banner-styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/banner/banner-styling/webpack.config.js b/samples/notifications/banner/banner-styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/banner/banner-styling/webpack.config.js +++ b/samples/notifications/banner/banner-styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/dialog/closing-variations/package.json b/samples/notifications/dialog/closing-variations/package.json index d09aa04323..1f89b0dc09 100644 --- a/samples/notifications/dialog/closing-variations/package.json +++ b/samples/notifications/dialog/closing-variations/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/dialog/closing-variations/webpack.config.js b/samples/notifications/dialog/closing-variations/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/dialog/closing-variations/webpack.config.js +++ b/samples/notifications/dialog/closing-variations/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/dialog/form/package.json b/samples/notifications/dialog/form/package.json index 721ec576ba..a2308341a1 100644 --- a/samples/notifications/dialog/form/package.json +++ b/samples/notifications/dialog/form/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/dialog/form/webpack.config.js b/samples/notifications/dialog/form/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/dialog/form/webpack.config.js +++ b/samples/notifications/dialog/form/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/dialog/overview/package.json b/samples/notifications/dialog/overview/package.json index 59843a7910..4b99b3f5de 100644 --- a/samples/notifications/dialog/overview/package.json +++ b/samples/notifications/dialog/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/dialog/overview/webpack.config.js b/samples/notifications/dialog/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/dialog/overview/webpack.config.js +++ b/samples/notifications/dialog/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/dialog/styling/package.json b/samples/notifications/dialog/styling/package.json index ce737b8aea..23031215d6 100644 --- a/samples/notifications/dialog/styling/package.json +++ b/samples/notifications/dialog/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/dialog/styling/webpack.config.js b/samples/notifications/dialog/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/dialog/styling/webpack.config.js +++ b/samples/notifications/dialog/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/snackbar/action-text/package.json b/samples/notifications/snackbar/action-text/package.json index 6bc699d1d5..6a783ca737 100644 --- a/samples/notifications/snackbar/action-text/package.json +++ b/samples/notifications/snackbar/action-text/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/snackbar/action-text/webpack.config.js b/samples/notifications/snackbar/action-text/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/snackbar/action-text/webpack.config.js +++ b/samples/notifications/snackbar/action-text/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/snackbar/display-time/package.json b/samples/notifications/snackbar/display-time/package.json index 6bc699d1d5..6a783ca737 100644 --- a/samples/notifications/snackbar/display-time/package.json +++ b/samples/notifications/snackbar/display-time/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/snackbar/display-time/webpack.config.js b/samples/notifications/snackbar/display-time/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/snackbar/display-time/webpack.config.js +++ b/samples/notifications/snackbar/display-time/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/snackbar/overview/package.json b/samples/notifications/snackbar/overview/package.json index 6bc699d1d5..6a783ca737 100644 --- a/samples/notifications/snackbar/overview/package.json +++ b/samples/notifications/snackbar/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/snackbar/overview/webpack.config.js b/samples/notifications/snackbar/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/snackbar/overview/webpack.config.js +++ b/samples/notifications/snackbar/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/snackbar/styling/package.json b/samples/notifications/snackbar/styling/package.json index 6bc699d1d5..6a783ca737 100644 --- a/samples/notifications/snackbar/styling/package.json +++ b/samples/notifications/snackbar/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/snackbar/styling/webpack.config.js b/samples/notifications/snackbar/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/snackbar/styling/webpack.config.js +++ b/samples/notifications/snackbar/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/toast/overview/package.json b/samples/notifications/toast/overview/package.json index b5541375f3..1c26d5a6ba 100644 --- a/samples/notifications/toast/overview/package.json +++ b/samples/notifications/toast/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/toast/overview/webpack.config.js b/samples/notifications/toast/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/toast/overview/webpack.config.js +++ b/samples/notifications/toast/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/toast/properties/package.json b/samples/notifications/toast/properties/package.json index b5541375f3..1c26d5a6ba 100644 --- a/samples/notifications/toast/properties/package.json +++ b/samples/notifications/toast/properties/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/toast/properties/webpack.config.js b/samples/notifications/toast/properties/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/toast/properties/webpack.config.js +++ b/samples/notifications/toast/properties/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/notifications/toast/styling/package.json b/samples/notifications/toast/styling/package.json index b5541375f3..1c26d5a6ba 100644 --- a/samples/notifications/toast/styling/package.json +++ b/samples/notifications/toast/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/notifications/toast/styling/webpack.config.js b/samples/notifications/toast/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/notifications/toast/styling/webpack.config.js +++ b/samples/notifications/toast/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/calendar/disabled-dates/package.json b/samples/scheduling/calendar/disabled-dates/package.json index 4ebb1db2f0..407546919d 100644 --- a/samples/scheduling/calendar/disabled-dates/package.json +++ b/samples/scheduling/calendar/disabled-dates/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/calendar/disabled-dates/webpack.config.js b/samples/scheduling/calendar/disabled-dates/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/calendar/disabled-dates/webpack.config.js +++ b/samples/scheduling/calendar/disabled-dates/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/calendar/formatting/package.json b/samples/scheduling/calendar/formatting/package.json index 1a2420ec38..98b242b9ab 100644 --- a/samples/scheduling/calendar/formatting/package.json +++ b/samples/scheduling/calendar/formatting/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/calendar/formatting/webpack.config.js b/samples/scheduling/calendar/formatting/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/calendar/formatting/webpack.config.js +++ b/samples/scheduling/calendar/formatting/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/calendar/header/package.json b/samples/scheduling/calendar/header/package.json index eb883a66a2..255841e26d 100644 --- a/samples/scheduling/calendar/header/package.json +++ b/samples/scheduling/calendar/header/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/calendar/header/webpack.config.js b/samples/scheduling/calendar/header/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/calendar/header/webpack.config.js +++ b/samples/scheduling/calendar/header/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/calendar/multiple-months/package.json b/samples/scheduling/calendar/multiple-months/package.json index 7a487cc26d..d566f04825 100644 --- a/samples/scheduling/calendar/multiple-months/package.json +++ b/samples/scheduling/calendar/multiple-months/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/calendar/multiple-months/webpack.config.js b/samples/scheduling/calendar/multiple-months/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/calendar/multiple-months/webpack.config.js +++ b/samples/scheduling/calendar/multiple-months/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/calendar/multiple-selection/package.json b/samples/scheduling/calendar/multiple-selection/package.json index ebb795d54d..a85cadffa2 100644 --- a/samples/scheduling/calendar/multiple-selection/package.json +++ b/samples/scheduling/calendar/multiple-selection/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/calendar/multiple-selection/webpack.config.js b/samples/scheduling/calendar/multiple-selection/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/calendar/multiple-selection/webpack.config.js +++ b/samples/scheduling/calendar/multiple-selection/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/calendar/overview/package.json b/samples/scheduling/calendar/overview/package.json index 6a5882e69d..2f50625e25 100644 --- a/samples/scheduling/calendar/overview/package.json +++ b/samples/scheduling/calendar/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/calendar/overview/webpack.config.js b/samples/scheduling/calendar/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/calendar/overview/webpack.config.js +++ b/samples/scheduling/calendar/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/calendar/range-selection/package.json b/samples/scheduling/calendar/range-selection/package.json index 6ef127d155..1d79a7d677 100644 --- a/samples/scheduling/calendar/range-selection/package.json +++ b/samples/scheduling/calendar/range-selection/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/calendar/range-selection/webpack.config.js b/samples/scheduling/calendar/range-selection/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/calendar/range-selection/webpack.config.js +++ b/samples/scheduling/calendar/range-selection/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/calendar/size/package.json b/samples/scheduling/calendar/size/package.json index 8c65461ae4..f4482c0684 100644 --- a/samples/scheduling/calendar/size/package.json +++ b/samples/scheduling/calendar/size/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/calendar/size/webpack.config.js b/samples/scheduling/calendar/size/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/calendar/size/webpack.config.js +++ b/samples/scheduling/calendar/size/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/calendar/special-dates/package.json b/samples/scheduling/calendar/special-dates/package.json index a350787e95..806cdf4cd2 100644 --- a/samples/scheduling/calendar/special-dates/package.json +++ b/samples/scheduling/calendar/special-dates/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/calendar/special-dates/webpack.config.js b/samples/scheduling/calendar/special-dates/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/calendar/special-dates/webpack.config.js +++ b/samples/scheduling/calendar/special-dates/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/calendar/styling/package.json b/samples/scheduling/calendar/styling/package.json index 4fbd6d5bd5..c5b1af3fa7 100644 --- a/samples/scheduling/calendar/styling/package.json +++ b/samples/scheduling/calendar/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/calendar/styling/webpack.config.js b/samples/scheduling/calendar/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/calendar/styling/webpack.config.js +++ b/samples/scheduling/calendar/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/calendar/week-numbers/package.json b/samples/scheduling/calendar/week-numbers/package.json index 46ac44fb44..fd1b7b436c 100644 --- a/samples/scheduling/calendar/week-numbers/package.json +++ b/samples/scheduling/calendar/week-numbers/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/calendar/week-numbers/webpack.config.js b/samples/scheduling/calendar/week-numbers/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/calendar/week-numbers/webpack.config.js +++ b/samples/scheduling/calendar/week-numbers/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/date-picker/dialog-mode/package.json b/samples/scheduling/date-picker/dialog-mode/package.json index 12b2d782ea..bbd12d7b25 100644 --- a/samples/scheduling/date-picker/dialog-mode/package.json +++ b/samples/scheduling/date-picker/dialog-mode/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/date-picker/dialog-mode/webpack.config.js b/samples/scheduling/date-picker/dialog-mode/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/date-picker/dialog-mode/webpack.config.js +++ b/samples/scheduling/date-picker/dialog-mode/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/date-picker/form/package.json b/samples/scheduling/date-picker/form/package.json index f1a43f8a56..05fde8133f 100644 --- a/samples/scheduling/date-picker/form/package.json +++ b/samples/scheduling/date-picker/form/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/date-picker/form/webpack.config.js b/samples/scheduling/date-picker/form/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/date-picker/form/webpack.config.js +++ b/samples/scheduling/date-picker/form/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/date-picker/format/package.json b/samples/scheduling/date-picker/format/package.json index 1540b6270a..798c481b11 100644 --- a/samples/scheduling/date-picker/format/package.json +++ b/samples/scheduling/date-picker/format/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/date-picker/format/webpack.config.js b/samples/scheduling/date-picker/format/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/date-picker/format/webpack.config.js +++ b/samples/scheduling/date-picker/format/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/date-picker/overview/package.json b/samples/scheduling/date-picker/overview/package.json index cfa81ce356..f4e31363b1 100644 --- a/samples/scheduling/date-picker/overview/package.json +++ b/samples/scheduling/date-picker/overview/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/date-picker/overview/webpack.config.js b/samples/scheduling/date-picker/overview/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/date-picker/overview/webpack.config.js +++ b/samples/scheduling/date-picker/overview/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/samples/scheduling/date-picker/styling/package.json b/samples/scheduling/date-picker/styling/package.json index a67dc12627..4c4d6e9ba3 100644 --- a/samples/scheduling/date-picker/styling/package.json +++ b/samples/scheduling/date-picker/styling/package.json @@ -31,7 +31,8 @@ "devDependencies": { "@babel/cli": "^7.8.3", "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-runtime": "^7.10.0", "@babel/preset-env": "^7.8.3", "@babel/preset-typescript": "^7.8.3", diff --git a/samples/scheduling/date-picker/styling/webpack.config.js b/samples/scheduling/date-picker/styling/webpack.config.js index 9d11a6155c..3813144cf8 100644 --- a/samples/scheduling/date-picker/styling/webpack.config.js +++ b/samples/scheduling/date-picker/styling/webpack.config.js @@ -65,7 +65,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } @@ -78,7 +79,8 @@ module.exports = env => { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] }, diff --git a/webpack.config.js b/webpack.config.js index 43202972b1..7fe515311c 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -91,7 +91,8 @@ var config = { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } }, @@ -112,7 +113,8 @@ var config = { "compact": isProd ? true : false, "presets": presets, "plugins": [ - "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", "@babel/plugin-transform-runtime" ] } }, From bf17314ce2c22ee443d21b3ee7304891cf892f7e Mon Sep 17 00:00:00 2001 From: Georgi Anastasov Date: Thu, 13 Feb 2025 13:57:50 +0200 Subject: [PATCH 54/63] Add disabled summaries samples --- .../grid/grid-disabled-summaries/.prettierrc | 11 + .../grid/grid-disabled-summaries/ReadMe.md | 56 + .../grid/grid-disabled-summaries/index.html | 43 + .../grid/grid-disabled-summaries/package.json | 63 + .../sandbox.config.json | 7 + .../grid-disabled-summaries/src/NwindData.ts | 323 ++++ .../grid-disabled-summaries/src/index.css | 44 + .../grid/grid-disabled-summaries/src/index.ts | 257 +++ .../grid-disabled-summaries/tsconfig.json | 20 + .../grid/grid-disabled-summaries/tslint.json | 53 + .../grid-disabled-summaries/webpack.config.js | 104 ++ .../.prettierrc | 11 + .../ReadMe.md | 56 + .../index.html | 59 + .../package.json | 63 + .../sandbox.config.json | 7 + .../src/SingersData.json | 1389 +++++++++++++++++ .../src/index.css | 44 + .../src/index.ts | 241 +++ .../tsconfig.json | 20 + .../tslint.json | 53 + .../webpack.config.js | 104 ++ .../tree-grid-disabled-summaries/.prettierrc | 11 + .../tree-grid-disabled-summaries/ReadMe.md | 56 + .../tree-grid-disabled-summaries/index.html | 43 + .../tree-grid-disabled-summaries/package.json | 63 + .../sandbox.config.json | 7 + .../src/OrdersTreeData.ts | 291 ++++ .../src/index.css | 44 + .../tree-grid-disabled-summaries/src/index.ts | 322 ++++ .../tsconfig.json | 20 + .../tree-grid-disabled-summaries/tslint.json | 53 + .../webpack.config.js | 104 ++ 33 files changed, 4042 insertions(+) create mode 100644 samples/grids/grid/grid-disabled-summaries/.prettierrc create mode 100644 samples/grids/grid/grid-disabled-summaries/ReadMe.md create mode 100644 samples/grids/grid/grid-disabled-summaries/index.html create mode 100644 samples/grids/grid/grid-disabled-summaries/package.json create mode 100644 samples/grids/grid/grid-disabled-summaries/sandbox.config.json create mode 100644 samples/grids/grid/grid-disabled-summaries/src/NwindData.ts create mode 100644 samples/grids/grid/grid-disabled-summaries/src/index.css create mode 100644 samples/grids/grid/grid-disabled-summaries/src/index.ts create mode 100644 samples/grids/grid/grid-disabled-summaries/tsconfig.json create mode 100644 samples/grids/grid/grid-disabled-summaries/tslint.json create mode 100644 samples/grids/grid/grid-disabled-summaries/webpack.config.js create mode 100644 samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/.prettierrc create mode 100644 samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/ReadMe.md create mode 100644 samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/index.html create mode 100644 samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/package.json create mode 100644 samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/sandbox.config.json create mode 100644 samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/SingersData.json create mode 100644 samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/index.css create mode 100644 samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/index.ts create mode 100644 samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/tsconfig.json create mode 100644 samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/tslint.json create mode 100644 samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/webpack.config.js create mode 100644 samples/grids/tree-grid/tree-grid-disabled-summaries/.prettierrc create mode 100644 samples/grids/tree-grid/tree-grid-disabled-summaries/ReadMe.md create mode 100644 samples/grids/tree-grid/tree-grid-disabled-summaries/index.html create mode 100644 samples/grids/tree-grid/tree-grid-disabled-summaries/package.json create mode 100644 samples/grids/tree-grid/tree-grid-disabled-summaries/sandbox.config.json create mode 100644 samples/grids/tree-grid/tree-grid-disabled-summaries/src/OrdersTreeData.ts create mode 100644 samples/grids/tree-grid/tree-grid-disabled-summaries/src/index.css create mode 100644 samples/grids/tree-grid/tree-grid-disabled-summaries/src/index.ts create mode 100644 samples/grids/tree-grid/tree-grid-disabled-summaries/tsconfig.json create mode 100644 samples/grids/tree-grid/tree-grid-disabled-summaries/tslint.json create mode 100644 samples/grids/tree-grid/tree-grid-disabled-summaries/webpack.config.js diff --git a/samples/grids/grid/grid-disabled-summaries/.prettierrc b/samples/grids/grid/grid-disabled-summaries/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/grids/grid/grid-disabled-summaries/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/grids/grid/grid-disabled-summaries/ReadMe.md b/samples/grids/grid/grid-disabled-summaries/ReadMe.md new file mode 100644 index 0000000000..950be7a0ba --- /dev/null +++ b/samples/grids/grid/grid-disabled-summaries/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Disabled Summaries feature using [Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/grids/grid/grid-disabled-summaries +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/grids/grid/grid-disabled-summaries/index.html b/samples/grids/grid/grid-disabled-summaries/index.html new file mode 100644 index 0000000000..1b3e958449 --- /dev/null +++ b/samples/grids/grid/grid-disabled-summaries/index.html @@ -0,0 +1,43 @@ + + + + Sample | Ignite UI | Web Components | Infragistics + + + + + + + + + + + +
+
+
+ +
+
+ Disable All + Enable All +
+
+ + + + + + + + + +
+
+ + + <% if (false) { %> + + <% } %> + + diff --git a/samples/grids/grid/grid-disabled-summaries/package.json b/samples/grids/grid/grid-disabled-summaries/package.json new file mode 100644 index 0000000000..863c386ab1 --- /dev/null +++ b/samples/grids/grid/grid-disabled-summaries/package.json @@ -0,0 +1,63 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents": "5.2.1", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.21.0", + "@babel/core": "^7.21.0", + "@babel/plugin-proposal-class-properties": "^7.12.0", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-runtime": "^7.21.0", + "@babel/preset-env": "^7.21.0", + "@babel/preset-typescript": "^7.21.0", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } +} diff --git a/samples/grids/grid/grid-disabled-summaries/sandbox.config.json b/samples/grids/grid/grid-disabled-summaries/sandbox.config.json new file mode 100644 index 0000000000..5c5b54fe21 --- /dev/null +++ b/samples/grids/grid/grid-disabled-summaries/sandbox.config.json @@ -0,0 +1,7 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} + \ No newline at end of file diff --git a/samples/grids/grid/grid-disabled-summaries/src/NwindData.ts b/samples/grids/grid/grid-disabled-summaries/src/NwindData.ts new file mode 100644 index 0000000000..b84f3c4c92 --- /dev/null +++ b/samples/grids/grid/grid-disabled-summaries/src/NwindData.ts @@ -0,0 +1,323 @@ +export class NwindDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public ProductID: number; + public ProductName: string; + public SupplierID: number; + public CategoryID: number; + public QuantityPerUnit: string; + public UnitPrice: number; + public UnitsInStock: number; + public UnitsOnOrder: number; + public ReorderLevel: number; + public Discontinued: boolean; + public OrderDate: string; +} + +export class NwindData extends Array { + public constructor() { + super(); + this.push( + new NwindDataItem({ + ProductID: 1, + ProductName: `Chai`, + SupplierID: 1, + CategoryID: 1, + QuantityPerUnit: `10 boxes x 20 bags`, + UnitPrice: 18, + UnitsInStock: 39, + UnitsOnOrder: 30, + ReorderLevel: 10, + Discontinued: false, + OrderDate: `2012-02-12` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 2, + ProductName: `Chang`, + SupplierID: 1, + CategoryID: 1, + QuantityPerUnit: `24 - 12 oz bottles`, + UnitPrice: 19, + UnitsInStock: 17, + UnitsOnOrder: 40, + ReorderLevel: 25, + Discontinued: true, + OrderDate: `2003-03-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 3, + ProductName: `Aniseed Syrup`, + SupplierID: 1, + CategoryID: 2, + QuantityPerUnit: `12 - 550 ml bottles`, + UnitPrice: 10, + UnitsInStock: 13, + UnitsOnOrder: 70, + ReorderLevel: 25, + Discontinued: false, + OrderDate: `2006-03-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 4, + ProductName: `Chef Antons Cajun Seasoning`, + SupplierID: 2, + CategoryID: 2, + QuantityPerUnit: `48 - 6 oz jars`, + UnitPrice: 22, + UnitsInStock: 53, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: false, + OrderDate: `2016-03-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 5, + ProductName: `Chef Antons Gumbo Mix`, + SupplierID: 2, + CategoryID: 2, + QuantityPerUnit: `36 boxes`, + UnitPrice: 21.35, + UnitsInStock: 0, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: true, + OrderDate: `2011-11-11` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 6, + ProductName: `Grandmas Boysenberry Spread`, + SupplierID: 3, + CategoryID: 2, + QuantityPerUnit: `12 - 8 oz jars`, + UnitPrice: 25, + UnitsInStock: 0, + UnitsOnOrder: 30, + ReorderLevel: 25, + Discontinued: false, + OrderDate: `2017-12-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 7, + ProductName: `Uncle Bobs Organic Dried Pears`, + SupplierID: 3, + CategoryID: 7, + QuantityPerUnit: `12 - 1 lb pkgs.`, + UnitPrice: 30, + UnitsInStock: 150, + UnitsOnOrder: 30, + ReorderLevel: 10, + Discontinued: false, + OrderDate: `2016-07-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 8, + ProductName: `Northwoods Cranberry Sauce`, + SupplierID: 3, + CategoryID: 2, + QuantityPerUnit: `12 - 12 oz jars`, + UnitPrice: 40, + UnitsInStock: 6, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: false, + OrderDate: `2018-01-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 9, + ProductName: `Mishi Kobe Niku`, + SupplierID: 4, + CategoryID: 6, + QuantityPerUnit: `18 - 500 g pkgs.`, + UnitPrice: 97, + UnitsInStock: 29, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: true, + OrderDate: `2010-02-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 10, + ProductName: `Ikura`, + SupplierID: 4, + CategoryID: 8, + QuantityPerUnit: `12 - 200 ml jars`, + UnitPrice: 31, + UnitsInStock: 31, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: false, + OrderDate: `2008-05-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 11, + ProductName: `Queso Cabrales`, + SupplierID: 5, + CategoryID: 4, + QuantityPerUnit: `1 kg pkg.`, + UnitPrice: 21, + UnitsInStock: 22, + UnitsOnOrder: 30, + ReorderLevel: 30, + Discontinued: false, + OrderDate: `2009-01-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 12, + ProductName: `Queso Manchego La Pastora`, + SupplierID: 5, + CategoryID: 4, + QuantityPerUnit: `10 - 500 g pkgs.`, + UnitPrice: 38, + UnitsInStock: 86, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: false, + OrderDate: `2015-11-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 13, + ProductName: `Konbu`, + SupplierID: 6, + CategoryID: 8, + QuantityPerUnit: `2 kg box`, + UnitPrice: 6, + UnitsInStock: 24, + UnitsOnOrder: 30, + ReorderLevel: 5, + Discontinued: false, + OrderDate: `2015-03-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 14, + ProductName: `Tofu`, + SupplierID: 6, + CategoryID: 7, + QuantityPerUnit: `40 - 100 g pkgs.`, + UnitPrice: 23.25, + UnitsInStock: 35, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: false, + OrderDate: `2017-06-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 15, + ProductName: `Genen Shouyu`, + SupplierID: 6, + CategoryID: 2, + QuantityPerUnit: `24 - 250 ml bottles`, + UnitPrice: 15.5, + UnitsInStock: 39, + UnitsOnOrder: 30, + ReorderLevel: 5, + Discontinued: false, + OrderDate: `2014-03-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 16, + ProductName: `Pavlova`, + SupplierID: 7, + CategoryID: 3, + QuantityPerUnit: `32 - 500 g boxes`, + UnitPrice: 17.45, + UnitsInStock: 29, + UnitsOnOrder: 30, + ReorderLevel: 10, + Discontinued: false, + OrderDate: `2018-03-28` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 17, + ProductName: `Alice Mutton`, + SupplierID: 7, + CategoryID: 6, + QuantityPerUnit: `20 - 1 kg tins`, + UnitPrice: 39, + UnitsInStock: 0, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: true, + OrderDate: `2015-08-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 18, + ProductName: `Carnarvon Tigers`, + SupplierID: 7, + CategoryID: 8, + QuantityPerUnit: `16 kg pkg.`, + UnitPrice: 62.5, + UnitsInStock: 42, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: false, + OrderDate: `2005-09-27` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 19, + ProductName: `Teatime Chocolate Biscuits`, + SupplierID: 8, + CategoryID: 3, + QuantityPerUnit: ``, + UnitPrice: 9.2, + UnitsInStock: 25, + UnitsOnOrder: 30, + ReorderLevel: 5, + Discontinued: false, + OrderDate: `2001-03-17` + }) + ); + this.push( + new NwindDataItem({ + ProductID: 20, + ProductName: `Sir Rodneys Marmalade`, + SupplierID: 8, + CategoryID: 3, + QuantityPerUnit: `4 - 100 ml jars`, + UnitPrice: 4.5, + UnitsInStock: 40, + UnitsOnOrder: 30, + ReorderLevel: 0, + Discontinued: false, + OrderDate: `2005-03-17` + }) + ); + } +} diff --git a/samples/grids/grid/grid-disabled-summaries/src/index.css b/samples/grids/grid/grid-disabled-summaries/src/index.css new file mode 100644 index 0000000000..03040d6bba --- /dev/null +++ b/samples/grids/grid/grid-disabled-summaries/src/index.css @@ -0,0 +1,44 @@ +.grid-wrapper { + margin: 0 auto; + padding: 16px; + height: 87%; +} + +.grid-wrapper .summaries { + margin-bottom: 1rem; + display: flex; + align-items: center; + flex-wrap: wrap; +} + +.grid-wrapper .summaries-title { + margin: 0 0 1rem 0; + flex-basis: 100%; + font-weight: bold; +} + +.grid-wrapper .summary-button { + margin-right: 1rem; +} + +igc-dialog { + border: 1px solid #e0e0e0; + border-radius: 8px; +} + +igc-dialog::part(title) { + color: #1E6DFE; +} + +.summaries-dialog-items { + display: flex; + flex-direction: column; + align-items: flex-start; +} + +.summaries-dialog-items .summaries-dialog-item { + display: flex; + align-items: center; + padding: 0 1rem; +} + diff --git a/samples/grids/grid/grid-disabled-summaries/src/index.ts b/samples/grids/grid/grid-disabled-summaries/src/index.ts new file mode 100644 index 0000000000..c3892b7c15 --- /dev/null +++ b/samples/grids/grid/grid-disabled-summaries/src/index.ts @@ -0,0 +1,257 @@ +import "igniteui-webcomponents-grids/grids/combined"; +import { defineComponents, IgcButtonComponent, IgcDialogComponent, IgcCheckboxComponent } from "igniteui-webcomponents"; +import { ComponentRenderer, WebGridDescriptionModule } from "igniteui-webcomponents-core"; +import { IgcGridComponent, IgcColumnComponent, IgcSummaryOperand, IgcSummaryResult } from "igniteui-webcomponents-grids/grids"; +import { NwindData } from "./NwindData"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; + +defineComponents(IgcButtonComponent, IgcDialogComponent, IgcCheckboxComponent); + +class UnitsInStockSummary extends IgcSummaryOperand { + constructor() { + super(); + } + operate(data: any[] = [], allData: any[] = [], fieldName: string = "", summaryResult: any = null): IgcSummaryResult[] { + const result: IgcSummaryResult[] = []; + const values = allData.map((item) => item[fieldName] ?? 0).filter((value) => value !== null); + + const discontinuedItems = allData.filter((item) => item["Discontinued"] === true); + const discontinuedValues = discontinuedItems.map((item) => item[fieldName] ?? 0).filter((value) => !isNaN(value)); + + result.push({ key: "count", label: "Count", summaryResult: values.length }); + result.push({ key: "min", label: "Min", summaryResult: values.length > 0 ? Math.min(...values) : "N/A" }); + result.push({ key: "max", label: "Max", summaryResult: values.length > 0 ? Math.max(...values) : "N/A" }); + result.push({ key: "sum", label: "Sum", summaryResult: values.reduce((a, b) => a + b, 0) }); + result.push({ + key: "average", + label: "Average", + summaryResult: values.length > 0 ? values.reduce((a, b) => a + b, 0) / values.length : "N/A" + }); + result.push({ + key: "median", + label: "Median", + summaryResult: + values.length > 0 + ? (() => { + const sortedValues = values.slice().sort((a, b) => a - b); + return sortedValues.length % 2 === 0 ? (sortedValues[sortedValues.length / 2 - 1] + sortedValues[sortedValues.length / 2]) / 2 : sortedValues[Math.floor(sortedValues.length / 2)]; + })() + : "N/A" + }); + result.push({ key: "range", label: "Range", summaryResult: values.length > 0 ? Math.max(...values) - Math.min(...values) : "N/A" }); + result.push({ key: "discontinued", label: "Discontinued Products", summaryResult: discontinuedItems.length }); + result.push({ key: "totalDiscontinued", label: "Total Discontinued Items", summaryResult: discontinuedValues.length > 0 ? discontinuedValues.reduce((a, b) => a + b, 0) : 0 }); + + return result; + } +} + +class DiscontinuedSummary extends IgcSummaryOperand { + constructor() { + super(); + } + operate(data: any[] = [], allData: any[] = [], fieldName: string = ""): IgcSummaryResult[] { + const result: IgcSummaryResult[] = []; + result.push({ key: "count", label: "Count", summaryResult: allData.length }); + result.push({ key: "true", label: "True", summaryResult: allData.filter((item) => item[fieldName] === true).length }); + result.push({ key: "false", label: "False", summaryResult: allData.filter((item) => item[fieldName] === false).length }); + return result; + } +} + +export class Sample { + private grid: IgcGridComponent; + private dialog: IgcDialogComponent; + private _bind: () => void; + private currentColumn: IgcColumnComponent | null = null; + private summariesContainer: HTMLDivElement | null = null; + private disableAllBtn!: HTMLButtonElement; + private enableAllBtn!: HTMLButtonElement; + + constructor() { + this.grid = document.getElementById("grid") as IgcGridComponent; + this.dialog = document.getElementById("dialog") as IgcDialogComponent; + this.dialog.closeOnOutsideClick = true; + this.dialog.keepOpenOnEscape = false; + + this.summariesContainer = document.querySelector(".summaries"); + + if (this.summariesContainer) { + const title = document.createElement("p"); + title.classList.add("summaries-title"); + title.textContent = "Disable Summaries for Column:"; + this.summariesContainer.appendChild(title); + } + + this.disableAllBtn = document.getElementById("disableAllBtn") as HTMLButtonElement; + this.enableAllBtn = document.getElementById("enableAllBtn") as HTMLButtonElement; + + this.webGridCustomSummary = this.webGridCustomSummary.bind(this); + this.openDialog = this.openDialog.bind(this); + this.toggleSummary = this.toggleSummary.bind(this); + this.disableAllSummaries = this.disableAllSummaries.bind(this); + this.enableAllSummaries = this.enableAllSummaries.bind(this); + this.handleColumnInit = this.handleColumnInit.bind(this); + this.updateCheckboxes = this.updateCheckboxes.bind(this); + + this._bind = () => { + this.grid.data = this.nwindData; + this.grid.addEventListener("columnInit", this.handleColumnInit); + document.getElementById("disableAllBtn")!.addEventListener("click", this.disableAllSummaries); + document.getElementById("enableAllBtn")!.addEventListener("click", this.enableAllSummaries); + }; + this._bind(); + } + + private handleColumnInit(event: any) { + this.webGridCustomSummary(event); + const column: IgcColumnComponent = event.detail; + + if (!this.summariesContainer) return; + + const button = document.createElement("igc-button"); + button.classList.add("summary-button"); + button.textContent = column.header ? column.header.toString() : column.field; + button.setAttribute("variant", "contained"); + button.addEventListener("click", () => this.openDialog(column)); + this.summariesContainer.appendChild(button); + } + + private _nwindData: NwindData | undefined; + public get nwindData(): NwindData { + if (this._nwindData == null) { + this._nwindData = new NwindData(); + } + return this._nwindData; + } + + private _componentRenderer: ComponentRenderer | undefined; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + WebGridDescriptionModule.register(this._componentRenderer.context); + } + return this._componentRenderer; + } + + public webGridCustomSummary(args: any): void { + if (args.detail.field === "UnitsInStock") { + args.detail.summaries = UnitsInStockSummary; + } + if (args.detail.field === "Discontinued") { + args.detail.summaries = DiscontinuedSummary; + } + } + + private updateCheckboxes() { + if (!this.currentColumn) return; + + const dialogItemsContainer = this.dialog.querySelector(".summaries-dialog-items")!; + dialogItemsContainer.innerHTML = ""; + + let allSummaries: IgcSummaryResult[] = []; + + const getSummaryResults = (operand: any): IgcSummaryResult[] => { + if (typeof operand === "function") { + operand = new operand(); + } + if (operand instanceof IgcSummaryOperand) { + return operand.operate([], this.grid.data, this.currentColumn!.field); + } + return []; + }; + + if (!this.currentColumn.summaries) { + const defaultOperand = IgcSummaryOperand; + allSummaries = getSummaryResults(defaultOperand); + } else { + allSummaries = getSummaryResults(this.currentColumn.summaries); + } + + let allDisabled = true; + let allEnabled = true; + + allSummaries.forEach((summary) => { + const checkbox = document.createElement("igc-checkbox") as IgcCheckboxComponent; + checkbox.classList.add("summaries-dialog-item"); + checkbox.textContent = summary.label; + const isDisabled = this.currentColumn!.disabledSummaries?.includes(summary.key); + checkbox.checked = isDisabled; + + if (isDisabled) { + allEnabled = false; + } else { + allDisabled = false; + } + + checkbox.addEventListener("click", () => this.toggleSummary(summary.key)); + dialogItemsContainer.appendChild(checkbox); + }); + + this.disableAllBtn.disabled = allDisabled; + this.enableAllBtn.disabled = allEnabled; + } + + public openDialog(column: IgcColumnComponent) { + this.currentColumn = column; + this.dialog.title = `Disable Summaries for ${column.header || column.field}`; + this.updateCheckboxes(); + this.dialog.show(); + } + + public toggleSummary(summaryKey: string) { + if (!this.currentColumn) return; + + if (!this.currentColumn.disabledSummaries) { + this.currentColumn.disabledSummaries = []; + } + + if (this.currentColumn.disabledSummaries.includes(summaryKey)) { + this.currentColumn.disabledSummaries = this.currentColumn.disabledSummaries.filter((key: string) => key !== summaryKey); + } else { + this.currentColumn.disabledSummaries = [...this.currentColumn.disabledSummaries, summaryKey]; + } + + this.updateCheckboxes(); + } + + public disableAllSummaries() { + if (!this.currentColumn) return; + + let allSummaryKeys: string[] = []; + + const getSummaryKeys = (operand: any): string[] => { + if (typeof operand === "function") { + operand = new operand(); + } + if (operand instanceof IgcSummaryOperand) { + if (this.grid && this.currentColumn) { + return operand.operate([], this.grid.data, this.currentColumn.field).map((s: { key: any; }) => s.key); + } + return []; + } + return []; + }; + + if (!this.currentColumn.summaries) { + const defaultOperand = IgcSummaryOperand; + allSummaryKeys = getSummaryKeys(defaultOperand); + } else { + allSummaryKeys = getSummaryKeys(this.currentColumn.summaries); + } + + this.currentColumn.disabledSummaries = allSummaryKeys; + this.updateCheckboxes(); + this.grid.markForCheck(); + } + + public enableAllSummaries() { + if (!this.currentColumn) return; + this.currentColumn.disabledSummaries = []; + this.updateCheckboxes(); + this.grid.markForCheck(); + } +} + +new Sample(); diff --git a/samples/grids/grid/grid-disabled-summaries/tsconfig.json b/samples/grids/grid/grid-disabled-summaries/tsconfig.json new file mode 100644 index 0000000000..de23257dd8 --- /dev/null +++ b/samples/grids/grid/grid-disabled-summaries/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/grids/grid/grid-disabled-summaries/tslint.json b/samples/grids/grid/grid-disabled-summaries/tslint.json new file mode 100644 index 0000000000..e139fc6fe2 --- /dev/null +++ b/samples/grids/grid/grid-disabled-summaries/tslint.json @@ -0,0 +1,53 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-var": false, + "no-var-keyword": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "member-ordering": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-console": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off" + } +} \ No newline at end of file diff --git a/samples/grids/grid/grid-disabled-summaries/webpack.config.js b/samples/grids/grid/grid-disabled-summaries/webpack.config.js new file mode 100644 index 0000000000..71384f77af --- /dev/null +++ b/samples/grids/grid/grid-disabled-summaries/webpack.config.js @@ -0,0 +1,104 @@ +const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin"); +const HtmlWebpackPlugin = require("html-webpack-plugin"); +const TsconfigPathsPlugin = require("tsconfig-paths-webpack-plugin"); +const path = require("path"); +const webpack = require("webpack"); + +module.exports = (env) => { + const nodeEnv = process.env.NODE_ENV || "development"; + const isProd = nodeEnv === "production"; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + + const presets = [ + [ + "@babel/preset-env", + { + useBuiltIns: "usage", + corejs: 3, + targets: { + browsers: isLegacy ? ["defaults"] : ["last 2 Chrome versions", "last 2 Safari versions", "last 2 iOS versions", "last 2 Firefox versions", "last 2 Edge versions"] + } + } + ], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [path.resolve(__dirname, "node_modules/@webcomponents/custom-elements"), path.resolve(__dirname, "node_modules/@webcomponents/template"), path.resolve(__dirname, "src")] : path.resolve(__dirname, "src"), + devtool: isProd ? false : "source-map", + output: { + filename: isProd ? "[fullhash].bundle.js" : "[fullhash].bundle.js", + globalObject: "this", + path: path.resolve(__dirname, "dist") + }, + + resolve: { + mainFields: ["esm2015", "module", "main"], + extensions: [".ts", ".js", ".json"], + plugins: [ + new TsconfigPathsPlugin({ + configFile: "./tsconfig.json", + extensions: [".ts", ".js"], + mainFields: ["esm2015", "module", "main"] + }) + ] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ["file-loader"] }, + { test: /\.(csv|tsv)$/, use: ["csv-loader"] }, + { test: /\.xml$/, use: ["xml-loader"] }, + { test: /\.css$/, sideEffects: true, use: ["style-loader", "css-loader"] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: "worker-loader" }, + { + loader: "babel-loader", + options: { + compact: isProd ? true : false, + presets: presets, + plugins: [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, + loader: "babel-loader", + options: { + compact: isProd ? true : false, + presets: presets, + plugins: [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-runtime" + ] + }, + exclude: function (modulePath) { + return /node_modules/.test(modulePath) && !/igniteui-webcomponents/.test(modulePath) && !/lit-html/.test(modulePath); + } + } + ] + }, + + plugins: [ + new webpack.DefinePlugin({ + "process.env.NODE_ENV": JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: "for-cs", + template: "index.html" + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/.prettierrc b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/ReadMe.md b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/ReadMe.md new file mode 100644 index 0000000000..a3b971ba01 --- /dev/null +++ b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Disabled Summaries feature using [Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/grids/grid/hierarchical-grid-disabled-summaries +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/index.html b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/index.html new file mode 100644 index 0000000000..658093996e --- /dev/null +++ b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/index.html @@ -0,0 +1,59 @@ + + + + Sample | Ignite UI | Web Components | Infragistics + + + + + + + + + + + +
+
+
+ +
+ Disable All + Enable All +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + <% if (false) { %> + + <% } %> + + diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/package.json new file mode 100644 index 0000000000..863c386ab1 --- /dev/null +++ b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/package.json @@ -0,0 +1,63 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents": "5.2.1", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.21.0", + "@babel/core": "^7.21.0", + "@babel/plugin-proposal-class-properties": "^7.12.0", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-runtime": "^7.21.0", + "@babel/preset-env": "^7.21.0", + "@babel/preset-typescript": "^7.21.0", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } +} diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/sandbox.config.json b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/sandbox.config.json new file mode 100644 index 0000000000..5c5b54fe21 --- /dev/null +++ b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/sandbox.config.json @@ -0,0 +1,7 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} + \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/SingersData.json b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/SingersData.json new file mode 100644 index 0000000000..f7508f3c9a --- /dev/null +++ b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/SingersData.json @@ -0,0 +1,1389 @@ +[ + { + "ID": 0, + "Artist": "Naomí Yepes", + "Photo": "https://static.infragistics.com/xplatform/images/people/names/naomi.jpg", + "Debut": 2011, + "GrammyNominations": 6, + "GrammyAwards": 0, + "HasGrammyAward": false, + "Tours": [ + { + "Tour": "Faithful Tour", + "StartedOn": "Sep 12", + "Location": "Worldwide", + "Headliner": "NO", + "TouredBy": "Naomí Yepes" + }, + { + "Tour": "City Jam Sessions", + "StartedOn": "Aug 13", + "Location": "North America", + "Headliner": "YES", + "TouredBy": "Naomí Yepes" + }, + { + "Tour": "Christmas NYC 2013", + "StartedOn": "Dec 13", + "Location": "United States", + "Headliner": "NO", + "TouredBy": "Naomí Yepes" + }, + { + "Tour": "Christmas NYC 2014", + "StartedOn": "Dec 14", + "Location": "North America", + "Headliner": "NO", + "TouredBy": "Naomí Yepes" + }, + { + "Tour": "Watermelon Tour", + "StartedOn": "Feb 15", + "Location": "Worldwide", + "Headliner": "YES", + "TouredBy": "Naomí Yepes" + }, + { + "Tour": "Christmas NYC 2016", + "StartedOn": "Dec 16", + "Location": "United States", + "Headliner": "NO", + "TouredBy": "Naomí Yepes" + }, + { + "Tour": "The Dragon Tour", + "StartedOn": "Feb 17", + "Location": "Worldwide", + "Headliner": "NO", + "TouredBy": "Naomí Yepes" + }, + { + "Tour": "Organic Sessions", + "StartedOn": "Aug 18", + "Location": "United States, England", + "Headliner": "YES", + "TouredBy": "Naomí Yepes" + }, + { + "Tour": "Hope World Tour", + "StartedOn": "Mar 19", + "Location": "Worldwide", + "Headliner": "NO", + "TouredBy": "Naomí Yepes" + } + ], + "Albums": [ + { + "Album": "Initiation", + "LaunchDate": "September 3, 2013", + "BillboardReview": 86, + "USBillboard200": 1, + "Artist": "Naomí Yepes" + }, + { + "Album": "Dream Driven", + "LaunchDate": "August 25, 2014", + "BillboardReview": 81, + "USBillboard200": 1, + "Artist": "Naomí Yepes", + "Songs": [ + { + "Number": 1, + "Title": "Intro", + "Released": false, + "Genre": "*", + "Album": "Dream Driven" + }, + { + "Number": 2, + "Title": "Ferocious", + "Released": "28 Apr 2014", + "Genre": "Dance-pop R&B", + "Album": "Dream Driven" + }, + { + "Number": 3, + "Title": "Going crazy", + "Released": "10 Feb 2015", + "Genre": "Dance-pop EDM", + "Album": "Dream Driven" + }, + { + "Number": 4, + "Title": "Future past", + "Released": false, + "Genre": "*", + "Album": "Dream Driven" + }, + { + "Number": 5, + "Title": "Roaming like them", + "Released": "2 Jul 2014", + "Genre": "Electro house Electropop", + "Album": "Dream Driven" + }, + { + "Number": 6, + "Title": "Last Wishes", + "Released": "12 Aug 2014", + "Genre": "R&B", + "Album": "Dream Driven" + }, + { + "Number": 7, + "Title": "Stay where you are", + "Released": false, + "Genre": "*", + "Album": "Dream Driven" + }, + { + "Number": 8, + "Title": "Imaginarium", + "Released": false, + "Genre": "*", + "Album": "Dream Driven" + }, + { + "Number": 9, + "Title": "Tell me", + "Released": "30 Sep 2014", + "Genre": "Synth-pop R&B", + "Album": "Dream Driven" + }, + { + "Number": 10, + "Title": "Shredded into pieces", + "Released": false, + "Genre": "*", + "Album": "Dream Driven" + }, + { + "Number": 11, + "Title": "Capture this moment", + "Released": false, + "Genre": "*", + "Album": "Dream Driven" + }, + { + "Number": 12, + "Title": "Dream Driven", + "Released": false, + "Genre": "*", + "Album": "Dream Driven" + } + ] + }, + { + "Album": "The dragon journey", + "LaunchDate": "May 20, 2016", + "BillboardReview": 60, + "USBillboard200": 2, + "Artist": "Naomí Yepes", + "Songs": [ + + ] + }, + { + "Album": "Organic me", + "LaunchDate": "August 17, 2018", + "BillboardReview": 82, + "USBillboard200": 1, + "Artist": "Naomí Yepes", + "Songs": [ + { + "Number": 1, + "Title": "I Love", + "Released": "11 May 2019", + "Genre": "Crunk reggaeton", + "Album": "Organic me" + }, + { + "Number": 2, + "Title": "Early Morning Compass", + "Released": "15 Jan 2020", + "Genre": "mystical parody-bap ", + "Album": "Organic me" + }, + { + "Number": 3, + "Title": "Key Fields Forever", + "Released": "2 Jan 2020", + "Genre": "Dance-pop EDM", + "Album": "Organic me" + }, + { + "Number": 4, + "Title": "Stand by Your Goblins", + "Released": "20 Nov 2019", + "Genre": "*", + "Album": "Organic me" + }, + { + "Number": 5, + "Title": "Mad to Walk", + "Released": "12 May 2019", + "Genre": "Electro house Electropop", + "Album": "Organic me" + }, + { + "Number": 6, + "Title": "Alice's Waiting", + "Released": "28 Jan 2020", + "Genre": "R&B", + "Album": "Organic me" + }, + { + "Number": 7, + "Title": "We Shall Kiss", + "Released": "30 Oct 2019", + "Genre": "*", + "Album": "Organic me" + }, + { + "Number": 8, + "Title": "Behind Single Ants", + "Released": "2 Oct 2019", + "Genre": "*", + "Album": "Organic me" + }, + { + "Number": 9, + "Title": "Soap Autopsy", + "Released": "8 Aug 2019", + "Genre": "Synth-pop R&B", + "Album": "Organic me" + }, + { + "Number": 10, + "Title": "Have You Met Rich?", + "Released": "1 Jul 2019", + "Genre": "ethno-tunes", + "Album": "Organic me" + }, + { + "Number": 11, + "Title": "Livin' on a Banana", + "Released": "22 Nov 2019", + "Genre": "Crunk reggaeton", + "Album": "Organic me" + } + ] + }, + { + "Album": "Curiosity", + "LaunchDate": "December 7, 2019", + "BillboardReview": 75, + "USBillboard200": 12, + "Artist": "Naomí Yepes", + "Songs": [ + + ] + } + ] + }, + { + "ID": 1, + "Artist": "Babila Ebwélé", + "Photo": "https://static.infragistics.com/xplatform/images/people/names/babila.jpg", + "Debut": 2009, + "GrammyNominations": 0, + "GrammyAwards": 11, + "HasGrammyAward": true, + "Tours": [ + { + "Tour": "The last straw", + "StartedOn": "May 09", + "Location": "Europe, Asia", + "Headliner": "NO", + "TouredBy": "Babila Ebwélé" + }, + { + "Tour": "No foundations", + "StartedOn": "Jun 04", + "Location": "United States, Europe", + "Headliner": "YES", + "TouredBy": "Babila Ebwélé" + }, + { + "Tour": "Crazy eyes", + "StartedOn": "Jun 08", + "Location": "North America", + "Headliner": "NO", + "TouredBy": "Babila Ebwélé" + }, + { + "Tour": "Zero gravity", + "StartedOn": "Apr 19", + "Location": "United States", + "Headliner": "NO", + "TouredBy": "Babila Ebwélé" + }, + { + "Tour": "Battle with myself", + "StartedOn": "Mar 08", + "Location": "North America", + "Headliner": "YES", + "TouredBy": "Babila Ebwélé" + } + ], + "Albums": [ + { + "Album": "Pushing up daisies", + "LaunchDate": "May 31, 2000", + "BillboardReview": 86, + "USBillboard200": 42, + "Artist": "Babila Ebwélé", + "Songs": [ + { + "Number": 1, + "Title": "Wood Shavings Forever", + "Released": "9 Jun 2019", + "Genre": "*", + "Album": "Pushing up daisies" + }, + { + "Number": 2, + "Title": "Early Morning Drive", + "Released": "20 May 2019", + "Genre": "*", + "Album": "Pushing up daisies" + }, + { + "Number": 3, + "Title": "Don't Natter", + "Released": "10 Jun 2019", + "Genre": "adult calypso-industrial", + "Album": "Pushing up daisies" + }, + { + "Number": 4, + "Title": "Stairway to Balloons", + "Released": "18 Jun 2019", + "Genre": "calypso and mariachi", + "Album": "Pushing up daisies" + }, + { + "Number": 5, + "Title": "The Number of your Apple", + "Released": "29 Oct 2019", + "Genre": "*", + "Album": "Pushing up daisies" + }, + { + "Number": 6, + "Title": "Your Delightful Heart", + "Released": "24 Feb 2019", + "Genre": "*", + "Album": "Pushing up daisies" + }, + { + "Number": 7, + "Title": "Nice Weather For Balloons", + "Released": "1 Aug 2019", + "Genre": "rap-hop", + "Album": "Pushing up daisies" + }, + { + "Number": 8, + "Title": "The Girl From Cornwall", + "Released": "4 May 2019", + "Genre": "enigmatic rock-and-roll", + "Album": "Pushing up daisies" + }, + { + "Number": 9, + "Title": "Here Without Jack", + "Released": "24 Oct 2019", + "Genre": "*", + "Album": "Pushing up daisies" + }, + { + "Number": 10, + "Title": "Born Rancid", + "Released": "19 Mar 2019", + "Genre": "*", + "Album": "Pushing up daisies" + } + ] + }, + { + "Album": "Death's dead", + "LaunchDate": "June 8, 2016", + "BillboardReview": 85, + "USBillboard200": 95, + "Artist": "Babila Ebwélé", + "Songs": [ + { + "Number": 1, + "Title": "Men Sound Better With You", + "Released": "20 Oct 2019", + "Genre": "rap-hop", + "Album": "Death's dead" + }, + { + "Number": 2, + "Title": "Ghost in My Rod", + "Released": "5 Oct 2019", + "Genre": "enigmatic rock-and-roll", + "Album": "Death's dead" + }, + { + "Number": 3, + "Title": "Bed of Men", + "Released": "14 Nov 2019", + "Genre": "whimsical comedy-grass ", + "Album": "Death's dead" + }, + { + "Number": 4, + "Title": "Don't Push", + "Released": "2 Jan 2020", + "Genre": "unblack electronic-trip-hop", + "Album": "Death's dead" + }, + { + "Number": 5, + "Title": "Nice Weather For Men", + "Released": "18 Dec 2019", + "Genre": "*", + "Album": "Death's dead" + }, + { + "Number": 6, + "Title": "Rancid Rhapsody", + "Released": "10 Mar 2019", + "Genre": "*", + "Album": "Death's dead" + }, + { + "Number": 7, + "Title": "Push, Push, Push!", + "Released": "21 Feb 2019", + "Genre": "*", + "Album": "Death's dead" + }, + { + "Number": 8, + "Title": "My Name is Sarah", + "Released": "15 Nov 2019", + "Genre": "*", + "Album": "Death's dead" + }, + { + "Number": 9, + "Title": "The Girl From My Hotel", + "Released": "6 Nov 2019", + "Genre": "*", + "Album": "Death's dead" + }, + { + "Number": 10, + "Title": "Free Box", + "Released": "18 Apr 2019", + "Genre": "splitter-funk", + "Album": "Death's dead" + }, + { + "Number": 11, + "Title": "Hotel Cardiff", + "Released": "30 Dec 2019", + "Genre": "guilty pleasure ebm", + "Album": "Death's dead" + } + ] + } + ] + }, + { + "ID": 2, + "Artist": "Ahmad Nazeri", + "Photo": "https://static.infragistics.com/xplatform/images/people/names/ahmad.jpg", + "Debut": 2004, + "GrammyNominations": 3, + "GrammyAwards": 1, + "HasGrammyAward": true, + "Tours": [ + + ], + "Albums": [ + { + "Album": "Emergency", + "LaunchDate": "March 6, 2004", + "BillboardReview": 98, + "USBillboard200": 69, + "Artist": "Ahmad Nazeri", + "Songs": [ + + ] + }, + { + "Album": "Bursting bubbles", + "LaunchDate": "April 17, 2006", + "BillboardReview": 69, + "USBillboard200": 39, + "Artist": "Ahmad Nazeri", + "Songs": [ + + ] + } + ] + }, + { + "ID": 3, + "Artist": "Kimmy McIlmorie", + "Photo": "https://static.infragistics.com/xplatform/images/people/names/kimmy.jpg", + "Debut": 2007, + "GrammyNominations": 21, + "GrammyAwards": 3, + "HasGrammyAward": true, + "Tours": [ + + ], + "Albums": [ + { + "Album": "Here we go again", + "LaunchDate": "November 18, 2017", + "BillboardReview": 68, + "USBillboard200": 1, + "Artist": "Kimmy McIlmorie", + "Songs": [ + + ] + } + ] + }, + { + "ID": 4, + "Artist": "Mar Rueda", + "Photo": "https://static.infragistics.com/xplatform/images/people/names/mar.jpg", + "Debut": 1996, + "GrammyNominations": 14, + "GrammyAwards": 2, + "HasGrammyAward": true, + "Tours": [ + + ], + "Albums": [ + + ] + }, + { + "ID": 5, + "Artist": "Izabella Tabakova", + "Photo": "https://static.infragistics.com/xplatform/images/people/names/izabella.jpg", + "Debut": 2017, + "GrammyNominations": 7, + "GrammyAwards": 11, + "HasGrammyAward": true, + "Tours": [ + { + "Tour": "Final breath", + "StartedOn": "Jun 13", + "Location": "Europe", + "Headliner": "YES", + "TouredBy": "Izabella Tabakova" + }, + { + "Tour": "Once bitten", + "StartedOn": "Dec 18", + "Location": "Australia, United States", + "Headliner": "NO", + "TouredBy": "Izabella Tabakova" + }, + { + "Tour": "Code word", + "StartedOn": "Sep 19", + "Location": "United States, Europe", + "Headliner": "NO", + "TouredBy": "Izabella Tabakova" + }, + { + "Tour": "Final draft", + "StartedOn": "Sep 17", + "Location": "United States, Europe", + "Headliner": "YES", + "TouredBy": "Izabella Tabakova" + } + ], + "Albums": [ + { + "Album": "Once bitten", + "LaunchDate": "July 16, 2007", + "BillboardReview": 79, + "USBillboard200": 53, + "Artist": "Izabella Tabakova", + "Songs": [ + { + "Number": 1, + "Title": "Whole Lotta Super Cats", + "Released": "21 May 2019", + "Genre": "*", + "Album": "Once bitten" + }, + { + "Number": 2, + "Title": "Enter Becky", + "Released": "16 Jan 2020", + "Genre": "*", + "Album": "Once bitten" + }, + { + "Number": 3, + "Title": "Your Cheatin' Flamingo", + "Released": "14 Jan 2020", + "Genre": "*", + "Album": "Once bitten" + }, + { + "Number": 4, + "Title": "Mad to Kiss", + "Released": "6 Nov 2019", + "Genre": "Synth-pop R&B", + "Album": "Once bitten" + }, + { + "Number": 5, + "Title": "Hotel Prague", + "Released": "20 Oct 2019", + "Genre": "ethno-tunes", + "Album": "Once bitten" + }, + { + "Number": 6, + "Title": "Jail on My Mind", + "Released": "31 May 2019", + "Genre": "Crunk reggaeton", + "Album": "Once bitten" + }, + { + "Number": 7, + "Title": "Amazing Blues", + "Released": "29 May 2019", + "Genre": "mystical parody-bap ", + "Album": "Once bitten" + }, + { + "Number": 8, + "Title": "Goody Two Iron Filings", + "Released": "4 Jul 2019", + "Genre": "Electro house Electropop", + "Album": "Once bitten" + }, + { + "Number": 9, + "Title": "I Love in Your Arms", + "Released": "7 Jun 2019", + "Genre": "R&B", + "Album": "Once bitten" + }, + { + "Number": 10, + "Title": "Truly Madly Amazing", + "Released": "12 Sep 2019", + "Genre": "ethno-tunes", + "Album": "Once bitten" + } + ] + }, + { + "Album": "Your graciousness", + "LaunchDate": "November 17, 2004", + "BillboardReview": 69, + "USBillboard200": 30, + "Artist": "Izabella Tabakova", + "Songs": [ + { + "Number": 1, + "Title": "We Shall Tickle", + "Released": "31 Aug 2019", + "Genre": "old emo-garage ", + "Album": "Your graciousness" + }, + { + "Number": 2, + "Title": "Snail Boogie", + "Released": "14 Jun 2019", + "Genre": "*", + "Album": "Your graciousness" + }, + { + "Number": 3, + "Title": "Amazing Liz", + "Released": "15 Oct 2019", + "Genre": "*", + "Album": "Your graciousness" + }, + { + "Number": 4, + "Title": "When Sexy Aardvarks Cry", + "Released": "1 Oct 2019", + "Genre": "whimsical comedy-grass ", + "Album": "Your graciousness" + }, + { + "Number": 5, + "Title": "Stand By Dave", + "Released": "18 Aug 2019", + "Genre": "unblack electronic-trip-hop", + "Album": "Your graciousness" + }, + { + "Number": 6, + "Title": "The Golf Course is Your Land", + "Released": "2 Apr 2019", + "Genre": "*", + "Album": "Your graciousness" + }, + { + "Number": 7, + "Title": "Where Have All the Men Gone?", + "Released": "29 Apr 2019", + "Genre": "*", + "Album": "Your graciousness" + }, + { + "Number": 8, + "Title": "Rhythm of the Leg", + "Released": "5 Aug 2019", + "Genre": "ethno-tunes", + "Album": "Your graciousness" + }, + { + "Number": 9, + "Title": "Baby, I Need Your Hats", + "Released": "5 Dec 2019", + "Genre": "neuro-tunes", + "Album": "Your graciousness" + }, + { + "Number": 10, + "Title": "Stand by Your Cat", + "Released": "25 Jul 2019", + "Genre": "*", + "Album": "Your graciousness" + } + ] + }, + { + "Album": "Dark matters", + "LaunchDate": "November 3, 2002", + "BillboardReview": 79, + "USBillboard200": 85, + "Artist": "Izabella Tabakova", + "Songs": [ + + ] + } + ] + }, + { + "ID": 6, + "Artist": "Nguyễn Diệp Chi", + "Photo": "https://static.infragistics.com/xplatform/images/people/names/nguyen.jpg", + "Debut": 1992, + "GrammyNominations": 4, + "GrammyAwards": 2, + "HasGrammyAward": true, + "Tours": [ + + ], + "Albums": [ + { + "Album": "Library of liberty", + "LaunchDate": "December 22, 2003", + "BillboardReview": 93, + "USBillboard200": 5, + "Artist": "Nguyễn Diệp Chi", + "Songs": [ + + ] + } + ] + }, + { + "ID": 7, + "Artist": "Eva Lee", + "Photo": "https://static.infragistics.com/xplatform/images/people/names/eva.jpg", + "Debut": 2008, + "GrammyNominations": 2, + "GrammyAwards": 0, + "HasGrammyAward": false, + "Tours": [ + + ], + "Albums": [ + { + "Album": "Just a tease", + "LaunchDate": "May 3, 2001", + "BillboardReview": 91, + "USBillboard200": 29, + "Artist": "Eva Lee", + "Songs": [ + + ] + } + ] + }, + { + "ID": 8, + "Artist": "Siri Jakobsson", + "Photo": "https://static.infragistics.com/xplatform/images/people/names/siri.jpg", + "Debut": 1990, + "GrammyNominations": 2, + "GrammyAwards": 8, + "HasGrammyAward": true, + "Tours": [ + { + "Tour": "Basket case", + "StartedOn": "Jan 07", + "Location": "Europe, Asia", + "Headliner": "NO", + "TouredBy": "Siri Jakobsson" + }, + { + "Tour": "The bigger fish", + "StartedOn": "Dec 07", + "Location": "United States, Europe", + "Headliner": "YES", + "TouredBy": "Siri Jakobsson" + }, + { + "Tour": "Missed the boat", + "StartedOn": "Jun 09", + "Location": "Europe, Asia", + "Headliner": "NO", + "TouredBy": "Siri Jakobsson" + }, + { + "Tour": "Equivalent exchange", + "StartedOn": "Feb 06", + "Location": "United States, Europe", + "Headliner": "YES", + "TouredBy": "Siri Jakobsson" + }, + { + "Tour": "Damage control", + "StartedOn": "Oct 11", + "Location": "Australia, United States", + "Headliner": "NO", + "TouredBy": "Siri Jakobsson" + } + ], + "Albums": [ + { + "Album": "Under the bus", + "LaunchDate": "May 14, 2000", + "BillboardReview": 67, + "USBillboard200": 67, + "Artist": "Siri Jakobsson", + "Songs": [ + { + "Number": 1, + "Title": "Jack Broke My Heart At Tesco's", + "Released": "19 Jan 2020", + "Genre": "*", + "Album": "Under the bus" + }, + { + "Number": 2, + "Title": "Cat Deep, Hats High", + "Released": "5 Dec 2019", + "Genre": "*", + "Album": "Under the bus" + }, + { + "Number": 3, + "Title": "In Snail We Trust", + "Released": "31 May 2019", + "Genre": "hardcore opera", + "Album": "Under the bus" + }, + { + "Number": 4, + "Title": "Liz's Waiting", + "Released": "22 Jul 2019", + "Genre": "emotional C-jam ", + "Album": "Under the bus" + }, + { + "Number": 5, + "Title": "Lifeless Blues", + "Released": "14 Jun 2019", + "Genre": "*", + "Album": "Under the bus" + }, + { + "Number": 6, + "Title": "I Spin", + "Released": "26 Mar 2019", + "Genre": "*", + "Album": "Under the bus" + }, + { + "Number": 7, + "Title": "Ring of Rock", + "Released": "12 Dec 2019", + "Genre": "*", + "Album": "Under the bus" + }, + { + "Number": 8, + "Title": "Livin' on a Rock", + "Released": "17 Apr 2019", + "Genre": "*", + "Album": "Under the bus" + }, + { + "Number": 9, + "Title": "Your Lifeless Heart", + "Released": "15 Sep 2019", + "Genre": "adult calypso-industrial", + "Album": "Under the bus" + }, + { + "Number": 10, + "Title": "The High Street on My Mind", + "Released": "11 Nov 2019", + "Genre": "calypso and mariachi", + "Album": "Under the bus" + }, + { + "Number": 11, + "Title": "Behind Ugly Curtains", + "Released": "8 May 2019", + "Genre": "*", + "Album": "Under the bus" + }, + { + "Number": 12, + "Title": "Where Have All the Curtains Gone?", + "Released": "28 Jun 2019", + "Genre": "*", + "Album": "Under the bus" + }, + { + "Number": 13, + "Title": "Ghost in My Apple", + "Released": "14 Dec 2019", + "Genre": "*", + "Album": "Under the bus" + }, + { + "Number": 14, + "Title": "I Chatter", + "Released": "30 Nov 2019", + "Genre": "*", + "Album": "Under the bus" + } + ] + } + ] + }, + { + "ID": 9, + "Artist": "Pablo Cambeiro", + "Photo": "https://static.infragistics.com/xplatform/images/people/names/pablo.jpg", + "Debut": 2011, + "GrammyNominations": 5, + "GrammyAwards": 0, + "HasGrammyAward": false, + "Tours": [ + { + "Tour": "Beads", + "StartedOn": "May 11", + "Location": "Worldwide", + "Headliner": "NO", + "TouredBy": "Pablo Cambeiro" + }, + { + "Tour": "Concept art", + "StartedOn": "Dec 18", + "Location": "United States", + "Headliner": "YES", + "TouredBy": "Pablo Cambeiro" + }, + { + "Tour": "Glass shoe", + "StartedOn": "Jan 20", + "Location": "Worldwide", + "Headliner": "YES", + "TouredBy": "Pablo Cambeiro" + }, + { + "Tour": "Pushing buttons", + "StartedOn": "Feb 15", + "Location": "Europe, Asia", + "Headliner": "NO", + "TouredBy": "Pablo Cambeiro" + }, + { + "Tour": "Dark matters", + "StartedOn": "Jan 04", + "Location": "Australia, United States", + "Headliner": "YES", + "TouredBy": "Pablo Cambeiro" + }, + { + "Tour": "Greener grass", + "StartedOn": "Sep 09", + "Location": "United States, Europe", + "Headliner": "NO", + "TouredBy": "Pablo Cambeiro" + }, + { + "Tour": "Apparatus", + "StartedOn": "Nov 16", + "Location": "Europe", + "Headliner": "NO", + "TouredBy": "Pablo Cambeiro" + } + ], + "Albums": [ + { + "Album": "Fluke", + "LaunchDate": "August 4, 2017", + "BillboardReview": 93, + "USBillboard200": 98, + "Artist": "Pablo Cambeiro", + "Songs": [ + + ] + }, + { + "Album": "Crowd control", + "LaunchDate": "August 26, 2003", + "BillboardReview": 68, + "USBillboard200": 84, + "Artist": "Pablo Cambeiro", + "Songs": [ + { + "Number": 1, + "Title": "My Bed on My Mind", + "Released": "25 Mar 2019", + "Genre": "ethno-tunes", + "Album": "Crowd control" + }, + { + "Number": 2, + "Title": "Bright Blues", + "Released": "28 Sep 2019", + "Genre": "neuro-tunes", + "Album": "Crowd control" + }, + { + "Number": 3, + "Title": "Sail, Sail, Sail!", + "Released": "5 Mar 2019", + "Genre": "*", + "Album": "Crowd control" + }, + { + "Number": 4, + "Title": "Hotel My Bed", + "Released": "22 Mar 2019", + "Genre": "*", + "Album": "Crowd control" + }, + { + "Number": 5, + "Title": "Gonna Make You Mash", + "Released": "18 May 2019", + "Genre": "*", + "Album": "Crowd control" + }, + { + "Number": 6, + "Title": "Straight Outta America", + "Released": "16 Jan 2020", + "Genre": "hardcore opera", + "Album": "Crowd control" + }, + { + "Number": 7, + "Title": "I Drive", + "Released": "23 Feb 2019", + "Genre": "emotional C-jam ", + "Album": "Crowd control" + }, + { + "Number": 8, + "Title": "Like a Teddy", + "Released": "31 Aug 2019", + "Genre": "*", + "Album": "Crowd control" + }, + { + "Number": 9, + "Title": "Teddy Boogie", + "Released": "30 Nov 2019", + "Genre": "*", + "Album": "Crowd control" + } + ] + } + ] + }, + { + "ID": 10, + "Artist": "Athar Malakooti", + "Photo": "https://static.infragistics.com/xplatform/images/people/names/athar.jpg", + "Debut": 2017, + "GrammyNominations": 0, + "GrammyAwards": 0, + "HasGrammyAward": false, + "Tours": [ + + ], + "Albums": [ + { + "Album": "Pushing up daisies", + "LaunchDate": "February 24, 2016", + "BillboardReview": 74, + "USBillboard200": 77, + "Artist": "Athar Malakooti", + "Songs": [ + + ] + } + ] + }, + { + "ID": 11, + "Artist": "Marti Valencia", + "Photo": "https://static.infragistics.com/xplatform/images/people/names/marti.jpg", + "Debut": 2004, + "GrammyNominations": 1, + "GrammyAwards": 1, + "HasGrammyAward": true, + "Tours": [ + { + "Tour": "Cat eat cat world", + "StartedOn": "Sep 00", + "Location": "Worldwide", + "Headliner": "YES", + "TouredBy": "Marti Valencia" + }, + { + "Tour": "Final straw", + "StartedOn": "Sep 06", + "Location": "United States, Europe", + "Headliner": "NO", + "TouredBy": "Marti Valencia" + } + ], + "Albums": [ + { + "Album": "Nemesis", + "LaunchDate": "June 30, 2004", + "BillboardReview": 94, + "USBillboard200": 9, + "Artist": "Marti Valencia", + "Songs": [ + + ] + }, + { + "Album": "First chance", + "LaunchDate": "January 7, 2019", + "BillboardReview": 96, + "USBillboard200": 19, + "Artist": "Marti Valencia", + "Songs": [ + { + "Number": 1, + "Title": "My Name is Jason", + "Released": "12 Jul 2019", + "Genre": "*", + "Album": "First chance" + }, + { + "Number": 2, + "Title": "Amazing Andy", + "Released": "5 Mar 2019", + "Genre": "*", + "Album": "First chance" + }, + { + "Number": 3, + "Title": "The Number of your Knight", + "Released": "4 Dec 2019", + "Genre": "*", + "Album": "First chance" + }, + { + "Number": 4, + "Title": "I Sail", + "Released": "3 Mar 2019", + "Genre": "*", + "Album": "First chance" + }, + { + "Number": 5, + "Title": "Goody Two Hands", + "Released": "11 Oct 2019", + "Genre": "Electro house Electropop", + "Album": "First chance" + }, + { + "Number": 6, + "Title": "Careful With That Knife", + "Released": "18 Dec 2019", + "Genre": "R&B", + "Album": "First chance" + }, + { + "Number": 7, + "Title": "Four Single Ants", + "Released": "18 Jan 2020", + "Genre": "*", + "Album": "First chance" + }, + { + "Number": 8, + "Title": "Kiss Forever", + "Released": "10 Aug 2019", + "Genre": "*", + "Album": "First chance" + }, + { + "Number": 9, + "Title": "Rich's Waiting", + "Released": "15 Mar 2019", + "Genre": "Synth-pop R&B", + "Album": "First chance" + }, + { + "Number": 10, + "Title": "Japan is Your Land", + "Released": "7 Mar 2019", + "Genre": "ethno-tunes", + "Album": "First chance" + }, + { + "Number": 11, + "Title": "Pencils in My Banana", + "Released": "21 Jun 2019", + "Genre": "Crunk reggaeton", + "Album": "First chance" + }, + { + "Number": 12, + "Title": "I Sail in Your Arms", + "Released": "30 Apr 2019", + "Genre": "Synth-pop R&B", + "Album": "First chance" + } + ] + }, + { + "Album": "God's advocate", + "LaunchDate": "April 29, 2007", + "BillboardReview": 66, + "USBillboard200": 37, + "Artist": "Marti Valencia", + "Songs": [ + + ] + } + ] + }, + { + "ID": 12, + "Artist": "Alicia Stanger", + "Photo": "https://static.infragistics.com/xplatform/images/people/names/alicia.jpg", + "Debut": 2010, + "GrammyNominations": 1, + "GrammyAwards": 0, + "HasGrammyAward": false, + "Tours": [ + + ], + "Albums": [ + { + "Album": "Forever alone", + "LaunchDate": "November 3, 2005", + "BillboardReview": 82, + "USBillboard200": 7, + "Artist": "Alicia Stanger", + "Songs": [ + + ] + } + ] + }, + { + "ID": 13, + "Artist": "Peter Taylor", + "Photo": "https://static.infragistics.com/xplatform/images/people/names/peter.jpg", + "Debut": 2005, + "GrammyNominations": 0, + "GrammyAwards": 2, + "HasGrammyAward": true, + "Tours": [ + { + "Tour": "Love", + "StartedOn": "Jun 04", + "Location": "Europe, Asia", + "Headliner": "YES", + "TouredBy": "Peter Taylor" + }, + { + "Tour": "Fault of treasures", + "StartedOn": "Oct 13", + "Location": "North America", + "Headliner": "NO", + "TouredBy": "Peter Taylor" + }, + { + "Tour": "For eternity", + "StartedOn": "Mar 05", + "Location": "United States", + "Headliner": "YES", + "TouredBy": "Peter Taylor" + }, + { + "Tour": "Time flies", + "StartedOn": "Jun 03", + "Location": "North America", + "Headliner": "NO", + "TouredBy": "Peter Taylor" + }, + { + "Tour": "Highest difficulty", + "StartedOn": "Nov 01", + "Location": "Worldwide", + "Headliner": "YES", + "TouredBy": "Peter Taylor" + }, + { + "Tour": "Sleeping dogs", + "StartedOn": "May 04", + "Location": "United States, Europe", + "Headliner": "NO", + "TouredBy": "Peter Taylor" + } + ], + "Albums": [ + { + "Album": "Decisions decisions", + "LaunchDate": "April 10, 2008", + "BillboardReview": 85, + "USBillboard200": 35, + "Artist": "Peter Taylor", + "Songs": [ + + ] + }, + { + "Album": "Climate changed", + "LaunchDate": "June 20, 2015", + "BillboardReview": 66, + "USBillboard200": 89, + "Artist": "Peter Taylor", + "Songs": [ + + ] + } + ] + } +] \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/index.css b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/index.css new file mode 100644 index 0000000000..03040d6bba --- /dev/null +++ b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/index.css @@ -0,0 +1,44 @@ +.grid-wrapper { + margin: 0 auto; + padding: 16px; + height: 87%; +} + +.grid-wrapper .summaries { + margin-bottom: 1rem; + display: flex; + align-items: center; + flex-wrap: wrap; +} + +.grid-wrapper .summaries-title { + margin: 0 0 1rem 0; + flex-basis: 100%; + font-weight: bold; +} + +.grid-wrapper .summary-button { + margin-right: 1rem; +} + +igc-dialog { + border: 1px solid #e0e0e0; + border-radius: 8px; +} + +igc-dialog::part(title) { + color: #1E6DFE; +} + +.summaries-dialog-items { + display: flex; + flex-direction: column; + align-items: flex-start; +} + +.summaries-dialog-items .summaries-dialog-item { + display: flex; + align-items: center; + padding: 0 1rem; +} + diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/index.ts b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/index.ts new file mode 100644 index 0000000000..0aa906c1fb --- /dev/null +++ b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/index.ts @@ -0,0 +1,241 @@ +import "igniteui-webcomponents-grids/grids/combined"; +import { defineComponents, IgcButtonComponent, IgcDialogComponent, IgcCheckboxComponent } from "igniteui-webcomponents"; +import { ComponentRenderer, WebGridDescriptionModule } from "igniteui-webcomponents-core"; +import { IgcHierarchicalGridComponent, IgcColumnComponent, IgcSummaryOperand, IgcSummaryResult, IgcNumberSummaryOperand } from "igniteui-webcomponents-grids/grids"; +import SingersData from "./SingersData.json"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; + +defineComponents(IgcButtonComponent, IgcDialogComponent, IgcCheckboxComponent); + +class GrammySummary extends IgcSummaryOperand { + constructor() { + super(); + } + + operate(data?: any[], allData: any[] = [], fieldName: string = ""): IgcSummaryResult[] { + const result: IgcSummaryResult[] = []; + + result.push({ + key: "count", + label: "Count", + summaryResult: allData.filter((rec) => rec["Artist"] !== undefined && rec["Artist"] !== null && rec["Artist"] !== "").length + }); + + result.push({ + key: "nominatedSingers", + label: "Nominated Singers", + summaryResult: allData.filter((rec) => rec["GrammyNominations"] > 0).length + }); + + result.push({ + key: "singersWithAwards", + label: "Singers with Awards", + summaryResult: allData.filter((rec) => rec["GrammyAwards"] > 0).length + }); + + result.push({ + key: "nominations", + label: "Total Nominations", + summaryResult: IgcNumberSummaryOperand.sum(allData.map((r) => r["GrammyNominations"] || 0)) + }); + + result.push({ + key: "awards", + label: "Total Awards", + summaryResult: IgcNumberSummaryOperand.sum(allData.map((r) => r["GrammyAwards"] || 0)) + }); + + return result; + } +} + +export class Sample { + private hierarchicalGrid: IgcHierarchicalGridComponent; + private dialog: IgcDialogComponent; + private _bind: () => void; + private currentColumn: IgcColumnComponent | null = null; + private summariesContainer: HTMLDivElement | null = null; + private disableAllBtn!: HTMLButtonElement; + private enableAllBtn!: HTMLButtonElement; + + constructor() { + this.hierarchicalGrid = document.getElementById("hierarchicalGrid") as IgcHierarchicalGridComponent; + this.dialog = document.getElementById("dialog") as IgcDialogComponent; + this.dialog.closeOnOutsideClick = true; + this.dialog.keepOpenOnEscape = false; + + this.summariesContainer = document.querySelector(".summaries"); + + if (this.summariesContainer) { + const title = document.createElement("p"); + title.classList.add("summaries-title"); + title.textContent = "Disable Summaries for Column:"; + this.summariesContainer.appendChild(title); + } + + this.disableAllBtn = document.getElementById("disableAllBtn") as HTMLButtonElement; + this.enableAllBtn = document.getElementById("enableAllBtn") as HTMLButtonElement; + + this.webGridCustomSummary = this.webGridCustomSummary.bind(this); + this.openDialog = this.openDialog.bind(this); + this.toggleSummary = this.toggleSummary.bind(this); + this.disableAllSummaries = this.disableAllSummaries.bind(this); + this.enableAllSummaries = this.enableAllSummaries.bind(this); + this.handleColumnInit = this.handleColumnInit.bind(this); + this.updateCheckboxes = this.updateCheckboxes.bind(this); + + this._bind = () => { + this.hierarchicalGrid.data = this.singersData; + this.hierarchicalGrid.addEventListener("columnInit", this.handleColumnInit); + document.getElementById("disableAllBtn")!.addEventListener("click", this.disableAllSummaries); + document.getElementById("enableAllBtn")!.addEventListener("click", this.enableAllSummaries); + }; + this._bind(); + } + + private handleColumnInit(event: any) { + this.webGridCustomSummary(event); + const column: IgcColumnComponent = event.detail; + + if (!this.summariesContainer) return; + + const button = document.createElement("igc-button"); + button.classList.add("summary-button"); + button.textContent = column.header ? column.header.toString() : column.field; + button.setAttribute("variant", "contained"); + button.addEventListener("click", () => this.openDialog(column)); + this.summariesContainer.appendChild(button); + } + + private _singersData: any[] = SingersData; + public get singersData(): any[] { + return this._singersData; + } + + private _componentRenderer: ComponentRenderer | undefined; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + WebGridDescriptionModule.register(this._componentRenderer.context); + } + return this._componentRenderer; + } + + public webGridCustomSummary(args: any): void { + if (args.detail.field === "Photo") { + args.detail.summaries = GrammySummary; + } + } + + private updateCheckboxes() { + if (!this.currentColumn) return; + + const dialogItemsContainer = this.dialog.querySelector(".summaries-dialog-items")!; + dialogItemsContainer.innerHTML = ""; + + let allSummaries: IgcSummaryResult[] = []; + + const getSummaryResults = (operand: any): IgcSummaryResult[] => { + if (typeof operand === "function") { + operand = new operand(); + } + if (operand instanceof IgcSummaryOperand) { + return operand.operate([], this.hierarchicalGrid.data, this.currentColumn!.field); + } + return []; + }; + + if (!this.currentColumn.summaries) { + const defaultOperand = IgcSummaryOperand; + allSummaries = getSummaryResults(defaultOperand); + } else { + allSummaries = getSummaryResults(this.currentColumn.summaries); + } + + let allDisabled = true; + let allEnabled = true; + + allSummaries.forEach((summary) => { + const checkbox = document.createElement("igc-checkbox") as IgcCheckboxComponent; + checkbox.classList.add("summaries-dialog-item"); + checkbox.textContent = summary.label; + const isDisabled = this.currentColumn!.disabledSummaries?.includes(summary.key); + checkbox.checked = isDisabled; + + if (isDisabled) { + allEnabled = false; + } else { + allDisabled = false; + } + + checkbox.addEventListener("click", () => this.toggleSummary(summary.key)); + dialogItemsContainer.appendChild(checkbox); + }); + + this.disableAllBtn.disabled = allDisabled; + this.enableAllBtn.disabled = allEnabled; + } + + public openDialog(column: IgcColumnComponent) { + this.currentColumn = column; + this.dialog.title = `Disable Summaries for ${column.header || column.field}`; + this.updateCheckboxes(); + this.dialog.show(); + } + + public toggleSummary(summaryKey: string) { + if (!this.currentColumn) return; + + if (!this.currentColumn.disabledSummaries) { + this.currentColumn.disabledSummaries = []; + } + + if (this.currentColumn.disabledSummaries.includes(summaryKey)) { + this.currentColumn.disabledSummaries = this.currentColumn.disabledSummaries.filter((key: string) => key !== summaryKey); + } else { + this.currentColumn.disabledSummaries = [...this.currentColumn.disabledSummaries, summaryKey]; + } + + this.updateCheckboxes(); + } + + public disableAllSummaries() { + if (!this.currentColumn) return; + + let allSummaryKeys: string[] = []; + + const getSummaryKeys = (operand: any): string[] => { + if (typeof operand === "function") { + operand = new operand(); + } + if (operand instanceof IgcSummaryOperand) { + if (this.hierarchicalGrid && this.currentColumn) { + return operand.operate([], this.hierarchicalGrid.data, this.currentColumn.field).map((s: { key: any; }) => s.key); + } + return []; + } + return []; + }; + + if (!this.currentColumn.summaries) { + const defaultOperand = IgcSummaryOperand; + allSummaryKeys = getSummaryKeys(defaultOperand); + } else { + allSummaryKeys = getSummaryKeys(this.currentColumn.summaries); + } + + this.currentColumn.disabledSummaries = allSummaryKeys; + this.updateCheckboxes(); + this.hierarchicalGrid.markForCheck(); + } + + public enableAllSummaries() { + if (!this.currentColumn) return; + this.currentColumn.disabledSummaries = []; + this.updateCheckboxes(); + this.hierarchicalGrid.markForCheck(); + } +} + +new Sample(); diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/tsconfig.json b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/tsconfig.json new file mode 100644 index 0000000000..de23257dd8 --- /dev/null +++ b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/tslint.json b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/tslint.json new file mode 100644 index 0000000000..e139fc6fe2 --- /dev/null +++ b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/tslint.json @@ -0,0 +1,53 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-var": false, + "no-var-keyword": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "member-ordering": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-console": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off" + } +} \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/webpack.config.js b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/webpack.config.js new file mode 100644 index 0000000000..71384f77af --- /dev/null +++ b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/webpack.config.js @@ -0,0 +1,104 @@ +const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin"); +const HtmlWebpackPlugin = require("html-webpack-plugin"); +const TsconfigPathsPlugin = require("tsconfig-paths-webpack-plugin"); +const path = require("path"); +const webpack = require("webpack"); + +module.exports = (env) => { + const nodeEnv = process.env.NODE_ENV || "development"; + const isProd = nodeEnv === "production"; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + + const presets = [ + [ + "@babel/preset-env", + { + useBuiltIns: "usage", + corejs: 3, + targets: { + browsers: isLegacy ? ["defaults"] : ["last 2 Chrome versions", "last 2 Safari versions", "last 2 iOS versions", "last 2 Firefox versions", "last 2 Edge versions"] + } + } + ], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [path.resolve(__dirname, "node_modules/@webcomponents/custom-elements"), path.resolve(__dirname, "node_modules/@webcomponents/template"), path.resolve(__dirname, "src")] : path.resolve(__dirname, "src"), + devtool: isProd ? false : "source-map", + output: { + filename: isProd ? "[fullhash].bundle.js" : "[fullhash].bundle.js", + globalObject: "this", + path: path.resolve(__dirname, "dist") + }, + + resolve: { + mainFields: ["esm2015", "module", "main"], + extensions: [".ts", ".js", ".json"], + plugins: [ + new TsconfigPathsPlugin({ + configFile: "./tsconfig.json", + extensions: [".ts", ".js"], + mainFields: ["esm2015", "module", "main"] + }) + ] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ["file-loader"] }, + { test: /\.(csv|tsv)$/, use: ["csv-loader"] }, + { test: /\.xml$/, use: ["xml-loader"] }, + { test: /\.css$/, sideEffects: true, use: ["style-loader", "css-loader"] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: "worker-loader" }, + { + loader: "babel-loader", + options: { + compact: isProd ? true : false, + presets: presets, + plugins: [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, + loader: "babel-loader", + options: { + compact: isProd ? true : false, + presets: presets, + plugins: [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-runtime" + ] + }, + exclude: function (modulePath) { + return /node_modules/.test(modulePath) && !/igniteui-webcomponents/.test(modulePath) && !/lit-html/.test(modulePath); + } + } + ] + }, + + plugins: [ + new webpack.DefinePlugin({ + "process.env.NODE_ENV": JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: "for-cs", + template: "index.html" + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/.prettierrc b/samples/grids/tree-grid/tree-grid-disabled-summaries/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/grids/tree-grid/tree-grid-disabled-summaries/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/ReadMe.md b/samples/grids/tree-grid/tree-grid-disabled-summaries/ReadMe.md new file mode 100644 index 0000000000..79ba94a54c --- /dev/null +++ b/samples/grids/tree-grid/tree-grid-disabled-summaries/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Disabled Summaries feature using [Grid](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/grids/grid/tree-grid-disabled-summaries +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/index.html b/samples/grids/tree-grid/tree-grid-disabled-summaries/index.html new file mode 100644 index 0000000000..5b72a655c5 --- /dev/null +++ b/samples/grids/tree-grid/tree-grid-disabled-summaries/index.html @@ -0,0 +1,43 @@ + + + + Sample | Ignite UI | Web Components | Infragistics + + + + + + + + + + + +
+
+
+ +
+ Disable All + Enable All +
+
+ + + + + + + + + + +
+
+ + + <% if (false) { %> + + <% } %> + + diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/package.json b/samples/grids/tree-grid/tree-grid-disabled-summaries/package.json new file mode 100644 index 0000000000..863c386ab1 --- /dev/null +++ b/samples/grids/tree-grid/tree-grid-disabled-summaries/package.json @@ -0,0 +1,63 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents": "5.2.1", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.21.0", + "@babel/core": "^7.21.0", + "@babel/plugin-proposal-class-properties": "^7.12.0", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-runtime": "^7.21.0", + "@babel/preset-env": "^7.21.0", + "@babel/preset-typescript": "^7.21.0", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } +} diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/sandbox.config.json b/samples/grids/tree-grid/tree-grid-disabled-summaries/sandbox.config.json new file mode 100644 index 0000000000..5c5b54fe21 --- /dev/null +++ b/samples/grids/tree-grid/tree-grid-disabled-summaries/sandbox.config.json @@ -0,0 +1,7 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} + \ No newline at end of file diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/src/OrdersTreeData.ts b/samples/grids/tree-grid/tree-grid-disabled-summaries/src/OrdersTreeData.ts new file mode 100644 index 0000000000..c5c69cc874 --- /dev/null +++ b/samples/grids/tree-grid/tree-grid-disabled-summaries/src/OrdersTreeData.ts @@ -0,0 +1,291 @@ +export class OrdersTreeDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public ID: number; + public ParentID: number; + public Name: string; + public Category: string; + public OrderDate: string; + public Units: number; + public UnitPrice: number; + public Price: number; + public Delivered: boolean; + +} +export class OrdersTreeData extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new OrdersTreeDataItem( + { + ID: 1, + ParentID: -1, + Name: `Order 1`, + Category: ``, + OrderDate: `2010-02-17`, + Units: 1844, + UnitPrice: 3.73, + Price: 6884.38, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 101, + ParentID: 1, + Name: `Chocolate Chip Cookies`, + Category: `Cookies`, + OrderDate: `2010-02-17`, + Units: 834, + UnitPrice: 3.59, + Price: 2994.06, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 102, + ParentID: 1, + Name: `Red Apples`, + Category: `Fruit`, + OrderDate: `2010-02-17`, + Units: 371, + UnitPrice: 3.66, + Price: 1357.86, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 103, + ParentID: 1, + Name: `Butter`, + Category: `Diary`, + OrderDate: `2010-02-17`, + Units: 260, + UnitPrice: 3.45, + Price: 897, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 104, + ParentID: 1, + Name: `Potato Chips`, + Category: `Snack`, + OrderDate: `2010-02-17`, + Units: 118, + UnitPrice: 1.96, + Price: 231.28, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 105, + ParentID: 1, + Name: `Orange Juice`, + Category: `Beverages`, + OrderDate: `2010-02-17`, + Units: 261, + UnitPrice: 5.38, + Price: 1404.18, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 2, + ParentID: -1, + Name: `Order 2`, + Category: ``, + OrderDate: `2022-05-27`, + Units: 1831, + UnitPrice: 8.23, + Price: 15062.77, + Delivered: false + }), + new OrdersTreeDataItem( + { + ID: 201, + ParentID: 2, + Name: `Frozen Shrimps`, + Category: `Seafood`, + OrderDate: `2022-05-27`, + Units: 120, + UnitPrice: 20.45, + Price: 2454, + Delivered: false + }), + new OrdersTreeDataItem( + { + ID: 202, + ParentID: 2, + Name: `Ice Tea`, + Category: `Beverages`, + OrderDate: `2022-05-27`, + Units: 840, + UnitPrice: 7, + Price: 5880, + Delivered: false + }), + new OrdersTreeDataItem( + { + ID: 203, + ParentID: 2, + Name: `Fresh Cheese`, + Category: `Diary`, + OrderDate: `2022-05-27`, + Units: 267, + UnitPrice: 16.55, + Price: 4418.85, + Delivered: false + }), + new OrdersTreeDataItem( + { + ID: 204, + ParentID: 2, + Name: `Carrots`, + Category: `Vegetables`, + OrderDate: `2022-05-27`, + Units: 360, + UnitPrice: 2.77, + Price: 997.2, + Delivered: false + }), + new OrdersTreeDataItem( + { + ID: 205, + ParentID: 2, + Name: `Apple Juice`, + Category: `Beverages`, + OrderDate: `2022-05-27`, + Units: 244, + UnitPrice: 5.38, + Price: 1312.72, + Delivered: false + }), + new OrdersTreeDataItem( + { + ID: 3, + ParentID: -1, + Name: `Order 3`, + Category: ``, + OrderDate: `2022-08-04`, + Units: 1972, + UnitPrice: 3.47, + Price: 6849.18, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 301, + ParentID: 3, + Name: `Skimmed Milk 1L`, + Category: `Diary`, + OrderDate: `2022-08-04`, + Units: 1028, + UnitPrice: 3.56, + Price: 3659.68, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 302, + ParentID: 3, + Name: `Bananas 5 Pack`, + Category: `Fruit`, + OrderDate: `2022-08-04`, + Units: 370, + UnitPrice: 6.36, + Price: 2353.2, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 303, + ParentID: 3, + Name: `Cauliflower`, + Category: `Vegetables`, + OrderDate: `2022-08-04`, + Units: 283, + UnitPrice: 0.95, + Price: 268.85, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 304, + ParentID: 3, + Name: `White Chocolate Cookies`, + Category: `Cookies`, + OrderDate: `2022-08-04`, + Units: 291, + UnitPrice: 1.95, + Price: 567.45, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 4, + ParentID: -1, + Name: `Order 4`, + Category: ``, + OrderDate: `2023-01-04`, + Units: 1065, + UnitPrice: 5.56, + Price: 5923.5, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 401, + ParentID: 4, + Name: `Mini Milk Chocolate Cookie Bites`, + Category: `Cookies`, + OrderDate: `2023-01-04`, + Units: 68, + UnitPrice: 2.25, + Price: 153, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 402, + ParentID: 4, + Name: `Wild Salmon Fillets`, + Category: `Seafood`, + OrderDate: `2023-01-04`, + Units: 320, + UnitPrice: 16.15, + Price: 5168, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 403, + ParentID: 4, + Name: `Diet Lemonade`, + Category: `Beverages`, + OrderDate: `2023-01-04`, + Units: 437, + UnitPrice: 0.5, + Price: 218.5, + Delivered: true + }), + new OrdersTreeDataItem( + { + ID: 404, + ParentID: 4, + Name: `Potatoes`, + Category: `Vegetables`, + OrderDate: `2023-01-04`, + Units: 240, + UnitPrice: 1.6, + Price: 384, + Delivered: true + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/src/index.css b/samples/grids/tree-grid/tree-grid-disabled-summaries/src/index.css new file mode 100644 index 0000000000..03040d6bba --- /dev/null +++ b/samples/grids/tree-grid/tree-grid-disabled-summaries/src/index.css @@ -0,0 +1,44 @@ +.grid-wrapper { + margin: 0 auto; + padding: 16px; + height: 87%; +} + +.grid-wrapper .summaries { + margin-bottom: 1rem; + display: flex; + align-items: center; + flex-wrap: wrap; +} + +.grid-wrapper .summaries-title { + margin: 0 0 1rem 0; + flex-basis: 100%; + font-weight: bold; +} + +.grid-wrapper .summary-button { + margin-right: 1rem; +} + +igc-dialog { + border: 1px solid #e0e0e0; + border-radius: 8px; +} + +igc-dialog::part(title) { + color: #1E6DFE; +} + +.summaries-dialog-items { + display: flex; + flex-direction: column; + align-items: flex-start; +} + +.summaries-dialog-items .summaries-dialog-item { + display: flex; + align-items: center; + padding: 0 1rem; +} + diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/src/index.ts b/samples/grids/tree-grid/tree-grid-disabled-summaries/src/index.ts new file mode 100644 index 0000000000..5bbb9753c6 --- /dev/null +++ b/samples/grids/tree-grid/tree-grid-disabled-summaries/src/index.ts @@ -0,0 +1,322 @@ +import "igniteui-webcomponents-grids/grids/combined"; +import { defineComponents, IgcButtonComponent, IgcDialogComponent, IgcCheckboxComponent } from "igniteui-webcomponents"; +import { ComponentRenderer, WebGridDescriptionModule } from "igniteui-webcomponents-core"; +import { IgcTreeGridComponent, IgcColumnComponent, IgcSummaryOperand, IgcSummaryResult } from "igniteui-webcomponents-grids/grids"; +import { OrdersTreeData } from "./OrdersTreeData"; +import "igniteui-webcomponents-grids/grids/themes/light/bootstrap.css"; +import "./index.css"; + +defineComponents(IgcButtonComponent, IgcDialogComponent, IgcCheckboxComponent); + +class UnitsSummary extends IgcSummaryOperand { + constructor() { + super(); + } + + operate(data?: any[], allData: any[] = [], fieldName: string = ""): IgcSummaryResult[] { + const result: IgcSummaryResult[] = []; + + const values = allData.map((rec) => rec[fieldName]).filter((value) => value !== undefined && value !== null); + const totalSum = values.reduce((sum, value) => sum + value, 0); + const sortedValues = values.slice().sort((a, b) => a - b); + const deliveredValues = allData + .filter((rec) => rec["Delivered"]) + .map((rec) => rec[fieldName]) + .filter((value) => value !== undefined && value !== null); + + result.push({ + key: "count", + label: "Count", + summaryResult: allData.length + }); + + result.push({ + key: "min", + label: "Min", + summaryResult: values.length > 0 ? Math.min(...values) : "N/A" + }); + + result.push({ + key: "max", + label: "Max", + summaryResult: values.length > 0 ? Math.max(...values) : "N/A" + }); + + result.push({ + key: "sum", + label: "Sum", + summaryResult: totalSum + }); + + result.push({ + key: "average", + label: "Average", + summaryResult: values.length > 0 ? totalSum / values.length : "N/A" + }); + + result.push({ + key: "totalDelivered", + label: "Total Units Delivered", + summaryResult: deliveredValues.length > 0 ? deliveredValues.reduce((sum, value) => sum + value, 0) : "N/A" + }); + + result.push({ + key: "medianUnits", + label: "Median Units", + summaryResult: + values.length > 0 + ? (() => { + const mid = Math.floor(sortedValues.length / 2); + return sortedValues.length % 2 !== 0 ? sortedValues[mid] : (sortedValues[mid - 1] + sortedValues[mid]) / 2; + })() + : "N/A" + }); + + result.push({ + key: "uniqueCount", + label: "Count of Unique Unit Values", + summaryResult: values.length > 0 ? new Set(values).size : "N/A" + }); + + result.push({ + key: "maxDifference", + label: "Max Difference Between Units", + summaryResult: + values.length > 1 + ? values.reduce((maxDiff, value, idx, arr) => { + if (idx === 0) return maxDiff; + const diff = Math.abs(value - arr[idx - 1]); + return Math.max(maxDiff, diff); + }, 0) + : "N/A" + }); + + return result; + } +} + +class DeliveredSummary extends IgcSummaryOperand { + constructor() { + super(); + } + + operate(data: any[] = [], allData: any[] = [], fieldName: string = ""): IgcSummaryResult[] { + const result: IgcSummaryResult[] = []; + + result.push({ + key: "count", + label: "Count", + summaryResult: allData.length + }); + + result.push({ + key: "true", + label: "True", + summaryResult: allData.filter((item) => item[fieldName] === true).length + }); + + result.push({ + key: "false", + label: "False", + summaryResult: allData.filter((item) => item[fieldName] === false).length + }); + + return result; + } +} + +export class Sample { + private treeGrid: IgcTreeGridComponent; + private dialog: IgcDialogComponent; + private _bind: () => void; + private currentColumn: IgcColumnComponent | null = null; + private summariesContainer: HTMLDivElement | null = null; + private disableAllBtn!: HTMLButtonElement; + private enableAllBtn!: HTMLButtonElement; + + constructor() { + this.treeGrid = document.getElementById("treeGrid") as IgcTreeGridComponent; + this.dialog = document.getElementById("dialog") as IgcDialogComponent; + this.dialog.closeOnOutsideClick = true; + this.dialog.keepOpenOnEscape = false; + + this.summariesContainer = document.querySelector(".summaries"); + + if (this.summariesContainer) { + const title = document.createElement("p"); + title.classList.add("summaries-title"); + title.textContent = "Disable Summaries for Column:"; + this.summariesContainer.appendChild(title); + } + + this.disableAllBtn = document.getElementById("disableAllBtn") as HTMLButtonElement; + this.enableAllBtn = document.getElementById("enableAllBtn") as HTMLButtonElement; + + this.webGridCustomSummary = this.webGridCustomSummary.bind(this); + this.openDialog = this.openDialog.bind(this); + this.toggleSummary = this.toggleSummary.bind(this); + this.disableAllSummaries = this.disableAllSummaries.bind(this); + this.enableAllSummaries = this.enableAllSummaries.bind(this); + this.handleColumnInit = this.handleColumnInit.bind(this); + this.updateCheckboxes = this.updateCheckboxes.bind(this); + + this._bind = () => { + this.treeGrid.data = this.ordersTreeData; + this.treeGrid.addEventListener("columnInit", this.handleColumnInit); + document.getElementById("disableAllBtn")!.addEventListener("click", this.disableAllSummaries); + document.getElementById("enableAllBtn")!.addEventListener("click", this.enableAllSummaries); + }; + this._bind(); + } + + private handleColumnInit(event: any) { + this.webGridCustomSummary(event); + const column: IgcColumnComponent = event.detail; + + if (!this.summariesContainer) return; + + const button = document.createElement("igc-button"); + button.classList.add("summary-button"); + button.textContent = column.header ? column.header.toString() : column.field; + button.setAttribute("variant", "contained"); + button.addEventListener("click", () => this.openDialog(column)); + this.summariesContainer.appendChild(button); + } + + private _ordersTreeData: OrdersTreeData | undefined; + public get ordersTreeData(): OrdersTreeData { + if (this._ordersTreeData == null) { + this._ordersTreeData = new OrdersTreeData(); + } + return this._ordersTreeData; + } + + private _componentRenderer: ComponentRenderer | undefined; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + WebGridDescriptionModule.register(this._componentRenderer.context); + } + return this._componentRenderer; + } + + public webGridCustomSummary(args: any): void { + if (args.detail.field === "Units") { + args.detail.summaries = UnitsSummary; + } + if (args.detail.field === "Delivered") { + args.detail.summaries = DeliveredSummary; + } + } + + private updateCheckboxes() { + if (!this.currentColumn) return; + + const dialogItemsContainer = this.dialog.querySelector(".summaries-dialog-items")!; + dialogItemsContainer.innerHTML = ""; + + let allSummaries: IgcSummaryResult[] = []; + + const getSummaryResults = (operand: any): IgcSummaryResult[] => { + if (typeof operand === "function") { + operand = new operand(); + } + if (operand instanceof IgcSummaryOperand) { + return operand.operate([], this.treeGrid.data, this.currentColumn!.field); + } + return []; + }; + + if (!this.currentColumn.summaries) { + const defaultOperand = IgcSummaryOperand; + allSummaries = getSummaryResults(defaultOperand); + } else { + allSummaries = getSummaryResults(this.currentColumn.summaries); + } + + let allDisabled = true; + let allEnabled = true; + + allSummaries.forEach((summary) => { + const checkbox = document.createElement("igc-checkbox") as IgcCheckboxComponent; + checkbox.classList.add("summaries-dialog-item"); + checkbox.textContent = summary.label; + const isDisabled = this.currentColumn!.disabledSummaries?.includes(summary.key); + checkbox.checked = isDisabled; + + if (isDisabled) { + allEnabled = false; + } else { + allDisabled = false; + } + + checkbox.addEventListener("click", () => this.toggleSummary(summary.key)); + dialogItemsContainer.appendChild(checkbox); + }); + + this.disableAllBtn.disabled = allDisabled; + this.enableAllBtn.disabled = allEnabled; + } + + public openDialog(column: IgcColumnComponent) { + this.currentColumn = column; + this.dialog.title = `Disable Summaries for ${column.header || column.field}`; + this.updateCheckboxes(); + this.dialog.show(); + } + + public toggleSummary(summaryKey: string) { + if (!this.currentColumn) return; + + if (!this.currentColumn.disabledSummaries) { + this.currentColumn.disabledSummaries = []; + } + + if (this.currentColumn.disabledSummaries.includes(summaryKey)) { + this.currentColumn.disabledSummaries = this.currentColumn.disabledSummaries.filter((key: string) => key !== summaryKey); + } else { + this.currentColumn.disabledSummaries = [...this.currentColumn.disabledSummaries, summaryKey]; + } + + this.updateCheckboxes(); + } + + public disableAllSummaries() { + if (!this.currentColumn) return; + + let allSummaryKeys: string[] = []; + + const getSummaryKeys = (operand: any): string[] => { + if (typeof operand === "function") { + operand = new operand(); + } + if (operand instanceof IgcSummaryOperand) { + if (this.treeGrid && this.currentColumn) { + return operand.operate([], this.treeGrid.data, this.currentColumn.field).map((s: { key: any; }) => s.key); + } + return []; + } + return []; + }; + + if (!this.currentColumn.summaries) { + const defaultOperand = IgcSummaryOperand; + allSummaryKeys = getSummaryKeys(defaultOperand); + } else { + allSummaryKeys = getSummaryKeys(this.currentColumn.summaries); + } + + this.currentColumn.disabledSummaries = allSummaryKeys; + this.updateCheckboxes(); + this.treeGrid.markForCheck(); + } + + public enableAllSummaries() { + if (!this.currentColumn) return; + this.currentColumn.disabledSummaries = []; + this.updateCheckboxes(); + this.treeGrid.markForCheck(); + } +} + +new Sample(); diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/tsconfig.json b/samples/grids/tree-grid/tree-grid-disabled-summaries/tsconfig.json new file mode 100644 index 0000000000..de23257dd8 --- /dev/null +++ b/samples/grids/tree-grid/tree-grid-disabled-summaries/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/tslint.json b/samples/grids/tree-grid/tree-grid-disabled-summaries/tslint.json new file mode 100644 index 0000000000..e139fc6fe2 --- /dev/null +++ b/samples/grids/tree-grid/tree-grid-disabled-summaries/tslint.json @@ -0,0 +1,53 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-var": false, + "no-var-keyword": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "member-ordering": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "only-arrow-functions": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "no-var-requires": false, + "no-console": false, + "no-unused-vars": false, + "@typescript-eslint/no-unused-vars": "off", + "jsx-no-lambda": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "curly": [false, "ignore-same-line"], + "max-classes-per-file": [true, 10], + "prefer-const": false, + "prefer-for-of": false, + "no-useless-constructor": false, + "@typescript-eslint/no-useless-constructor": "off" + } +} \ No newline at end of file diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/webpack.config.js b/samples/grids/tree-grid/tree-grid-disabled-summaries/webpack.config.js new file mode 100644 index 0000000000..71384f77af --- /dev/null +++ b/samples/grids/tree-grid/tree-grid-disabled-summaries/webpack.config.js @@ -0,0 +1,104 @@ +const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin"); +const HtmlWebpackPlugin = require("html-webpack-plugin"); +const TsconfigPathsPlugin = require("tsconfig-paths-webpack-plugin"); +const path = require("path"); +const webpack = require("webpack"); + +module.exports = (env) => { + const nodeEnv = process.env.NODE_ENV || "development"; + const isProd = nodeEnv === "production"; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + + const presets = [ + [ + "@babel/preset-env", + { + useBuiltIns: "usage", + corejs: 3, + targets: { + browsers: isLegacy ? ["defaults"] : ["last 2 Chrome versions", "last 2 Safari versions", "last 2 iOS versions", "last 2 Firefox versions", "last 2 Edge versions"] + } + } + ], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [path.resolve(__dirname, "node_modules/@webcomponents/custom-elements"), path.resolve(__dirname, "node_modules/@webcomponents/template"), path.resolve(__dirname, "src")] : path.resolve(__dirname, "src"), + devtool: isProd ? false : "source-map", + output: { + filename: isProd ? "[fullhash].bundle.js" : "[fullhash].bundle.js", + globalObject: "this", + path: path.resolve(__dirname, "dist") + }, + + resolve: { + mainFields: ["esm2015", "module", "main"], + extensions: [".ts", ".js", ".json"], + plugins: [ + new TsconfigPathsPlugin({ + configFile: "./tsconfig.json", + extensions: [".ts", ".js"], + mainFields: ["esm2015", "module", "main"] + }) + ] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ["file-loader"] }, + { test: /\.(csv|tsv)$/, use: ["csv-loader"] }, + { test: /\.xml$/, use: ["xml-loader"] }, + { test: /\.css$/, sideEffects: true, use: ["style-loader", "css-loader"] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: "worker-loader" }, + { + loader: "babel-loader", + options: { + compact: isProd ? true : false, + presets: presets, + plugins: [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, + loader: "babel-loader", + options: { + compact: isProd ? true : false, + presets: presets, + plugins: [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-runtime" + ] + }, + exclude: function (modulePath) { + return /node_modules/.test(modulePath) && !/igniteui-webcomponents/.test(modulePath) && !/lit-html/.test(modulePath); + } + } + ] + }, + + plugins: [ + new webpack.DefinePlugin({ + "process.env.NODE_ENV": JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: "for-cs", + template: "index.html" + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; From ce2a07f233a0a49d3fe3b73a1e97e4999ae22926 Mon Sep 17 00:00:00 2001 From: Georgi Anastasov Date: Tue, 18 Feb 2025 16:50:25 +0200 Subject: [PATCH 55/63] Correct samples names and versions --- .../.prettierrc | 0 .../ReadMe.md | 6 +- .../index.html | 0 .../grid/disabled-summaries/package.json | 63 +++++++++++ .../sandbox.config.json | 0 .../src/NwindData.ts | 0 .../src/index.css | 0 .../src/index.ts | 0 .../tsconfig.json | 0 .../tslint.json | 0 .../grid/disabled-summaries/webpack.config.js | 107 ++++++++++++++++++ .../grid/grid-disabled-summaries/package.json | 63 ----------- .../grid-disabled-summaries/webpack.config.js | 104 ----------------- .../.prettierrc | 0 .../disabled-summaries}/ReadMe.md | 6 +- .../index.html | 0 .../disabled-summaries/package.json | 63 +++++++++++ .../sandbox.config.json | 0 .../src/SingersData.json | 0 .../src/index.css | 0 .../src/index.ts | 0 .../tsconfig.json | 0 .../tslint.json | 0 .../disabled-summaries/webpack.config.js | 107 ++++++++++++++++++ .../package.json | 63 ----------- .../webpack.config.js | 104 ----------------- .../.prettierrc | 0 .../disabled-summaries}/ReadMe.md | 6 +- .../index.html | 0 .../tree-grid/disabled-summaries/package.json | 63 +++++++++++ .../sandbox.config.json | 0 .../src/OrdersTreeData.ts | 0 .../src/index.css | 0 .../src/index.ts | 0 .../tsconfig.json | 0 .../tslint.json | 0 .../disabled-summaries/webpack.config.js | 107 ++++++++++++++++++ .../tree-grid-disabled-summaries/package.json | 63 ----------- .../webpack.config.js | 104 ----------------- 39 files changed, 519 insertions(+), 510 deletions(-) rename samples/grids/grid/{grid-disabled-summaries => disabled-summaries}/.prettierrc (100%) rename samples/grids/grid/{grid-disabled-summaries => disabled-summaries}/ReadMe.md (88%) rename samples/grids/grid/{grid-disabled-summaries => disabled-summaries}/index.html (100%) create mode 100644 samples/grids/grid/disabled-summaries/package.json rename samples/grids/grid/{grid-disabled-summaries => disabled-summaries}/sandbox.config.json (100%) rename samples/grids/grid/{grid-disabled-summaries => disabled-summaries}/src/NwindData.ts (100%) rename samples/grids/grid/{grid-disabled-summaries => disabled-summaries}/src/index.css (100%) rename samples/grids/grid/{grid-disabled-summaries => disabled-summaries}/src/index.ts (100%) rename samples/grids/grid/{grid-disabled-summaries => disabled-summaries}/tsconfig.json (100%) rename samples/grids/grid/{grid-disabled-summaries => disabled-summaries}/tslint.json (100%) create mode 100644 samples/grids/grid/disabled-summaries/webpack.config.js delete mode 100644 samples/grids/grid/grid-disabled-summaries/package.json delete mode 100644 samples/grids/grid/grid-disabled-summaries/webpack.config.js rename samples/grids/hierarchical-grid/{hierarchical-grid-disabled-summaries => disabled-summaries}/.prettierrc (100%) rename samples/grids/{tree-grid/tree-grid-disabled-summaries => hierarchical-grid/disabled-summaries}/ReadMe.md (88%) rename samples/grids/hierarchical-grid/{hierarchical-grid-disabled-summaries => disabled-summaries}/index.html (100%) create mode 100644 samples/grids/hierarchical-grid/disabled-summaries/package.json rename samples/grids/hierarchical-grid/{hierarchical-grid-disabled-summaries => disabled-summaries}/sandbox.config.json (100%) rename samples/grids/hierarchical-grid/{hierarchical-grid-disabled-summaries => disabled-summaries}/src/SingersData.json (100%) rename samples/grids/hierarchical-grid/{hierarchical-grid-disabled-summaries => disabled-summaries}/src/index.css (100%) rename samples/grids/hierarchical-grid/{hierarchical-grid-disabled-summaries => disabled-summaries}/src/index.ts (100%) rename samples/grids/hierarchical-grid/{hierarchical-grid-disabled-summaries => disabled-summaries}/tsconfig.json (100%) rename samples/grids/hierarchical-grid/{hierarchical-grid-disabled-summaries => disabled-summaries}/tslint.json (100%) create mode 100644 samples/grids/hierarchical-grid/disabled-summaries/webpack.config.js delete mode 100644 samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/package.json delete mode 100644 samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/webpack.config.js rename samples/grids/tree-grid/{tree-grid-disabled-summaries => disabled-summaries}/.prettierrc (100%) rename samples/grids/{hierarchical-grid/hierarchical-grid-disabled-summaries => tree-grid/disabled-summaries}/ReadMe.md (87%) rename samples/grids/tree-grid/{tree-grid-disabled-summaries => disabled-summaries}/index.html (100%) create mode 100644 samples/grids/tree-grid/disabled-summaries/package.json rename samples/grids/tree-grid/{tree-grid-disabled-summaries => disabled-summaries}/sandbox.config.json (100%) rename samples/grids/tree-grid/{tree-grid-disabled-summaries => disabled-summaries}/src/OrdersTreeData.ts (100%) rename samples/grids/tree-grid/{tree-grid-disabled-summaries => disabled-summaries}/src/index.css (100%) rename samples/grids/tree-grid/{tree-grid-disabled-summaries => disabled-summaries}/src/index.ts (100%) rename samples/grids/tree-grid/{tree-grid-disabled-summaries => disabled-summaries}/tsconfig.json (100%) rename samples/grids/tree-grid/{tree-grid-disabled-summaries => disabled-summaries}/tslint.json (100%) create mode 100644 samples/grids/tree-grid/disabled-summaries/webpack.config.js delete mode 100644 samples/grids/tree-grid/tree-grid-disabled-summaries/package.json delete mode 100644 samples/grids/tree-grid/tree-grid-disabled-summaries/webpack.config.js diff --git a/samples/grids/grid/grid-disabled-summaries/.prettierrc b/samples/grids/grid/disabled-summaries/.prettierrc similarity index 100% rename from samples/grids/grid/grid-disabled-summaries/.prettierrc rename to samples/grids/grid/disabled-summaries/.prettierrc diff --git a/samples/grids/grid/grid-disabled-summaries/ReadMe.md b/samples/grids/grid/disabled-summaries/ReadMe.md similarity index 88% rename from samples/grids/grid/grid-disabled-summaries/ReadMe.md rename to samples/grids/grid/disabled-summaries/ReadMe.md index 950be7a0ba..ac56273d25 100644 --- a/samples/grids/grid/grid-disabled-summaries/ReadMe.md +++ b/samples/grids/grid/disabled-summaries/ReadMe.md @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/grids/grid/grid-disabled-summaries +cd ./samples/grids/grid/disabled-summaries ``` open above folder in VS Code or type: diff --git a/samples/grids/grid/grid-disabled-summaries/index.html b/samples/grids/grid/disabled-summaries/index.html similarity index 100% rename from samples/grids/grid/grid-disabled-summaries/index.html rename to samples/grids/grid/disabled-summaries/index.html diff --git a/samples/grids/grid/disabled-summaries/package.json b/samples/grids/grid/disabled-summaries/package.json new file mode 100644 index 0000000000..57a05b55c3 --- /dev/null +++ b/samples/grids/grid/disabled-summaries/package.json @@ -0,0 +1,63 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } + } \ No newline at end of file diff --git a/samples/grids/grid/grid-disabled-summaries/sandbox.config.json b/samples/grids/grid/disabled-summaries/sandbox.config.json similarity index 100% rename from samples/grids/grid/grid-disabled-summaries/sandbox.config.json rename to samples/grids/grid/disabled-summaries/sandbox.config.json diff --git a/samples/grids/grid/grid-disabled-summaries/src/NwindData.ts b/samples/grids/grid/disabled-summaries/src/NwindData.ts similarity index 100% rename from samples/grids/grid/grid-disabled-summaries/src/NwindData.ts rename to samples/grids/grid/disabled-summaries/src/NwindData.ts diff --git a/samples/grids/grid/grid-disabled-summaries/src/index.css b/samples/grids/grid/disabled-summaries/src/index.css similarity index 100% rename from samples/grids/grid/grid-disabled-summaries/src/index.css rename to samples/grids/grid/disabled-summaries/src/index.css diff --git a/samples/grids/grid/grid-disabled-summaries/src/index.ts b/samples/grids/grid/disabled-summaries/src/index.ts similarity index 100% rename from samples/grids/grid/grid-disabled-summaries/src/index.ts rename to samples/grids/grid/disabled-summaries/src/index.ts diff --git a/samples/grids/grid/grid-disabled-summaries/tsconfig.json b/samples/grids/grid/disabled-summaries/tsconfig.json similarity index 100% rename from samples/grids/grid/grid-disabled-summaries/tsconfig.json rename to samples/grids/grid/disabled-summaries/tsconfig.json diff --git a/samples/grids/grid/grid-disabled-summaries/tslint.json b/samples/grids/grid/disabled-summaries/tslint.json similarity index 100% rename from samples/grids/grid/grid-disabled-summaries/tslint.json rename to samples/grids/grid/disabled-summaries/tslint.json diff --git a/samples/grids/grid/disabled-summaries/webpack.config.js b/samples/grids/grid/disabled-summaries/webpack.config.js new file mode 100644 index 0000000000..12d87a730a --- /dev/null +++ b/samples/grids/grid/disabled-summaries/webpack.config.js @@ -0,0 +1,107 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; \ No newline at end of file diff --git a/samples/grids/grid/grid-disabled-summaries/package.json b/samples/grids/grid/grid-disabled-summaries/package.json deleted file mode 100644 index 863c386ab1..0000000000 --- a/samples/grids/grid/grid-disabled-summaries/package.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "name": "example-ignite-ui-web-components", - "description": "This project provides example of using Ignite UI for Web Components", - "author": "Infragistics", - "version": "1.0.0", - "license": "", - "private": true, - "homepage": ".", - "main": "src/index.ts", - "scripts": { - "build": "npm run build:prod", - "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start": "npm run serve:dev", - "build:legacy": "npm run build:prod:legacy", - "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start:legacy": "npm run serve:dev:legacy" - }, - "dependencies": { - "@webcomponents/custom-elements": "^1.4.1", - "@webcomponents/template": "^1.4.2", - "babel-runtime": "^6.26.0", - "core-js": "^3.6.5", - "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.1-beta.0", - "igniteui-webcomponents-grids": "5.2.1-beta.0", - "igniteui-webcomponents-inputs": "5.2.1-beta.0", - "igniteui-webcomponents-layouts": "5.2.1-beta.0", - "lit-html": "^3.2.0", - "tslib": "^2.0.0" - }, - "devDependencies": { - "@babel/cli": "^7.21.0", - "@babel/core": "^7.21.0", - "@babel/plugin-proposal-class-properties": "^7.12.0", - "@babel/plugin-transform-class-static-block": "^7.26.0", - "@babel/plugin-transform-runtime": "^7.21.0", - "@babel/preset-env": "^7.21.0", - "@babel/preset-typescript": "^7.21.0", - "@types/source-map": "^0.5.7", - "babel-loader": "^8.1.0", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "fork-ts-checker-webpack-plugin": "^4.1.5", - "html-webpack-plugin": "^4.3.0", - "parcel-bundler": "^1.6.1", - "source-map": "^0.7.3", - "style-loader": "^0.22.1", - "tsconfig-paths-webpack-plugin": "^4.0.0", - "typescript": "^4.4.4", - "webpack": "^5.96.1", - "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.11.1", - "worker-loader": "^3.0.8", - "xml-loader": "^1.2.1" - } -} diff --git a/samples/grids/grid/grid-disabled-summaries/webpack.config.js b/samples/grids/grid/grid-disabled-summaries/webpack.config.js deleted file mode 100644 index 71384f77af..0000000000 --- a/samples/grids/grid/grid-disabled-summaries/webpack.config.js +++ /dev/null @@ -1,104 +0,0 @@ -const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin"); -const HtmlWebpackPlugin = require("html-webpack-plugin"); -const TsconfigPathsPlugin = require("tsconfig-paths-webpack-plugin"); -const path = require("path"); -const webpack = require("webpack"); - -module.exports = (env) => { - const nodeEnv = process.env.NODE_ENV || "development"; - const isProd = nodeEnv === "production"; - const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); - console.log(">> webpack nodeEnv=" + nodeEnv); - console.log(">> webpack isProd=" + isProd); - console.log(">> webpack isLegacy=" + isLegacy); - - const presets = [ - [ - "@babel/preset-env", - { - useBuiltIns: "usage", - corejs: 3, - targets: { - browsers: isLegacy ? ["defaults"] : ["last 2 Chrome versions", "last 2 Safari versions", "last 2 iOS versions", "last 2 Firefox versions", "last 2 Edge versions"] - } - } - ], - "@babel/preset-typescript" - ]; - - return { - entry: isLegacy ? [path.resolve(__dirname, "node_modules/@webcomponents/custom-elements"), path.resolve(__dirname, "node_modules/@webcomponents/template"), path.resolve(__dirname, "src")] : path.resolve(__dirname, "src"), - devtool: isProd ? false : "source-map", - output: { - filename: isProd ? "[fullhash].bundle.js" : "[fullhash].bundle.js", - globalObject: "this", - path: path.resolve(__dirname, "dist") - }, - - resolve: { - mainFields: ["esm2015", "module", "main"], - extensions: [".ts", ".js", ".json"], - plugins: [ - new TsconfigPathsPlugin({ - configFile: "./tsconfig.json", - extensions: [".ts", ".js"], - mainFields: ["esm2015", "module", "main"] - }) - ] - }, - - module: { - rules: [ - { test: /\.(png|svg|jpg|gif)$/, use: ["file-loader"] }, - { test: /\.(csv|tsv)$/, use: ["csv-loader"] }, - { test: /\.xml$/, use: ["xml-loader"] }, - { test: /\.css$/, sideEffects: true, use: ["style-loader", "css-loader"] }, - { - test: /worker\.(ts|js)$/, - use: [ - { loader: "worker-loader" }, - { - loader: "babel-loader", - options: { - compact: isProd ? true : false, - presets: presets, - plugins: [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-class-static-block", - "@babel/plugin-transform-runtime" - ] - } - } - ] - }, - { - test: /\.(ts|js)$/, - loader: "babel-loader", - options: { - compact: isProd ? true : false, - presets: presets, - plugins: [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-class-static-block", - "@babel/plugin-transform-runtime" - ] - }, - exclude: function (modulePath) { - return /node_modules/.test(modulePath) && !/igniteui-webcomponents/.test(modulePath) && !/lit-html/.test(modulePath); - } - } - ] - }, - - plugins: [ - new webpack.DefinePlugin({ - "process.env.NODE_ENV": JSON.stringify(nodeEnv) - }), - new HtmlWebpackPlugin({ - title: "for-cs", - template: "index.html" - }), - new ForkTsCheckerWebpackPlugin() - ] - }; -}; diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/.prettierrc b/samples/grids/hierarchical-grid/disabled-summaries/.prettierrc similarity index 100% rename from samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/.prettierrc rename to samples/grids/hierarchical-grid/disabled-summaries/.prettierrc diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/ReadMe.md b/samples/grids/hierarchical-grid/disabled-summaries/ReadMe.md similarity index 88% rename from samples/grids/tree-grid/tree-grid-disabled-summaries/ReadMe.md rename to samples/grids/hierarchical-grid/disabled-summaries/ReadMe.md index 79ba94a54c..ac56273d25 100644 --- a/samples/grids/tree-grid/tree-grid-disabled-summaries/ReadMe.md +++ b/samples/grids/hierarchical-grid/disabled-summaries/ReadMe.md @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/grids/grid/tree-grid-disabled-summaries +cd ./samples/grids/grid/disabled-summaries ``` open above folder in VS Code or type: diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/index.html b/samples/grids/hierarchical-grid/disabled-summaries/index.html similarity index 100% rename from samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/index.html rename to samples/grids/hierarchical-grid/disabled-summaries/index.html diff --git a/samples/grids/hierarchical-grid/disabled-summaries/package.json b/samples/grids/hierarchical-grid/disabled-summaries/package.json new file mode 100644 index 0000000000..57a05b55c3 --- /dev/null +++ b/samples/grids/hierarchical-grid/disabled-summaries/package.json @@ -0,0 +1,63 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } + } \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/sandbox.config.json b/samples/grids/hierarchical-grid/disabled-summaries/sandbox.config.json similarity index 100% rename from samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/sandbox.config.json rename to samples/grids/hierarchical-grid/disabled-summaries/sandbox.config.json diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/SingersData.json b/samples/grids/hierarchical-grid/disabled-summaries/src/SingersData.json similarity index 100% rename from samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/SingersData.json rename to samples/grids/hierarchical-grid/disabled-summaries/src/SingersData.json diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/index.css b/samples/grids/hierarchical-grid/disabled-summaries/src/index.css similarity index 100% rename from samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/index.css rename to samples/grids/hierarchical-grid/disabled-summaries/src/index.css diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/index.ts b/samples/grids/hierarchical-grid/disabled-summaries/src/index.ts similarity index 100% rename from samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/src/index.ts rename to samples/grids/hierarchical-grid/disabled-summaries/src/index.ts diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/tsconfig.json b/samples/grids/hierarchical-grid/disabled-summaries/tsconfig.json similarity index 100% rename from samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/tsconfig.json rename to samples/grids/hierarchical-grid/disabled-summaries/tsconfig.json diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/tslint.json b/samples/grids/hierarchical-grid/disabled-summaries/tslint.json similarity index 100% rename from samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/tslint.json rename to samples/grids/hierarchical-grid/disabled-summaries/tslint.json diff --git a/samples/grids/hierarchical-grid/disabled-summaries/webpack.config.js b/samples/grids/hierarchical-grid/disabled-summaries/webpack.config.js new file mode 100644 index 0000000000..12d87a730a --- /dev/null +++ b/samples/grids/hierarchical-grid/disabled-summaries/webpack.config.js @@ -0,0 +1,107 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/package.json deleted file mode 100644 index 863c386ab1..0000000000 --- a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/package.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "name": "example-ignite-ui-web-components", - "description": "This project provides example of using Ignite UI for Web Components", - "author": "Infragistics", - "version": "1.0.0", - "license": "", - "private": true, - "homepage": ".", - "main": "src/index.ts", - "scripts": { - "build": "npm run build:prod", - "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start": "npm run serve:dev", - "build:legacy": "npm run build:prod:legacy", - "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start:legacy": "npm run serve:dev:legacy" - }, - "dependencies": { - "@webcomponents/custom-elements": "^1.4.1", - "@webcomponents/template": "^1.4.2", - "babel-runtime": "^6.26.0", - "core-js": "^3.6.5", - "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.1-beta.0", - "igniteui-webcomponents-grids": "5.2.1-beta.0", - "igniteui-webcomponents-inputs": "5.2.1-beta.0", - "igniteui-webcomponents-layouts": "5.2.1-beta.0", - "lit-html": "^3.2.0", - "tslib": "^2.0.0" - }, - "devDependencies": { - "@babel/cli": "^7.21.0", - "@babel/core": "^7.21.0", - "@babel/plugin-proposal-class-properties": "^7.12.0", - "@babel/plugin-transform-class-static-block": "^7.26.0", - "@babel/plugin-transform-runtime": "^7.21.0", - "@babel/preset-env": "^7.21.0", - "@babel/preset-typescript": "^7.21.0", - "@types/source-map": "^0.5.7", - "babel-loader": "^8.1.0", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "fork-ts-checker-webpack-plugin": "^4.1.5", - "html-webpack-plugin": "^4.3.0", - "parcel-bundler": "^1.6.1", - "source-map": "^0.7.3", - "style-loader": "^0.22.1", - "tsconfig-paths-webpack-plugin": "^4.0.0", - "typescript": "^4.4.4", - "webpack": "^5.96.1", - "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.11.1", - "worker-loader": "^3.0.8", - "xml-loader": "^1.2.1" - } -} diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/webpack.config.js b/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/webpack.config.js deleted file mode 100644 index 71384f77af..0000000000 --- a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/webpack.config.js +++ /dev/null @@ -1,104 +0,0 @@ -const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin"); -const HtmlWebpackPlugin = require("html-webpack-plugin"); -const TsconfigPathsPlugin = require("tsconfig-paths-webpack-plugin"); -const path = require("path"); -const webpack = require("webpack"); - -module.exports = (env) => { - const nodeEnv = process.env.NODE_ENV || "development"; - const isProd = nodeEnv === "production"; - const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); - console.log(">> webpack nodeEnv=" + nodeEnv); - console.log(">> webpack isProd=" + isProd); - console.log(">> webpack isLegacy=" + isLegacy); - - const presets = [ - [ - "@babel/preset-env", - { - useBuiltIns: "usage", - corejs: 3, - targets: { - browsers: isLegacy ? ["defaults"] : ["last 2 Chrome versions", "last 2 Safari versions", "last 2 iOS versions", "last 2 Firefox versions", "last 2 Edge versions"] - } - } - ], - "@babel/preset-typescript" - ]; - - return { - entry: isLegacy ? [path.resolve(__dirname, "node_modules/@webcomponents/custom-elements"), path.resolve(__dirname, "node_modules/@webcomponents/template"), path.resolve(__dirname, "src")] : path.resolve(__dirname, "src"), - devtool: isProd ? false : "source-map", - output: { - filename: isProd ? "[fullhash].bundle.js" : "[fullhash].bundle.js", - globalObject: "this", - path: path.resolve(__dirname, "dist") - }, - - resolve: { - mainFields: ["esm2015", "module", "main"], - extensions: [".ts", ".js", ".json"], - plugins: [ - new TsconfigPathsPlugin({ - configFile: "./tsconfig.json", - extensions: [".ts", ".js"], - mainFields: ["esm2015", "module", "main"] - }) - ] - }, - - module: { - rules: [ - { test: /\.(png|svg|jpg|gif)$/, use: ["file-loader"] }, - { test: /\.(csv|tsv)$/, use: ["csv-loader"] }, - { test: /\.xml$/, use: ["xml-loader"] }, - { test: /\.css$/, sideEffects: true, use: ["style-loader", "css-loader"] }, - { - test: /worker\.(ts|js)$/, - use: [ - { loader: "worker-loader" }, - { - loader: "babel-loader", - options: { - compact: isProd ? true : false, - presets: presets, - plugins: [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-class-static-block", - "@babel/plugin-transform-runtime" - ] - } - } - ] - }, - { - test: /\.(ts|js)$/, - loader: "babel-loader", - options: { - compact: isProd ? true : false, - presets: presets, - plugins: [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-class-static-block", - "@babel/plugin-transform-runtime" - ] - }, - exclude: function (modulePath) { - return /node_modules/.test(modulePath) && !/igniteui-webcomponents/.test(modulePath) && !/lit-html/.test(modulePath); - } - } - ] - }, - - plugins: [ - new webpack.DefinePlugin({ - "process.env.NODE_ENV": JSON.stringify(nodeEnv) - }), - new HtmlWebpackPlugin({ - title: "for-cs", - template: "index.html" - }), - new ForkTsCheckerWebpackPlugin() - ] - }; -}; diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/.prettierrc b/samples/grids/tree-grid/disabled-summaries/.prettierrc similarity index 100% rename from samples/grids/tree-grid/tree-grid-disabled-summaries/.prettierrc rename to samples/grids/tree-grid/disabled-summaries/.prettierrc diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/ReadMe.md b/samples/grids/tree-grid/disabled-summaries/ReadMe.md similarity index 87% rename from samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/ReadMe.md rename to samples/grids/tree-grid/disabled-summaries/ReadMe.md index a3b971ba01..ac56273d25 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-disabled-summaries/ReadMe.md +++ b/samples/grids/tree-grid/disabled-summaries/ReadMe.md @@ -12,10 +12,10 @@ This folder contains implementation of Web Components application with example o View Code - + Run Sample - + Run Sample @@ -33,7 +33,7 @@ To set up this project locally, execute these commands: git clone https://github.com/IgniteUI/igniteui-wc-examples.git git checkout master cd ./igniteui-wc-examples -cd ./samples/grids/grid/hierarchical-grid-disabled-summaries +cd ./samples/grids/grid/disabled-summaries ``` open above folder in VS Code or type: diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/index.html b/samples/grids/tree-grid/disabled-summaries/index.html similarity index 100% rename from samples/grids/tree-grid/tree-grid-disabled-summaries/index.html rename to samples/grids/tree-grid/disabled-summaries/index.html diff --git a/samples/grids/tree-grid/disabled-summaries/package.json b/samples/grids/tree-grid/disabled-summaries/package.json new file mode 100644 index 0000000000..57a05b55c3 --- /dev/null +++ b/samples/grids/tree-grid/disabled-summaries/package.json @@ -0,0 +1,63 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "igniteui-webcomponents-grids": "5.2.1-beta.0", + "igniteui-webcomponents-inputs": "5.2.1-beta.0", + "igniteui-webcomponents-layouts": "5.2.1-beta.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } + } \ No newline at end of file diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/sandbox.config.json b/samples/grids/tree-grid/disabled-summaries/sandbox.config.json similarity index 100% rename from samples/grids/tree-grid/tree-grid-disabled-summaries/sandbox.config.json rename to samples/grids/tree-grid/disabled-summaries/sandbox.config.json diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/src/OrdersTreeData.ts b/samples/grids/tree-grid/disabled-summaries/src/OrdersTreeData.ts similarity index 100% rename from samples/grids/tree-grid/tree-grid-disabled-summaries/src/OrdersTreeData.ts rename to samples/grids/tree-grid/disabled-summaries/src/OrdersTreeData.ts diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/src/index.css b/samples/grids/tree-grid/disabled-summaries/src/index.css similarity index 100% rename from samples/grids/tree-grid/tree-grid-disabled-summaries/src/index.css rename to samples/grids/tree-grid/disabled-summaries/src/index.css diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/src/index.ts b/samples/grids/tree-grid/disabled-summaries/src/index.ts similarity index 100% rename from samples/grids/tree-grid/tree-grid-disabled-summaries/src/index.ts rename to samples/grids/tree-grid/disabled-summaries/src/index.ts diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/tsconfig.json b/samples/grids/tree-grid/disabled-summaries/tsconfig.json similarity index 100% rename from samples/grids/tree-grid/tree-grid-disabled-summaries/tsconfig.json rename to samples/grids/tree-grid/disabled-summaries/tsconfig.json diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/tslint.json b/samples/grids/tree-grid/disabled-summaries/tslint.json similarity index 100% rename from samples/grids/tree-grid/tree-grid-disabled-summaries/tslint.json rename to samples/grids/tree-grid/disabled-summaries/tslint.json diff --git a/samples/grids/tree-grid/disabled-summaries/webpack.config.js b/samples/grids/tree-grid/disabled-summaries/webpack.config.js new file mode 100644 index 0000000000..12d87a730a --- /dev/null +++ b/samples/grids/tree-grid/disabled-summaries/webpack.config.js @@ -0,0 +1,107 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; \ No newline at end of file diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/package.json b/samples/grids/tree-grid/tree-grid-disabled-summaries/package.json deleted file mode 100644 index 863c386ab1..0000000000 --- a/samples/grids/tree-grid/tree-grid-disabled-summaries/package.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "name": "example-ignite-ui-web-components", - "description": "This project provides example of using Ignite UI for Web Components", - "author": "Infragistics", - "version": "1.0.0", - "license": "", - "private": true, - "homepage": ".", - "main": "src/index.ts", - "scripts": { - "build": "npm run build:prod", - "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start": "npm run serve:dev", - "build:legacy": "npm run build:prod:legacy", - "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start:legacy": "npm run serve:dev:legacy" - }, - "dependencies": { - "@webcomponents/custom-elements": "^1.4.1", - "@webcomponents/template": "^1.4.2", - "babel-runtime": "^6.26.0", - "core-js": "^3.6.5", - "igniteui-webcomponents": "5.2.1", - "igniteui-webcomponents-core": "5.2.1-beta.0", - "igniteui-webcomponents-grids": "5.2.1-beta.0", - "igniteui-webcomponents-inputs": "5.2.1-beta.0", - "igniteui-webcomponents-layouts": "5.2.1-beta.0", - "lit-html": "^3.2.0", - "tslib": "^2.0.0" - }, - "devDependencies": { - "@babel/cli": "^7.21.0", - "@babel/core": "^7.21.0", - "@babel/plugin-proposal-class-properties": "^7.12.0", - "@babel/plugin-transform-class-static-block": "^7.26.0", - "@babel/plugin-transform-runtime": "^7.21.0", - "@babel/preset-env": "^7.21.0", - "@babel/preset-typescript": "^7.21.0", - "@types/source-map": "^0.5.7", - "babel-loader": "^8.1.0", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "fork-ts-checker-webpack-plugin": "^4.1.5", - "html-webpack-plugin": "^4.3.0", - "parcel-bundler": "^1.6.1", - "source-map": "^0.7.3", - "style-loader": "^0.22.1", - "tsconfig-paths-webpack-plugin": "^4.0.0", - "typescript": "^4.4.4", - "webpack": "^5.96.1", - "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.11.1", - "worker-loader": "^3.0.8", - "xml-loader": "^1.2.1" - } -} diff --git a/samples/grids/tree-grid/tree-grid-disabled-summaries/webpack.config.js b/samples/grids/tree-grid/tree-grid-disabled-summaries/webpack.config.js deleted file mode 100644 index 71384f77af..0000000000 --- a/samples/grids/tree-grid/tree-grid-disabled-summaries/webpack.config.js +++ /dev/null @@ -1,104 +0,0 @@ -const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin"); -const HtmlWebpackPlugin = require("html-webpack-plugin"); -const TsconfigPathsPlugin = require("tsconfig-paths-webpack-plugin"); -const path = require("path"); -const webpack = require("webpack"); - -module.exports = (env) => { - const nodeEnv = process.env.NODE_ENV || "development"; - const isProd = nodeEnv === "production"; - const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); - console.log(">> webpack nodeEnv=" + nodeEnv); - console.log(">> webpack isProd=" + isProd); - console.log(">> webpack isLegacy=" + isLegacy); - - const presets = [ - [ - "@babel/preset-env", - { - useBuiltIns: "usage", - corejs: 3, - targets: { - browsers: isLegacy ? ["defaults"] : ["last 2 Chrome versions", "last 2 Safari versions", "last 2 iOS versions", "last 2 Firefox versions", "last 2 Edge versions"] - } - } - ], - "@babel/preset-typescript" - ]; - - return { - entry: isLegacy ? [path.resolve(__dirname, "node_modules/@webcomponents/custom-elements"), path.resolve(__dirname, "node_modules/@webcomponents/template"), path.resolve(__dirname, "src")] : path.resolve(__dirname, "src"), - devtool: isProd ? false : "source-map", - output: { - filename: isProd ? "[fullhash].bundle.js" : "[fullhash].bundle.js", - globalObject: "this", - path: path.resolve(__dirname, "dist") - }, - - resolve: { - mainFields: ["esm2015", "module", "main"], - extensions: [".ts", ".js", ".json"], - plugins: [ - new TsconfigPathsPlugin({ - configFile: "./tsconfig.json", - extensions: [".ts", ".js"], - mainFields: ["esm2015", "module", "main"] - }) - ] - }, - - module: { - rules: [ - { test: /\.(png|svg|jpg|gif)$/, use: ["file-loader"] }, - { test: /\.(csv|tsv)$/, use: ["csv-loader"] }, - { test: /\.xml$/, use: ["xml-loader"] }, - { test: /\.css$/, sideEffects: true, use: ["style-loader", "css-loader"] }, - { - test: /worker\.(ts|js)$/, - use: [ - { loader: "worker-loader" }, - { - loader: "babel-loader", - options: { - compact: isProd ? true : false, - presets: presets, - plugins: [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-class-static-block", - "@babel/plugin-transform-runtime" - ] - } - } - ] - }, - { - test: /\.(ts|js)$/, - loader: "babel-loader", - options: { - compact: isProd ? true : false, - presets: presets, - plugins: [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-class-static-block", - "@babel/plugin-transform-runtime" - ] - }, - exclude: function (modulePath) { - return /node_modules/.test(modulePath) && !/igniteui-webcomponents/.test(modulePath) && !/lit-html/.test(modulePath); - } - } - ] - }, - - plugins: [ - new webpack.DefinePlugin({ - "process.env.NODE_ENV": JSON.stringify(nodeEnv) - }), - new HtmlWebpackPlugin({ - title: "for-cs", - template: "index.html" - }), - new ForkTsCheckerWebpackPlugin() - ] - }; -}; From 0f0e02b088fbe2d1d887cd16cd806ee03439b9ee Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Fri, 21 Feb 2025 09:54:32 -0500 Subject: [PATCH 56/63] Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.21.1 --- .../financial-dashboard/src/MultipleStocks.ts | 2 +- .../data-chart/selection-matcher/src/index.ts | 2 +- .../stacked-100-area-chart/index.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../stacked-100-line-chart/index.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../stacked-100-spline-area-chart/index.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../stacked-100-spline-chart/index.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../data-chart/stacked-area-chart/index.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../stacked-column-chart/index.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../data-chart/stacked-line-chart/index.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../stacked-spline-area-chart/index.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../stacked-spline-chart/index.html | 12 +- .../src/ContinentsBirthRate.ts | 126 +- .../data-pie-chart/animation/index.html | 8 +- .../data-pie-chart/animation/src/index.ts | 6 +- .../data-pie-chart/highlighting/index.html | 4 + .../data-pie-chart/highlighting/src/index.ts | 6 +- .../charts/data-pie-chart/others/index.html | 6 + .../charts/data-pie-chart/others/src/index.ts | 8 +- .../data-pie-chart/selection/index.html | 6 +- .../data-pie-chart/selection/src/index.ts | 6 +- .../src/MultipleStocks.ts | 2 +- .../src/StockGoogle.ts | 9721 ++--------------- .../data-legend-styling-props/src/index.ts | 2 +- .../data-legend/src/MultipleStocks.ts | 2 +- .../src/MultipleStocks.ts | 2 +- .../src/StockGoogle.ts | 9721 ++--------------- .../data-tooltip-styling-props/src/index.ts | 2 +- .../data-tooltip/src/MultipleStocks.ts | 2 +- .../format-specifiers/src/MultipleStocks.ts | 2 +- .../scrollbars/src/MultipleStocks.ts | 2 +- .../src/index.ts | 4 +- samples/charts/toolbar/custom-tool/index.html | 7 + .../charts/toolbar/custom-tool/src/index.ts | 4 + samples/charts/toolbar/theming/index.html | 2 + samples/charts/toolbar/theming/src/index.ts | 4 +- .../cell-selection-mode/src/index.ts | 4 +- .../row-pinning-extra-column/src/index.ts | 22 +- .../row-pinning-options/src/index.ts | 22 +- 46 files changed, 2716 insertions(+), 18107 deletions(-) diff --git a/samples/charts/dashboard-tile/financial-dashboard/src/MultipleStocks.ts b/samples/charts/dashboard-tile/financial-dashboard/src/MultipleStocks.ts index 3688676b43..ca994ac344 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/src/MultipleStocks.ts +++ b/samples/charts/dashboard-tile/financial-dashboard/src/MultipleStocks.ts @@ -80,7 +80,7 @@ export class MultipleStocks extends Array> { for (let json of jsonData) { let parts = json.date.split("-"); // "2020-01-01" let item = new StockItem(); - item.date = new Date(parts[0], parts[1], parts[2]); + item.date = new Date(parts[0], parts[1], parts[2],13,0,0); item.open = json.open; item.high = json.high; item.low = json.low; diff --git a/samples/charts/data-chart/selection-matcher/src/index.ts b/samples/charts/data-chart/selection-matcher/src/index.ts index b6ff619220..620a8427cc 100644 --- a/samples/charts/data-chart/selection-matcher/src/index.ts +++ b/samples/charts/data-chart/selection-matcher/src/index.ts @@ -72,7 +72,7 @@ export class Sample { var chart = this.chart; - this._timer = setInterval(() => { + this._timer = setTimeout(() => { var data = this.energyRenewableConsumption; let matcher: IgcSeriesMatcher = new IgcSeriesMatcher(); diff --git a/samples/charts/data-chart/stacked-100-area-chart/index.html b/samples/charts/data-chart/stacked-100-area-chart/index.html index db676e703d..d5b2728138 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/index.html +++ b/samples/charts/data-chart/stacked-100-area-chart/index.html @@ -39,7 +39,7 @@ + label="Year"> diff --git a/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts index df127b125d..2e1860aded 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-area-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-100-line-chart/index.html b/samples/charts/data-chart/stacked-100-line-chart/index.html index c8a311c245..12188810bf 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/index.html +++ b/samples/charts/data-chart/stacked-100-line-chart/index.html @@ -39,7 +39,7 @@ + label="Year"> diff --git a/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts index df127b125d..2e1860aded 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-line-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/index.html b/samples/charts/data-chart/stacked-100-spline-area-chart/index.html index ea45270779..1b8957298d 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/index.html +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/index.html @@ -39,7 +39,7 @@ + label="Year"> diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts index df127b125d..2e1860aded 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-100-spline-chart/index.html b/samples/charts/data-chart/stacked-100-spline-chart/index.html index a1864ba633..6f655a59df 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/index.html +++ b/samples/charts/data-chart/stacked-100-spline-chart/index.html @@ -39,7 +39,7 @@ + label="Year"> diff --git a/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts index df127b125d..2e1860aded 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-100-spline-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-area-chart/index.html b/samples/charts/data-chart/stacked-area-chart/index.html index b4688bdf68..65f76021a7 100644 --- a/samples/charts/data-chart/stacked-area-chart/index.html +++ b/samples/charts/data-chart/stacked-area-chart/index.html @@ -39,7 +39,7 @@ diff --git a/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts index df127b125d..2e1860aded 100644 --- a/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-area-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-column-chart/index.html b/samples/charts/data-chart/stacked-column-chart/index.html index 2967a80a85..37023680da 100644 --- a/samples/charts/data-chart/stacked-column-chart/index.html +++ b/samples/charts/data-chart/stacked-column-chart/index.html @@ -39,7 +39,7 @@ diff --git a/samples/charts/data-chart/stacked-column-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-column-chart/src/ContinentsBirthRate.ts index df127b125d..2e1860aded 100644 --- a/samples/charts/data-chart/stacked-column-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-column-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-line-chart/index.html b/samples/charts/data-chart/stacked-line-chart/index.html index 8c88cbe535..aa5e10a20b 100644 --- a/samples/charts/data-chart/stacked-line-chart/index.html +++ b/samples/charts/data-chart/stacked-line-chart/index.html @@ -39,7 +39,7 @@ diff --git a/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts index df127b125d..2e1860aded 100644 --- a/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-line-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-spline-area-chart/index.html b/samples/charts/data-chart/stacked-spline-area-chart/index.html index de4c72249d..55d13463a2 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/index.html +++ b/samples/charts/data-chart/stacked-spline-area-chart/index.html @@ -39,7 +39,7 @@ diff --git a/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts index df127b125d..2e1860aded 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-spline-area-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-chart/stacked-spline-chart/index.html b/samples/charts/data-chart/stacked-spline-chart/index.html index 9c4281a378..639f037611 100644 --- a/samples/charts/data-chart/stacked-spline-chart/index.html +++ b/samples/charts/data-chart/stacked-spline-chart/index.html @@ -39,7 +39,7 @@ diff --git a/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts b/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts index df127b125d..2e1860aded 100644 --- a/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts +++ b/samples/charts/data-chart/stacked-spline-chart/src/ContinentsBirthRate.ts @@ -3,13 +3,13 @@ export class ContinentsBirthRateItem { Object.assign(this, init); } - public year: string; - public asia: number; - public africa: number; - public europe: number; - public northAmerica: number; - public southAmerica: number; - public oceania: number; + public Year: string; + public Asia: number; + public Africa: number; + public Europe: number; + public NorthAmerica: number; + public SouthAmerica: number; + public Oceania: number; } export class ContinentsBirthRate extends Array { @@ -20,83 +20,83 @@ export class ContinentsBirthRate extends Array { const newItems = [ new ContinentsBirthRateItem( { - year: `1950`, - asia: 62, - africa: 13, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 1 + Year: `1950`, + Asia: 62, + Africa: 13, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1960`, - asia: 68, - africa: 12, - europe: 15, - northAmerica: 4, - southAmerica: 9, - oceania: 2 + Year: `1960`, + Asia: 68, + Africa: 12, + Europe: 15, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1970`, - asia: 80, - africa: 17, - europe: 11, - northAmerica: 3, - southAmerica: 9, - oceania: 1 + Year: `1970`, + Asia: 80, + Africa: 17, + Europe: 11, + NorthAmerica: 3, + SouthAmerica: 9, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `1980`, - asia: 77, - africa: 21, - europe: 12, - northAmerica: 3, - southAmerica: 10, - oceania: 2 + Year: `1980`, + Asia: 77, + Africa: 21, + Europe: 12, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `1990`, - asia: 87, - africa: 24, - europe: 9, - northAmerica: 3, - southAmerica: 10, - oceania: 1 + Year: `1990`, + Asia: 87, + Africa: 24, + Europe: 9, + NorthAmerica: 3, + SouthAmerica: 10, + Oceania: 1 }), new ContinentsBirthRateItem( { - year: `2000`, - asia: 79, - africa: 28, - europe: 8, - northAmerica: 4, - southAmerica: 9, - oceania: 3 + Year: `2000`, + Asia: 79, + Africa: 28, + Europe: 8, + NorthAmerica: 4, + SouthAmerica: 9, + Oceania: 3 }), new ContinentsBirthRateItem( { - year: `2010`, - asia: 78, - africa: 35, - europe: 10, - northAmerica: 4, - southAmerica: 8, - oceania: 2 + Year: `2010`, + Asia: 78, + Africa: 35, + Europe: 10, + NorthAmerica: 4, + SouthAmerica: 8, + Oceania: 2 }), new ContinentsBirthRateItem( { - year: `2020`, - asia: 75, - africa: 43, - europe: 7, - northAmerica: 4, - southAmerica: 7, - oceania: 4 + Year: `2020`, + Asia: 75, + Africa: 43, + Europe: 7, + NorthAmerica: 4, + SouthAmerica: 7, + Oceania: 4 }), ]; super(...newItems.slice(0)); diff --git a/samples/charts/data-pie-chart/animation/index.html b/samples/charts/data-pie-chart/animation/index.html index 6e00ae03e2..45ab6095d7 100644 --- a/samples/charts/data-pie-chart/animation/index.html +++ b/samples/charts/data-pie-chart/animation/index.html @@ -27,11 +27,15 @@ id="propertyEditorPanel1"> @@ -46,9 +50,9 @@ + transition-in-speed-type="IndexScaled">
diff --git a/samples/charts/data-pie-chart/animation/src/index.ts b/samples/charts/data-pie-chart/animation/src/index.ts index 617c10eb3d..ad040348b9 100644 --- a/samples/charts/data-pie-chart/animation/src/index.ts +++ b/samples/charts/data-pie-chart/animation/src/index.ts @@ -1,7 +1,7 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts'; import { IgcDataPieChartModule, IgcItemLegendModule } from 'igniteui-webcomponents-charts'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-webcomponents-core'; -import { IgcPropertyEditorPanelComponent } from 'igniteui-webcomponents-layouts'; +import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcDataPieChartComponent } from 'igniteui-webcomponents-charts'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; @@ -21,11 +21,15 @@ ModuleManager.register( export class Sample { private propertyEditorPanel1: IgcPropertyEditorPanelComponent + private transitionInModeEditor: IgcPropertyEditorPropertyDescriptionComponent + private transitionInSpeedTypeEditor: IgcPropertyEditorPropertyDescriptionComponent private chart: IgcDataPieChartComponent private _bind: () => void; constructor() { var propertyEditorPanel1 = this.propertyEditorPanel1 = document.getElementById('propertyEditorPanel1') as IgcPropertyEditorPanelComponent; + var transitionInModeEditor = this.transitionInModeEditor = document.getElementById('TransitionInModeEditor') as IgcPropertyEditorPropertyDescriptionComponent; + var transitionInSpeedTypeEditor = this.transitionInSpeedTypeEditor = document.getElementById('TransitionInSpeedTypeEditor') as IgcPropertyEditorPropertyDescriptionComponent; var chart = this.chart = document.getElementById('chart') as IgcDataPieChartComponent; this._bind = () => { diff --git a/samples/charts/data-pie-chart/highlighting/index.html b/samples/charts/data-pie-chart/highlighting/index.html index 3ebbab0d49..5ce2f11191 100644 --- a/samples/charts/data-pie-chart/highlighting/index.html +++ b/samples/charts/data-pie-chart/highlighting/index.html @@ -27,11 +27,15 @@ id="propertyEditorPanel1"> diff --git a/samples/charts/data-pie-chart/highlighting/src/index.ts b/samples/charts/data-pie-chart/highlighting/src/index.ts index 617c10eb3d..a17ce1c7a6 100644 --- a/samples/charts/data-pie-chart/highlighting/src/index.ts +++ b/samples/charts/data-pie-chart/highlighting/src/index.ts @@ -1,7 +1,7 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts'; import { IgcDataPieChartModule, IgcItemLegendModule } from 'igniteui-webcomponents-charts'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-webcomponents-core'; -import { IgcPropertyEditorPanelComponent } from 'igniteui-webcomponents-layouts'; +import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcDataPieChartComponent } from 'igniteui-webcomponents-charts'; import { EnergyGlobalDemandItem, EnergyGlobalDemand } from './EnergyGlobalDemand'; @@ -21,11 +21,15 @@ ModuleManager.register( export class Sample { private propertyEditorPanel1: IgcPropertyEditorPanelComponent + private highlightingModeEditor: IgcPropertyEditorPropertyDescriptionComponent + private highlightingBehaviorEditor: IgcPropertyEditorPropertyDescriptionComponent private chart: IgcDataPieChartComponent private _bind: () => void; constructor() { var propertyEditorPanel1 = this.propertyEditorPanel1 = document.getElementById('propertyEditorPanel1') as IgcPropertyEditorPanelComponent; + var highlightingModeEditor = this.highlightingModeEditor = document.getElementById('HighlightingModeEditor') as IgcPropertyEditorPropertyDescriptionComponent; + var highlightingBehaviorEditor = this.highlightingBehaviorEditor = document.getElementById('HighlightingBehaviorEditor') as IgcPropertyEditorPropertyDescriptionComponent; var chart = this.chart = document.getElementById('chart') as IgcDataPieChartComponent; this._bind = () => { diff --git a/samples/charts/data-pie-chart/others/index.html b/samples/charts/data-pie-chart/others/index.html index 1b09dbfe50..b30835250e 100644 --- a/samples/charts/data-pie-chart/others/index.html +++ b/samples/charts/data-pie-chart/others/index.html @@ -27,12 +27,16 @@ id="propertyEditorPanel1"> diff --git a/samples/charts/data-pie-chart/others/src/index.ts b/samples/charts/data-pie-chart/others/src/index.ts index 34a296c649..05a0db2a65 100644 --- a/samples/charts/data-pie-chart/others/src/index.ts +++ b/samples/charts/data-pie-chart/others/src/index.ts @@ -1,7 +1,7 @@ import { IgcPropertyEditorPanelModule } from 'igniteui-webcomponents-layouts'; import { IgcDataPieChartModule, IgcItemLegendModule } from 'igniteui-webcomponents-charts'; import { ComponentRenderer, PropertyEditorPanelDescriptionModule, DataPieChartDescriptionModule, ItemLegendDescriptionModule } from 'igniteui-webcomponents-core'; -import { IgcPropertyEditorPanelComponent } from 'igniteui-webcomponents-layouts'; +import { IgcPropertyEditorPanelComponent, IgcPropertyEditorPropertyDescriptionComponent } from 'igniteui-webcomponents-layouts'; import { IgcDataPieChartComponent } from 'igniteui-webcomponents-charts'; import { DataPieDataItem, DataPieData } from './DataPieData'; @@ -21,11 +21,17 @@ ModuleManager.register( export class Sample { private propertyEditorPanel1: IgcPropertyEditorPanelComponent + private othersCategoryTypeEditor: IgcPropertyEditorPropertyDescriptionComponent + private othersCategoryThresholdEditor: IgcPropertyEditorPropertyDescriptionComponent + private othersCategoryTextEditor: IgcPropertyEditorPropertyDescriptionComponent private chart: IgcDataPieChartComponent private _bind: () => void; constructor() { var propertyEditorPanel1 = this.propertyEditorPanel1 = document.getElementById('propertyEditorPanel1') as IgcPropertyEditorPanelComponent; + var othersCategoryTypeEditor = this.othersCategoryTypeEditor = document.getElementById('OthersCategoryTypeEditor') as IgcPropertyEditorPropertyDescriptionComponent; + var othersCategoryThresholdEditor = this.othersCategoryThresholdEditor = document.getElementById('OthersCategoryThresholdEditor') as IgcPropertyEditorPropertyDescriptionComponent; + var othersCategoryTextEditor = this.othersCategoryTextEditor = document.getElementById('OthersCategoryTextEditor') as IgcPropertyEditorPropertyDescriptionComponent; var chart = this.chart = document.getElementById('chart') as IgcDataPieChartComponent; this._bind = () => { diff --git a/samples/charts/data-pie-chart/selection/index.html b/samples/charts/data-pie-chart/selection/index.html index 19e4e72a11..bbf787d950 100644 --- a/samples/charts/data-pie-chart/selection/index.html +++ b/samples/charts/data-pie-chart/selection/index.html @@ -29,8 +29,8 @@ label="Selection Behavior: " value-type="EnumValue" property-path="SelectionBehavior" - name="SelectionBehavior" - id="SelectionBehavior" + name="SelectionBehaviorEditor" + id="SelectionBehaviorEditor" should-override-default-editor="true" drop-down-names="PerDataItemSingleSelect, PerDataItemMultiSelect" drop-down-values="PerDataItemSingleSelect, PerDataItemMultiSelect" @@ -38,6 +38,8 @@ diff --git a/samples/charts/data-pie-chart/selection/src/index.ts b/samples/charts/data-pie-chart/selection/src/index.ts index 34ccd627db..1b90957293 100644 --- a/samples/charts/data-pie-chart/selection/src/index.ts +++ b/samples/charts/data-pie-chart/selection/src/index.ts @@ -21,13 +21,15 @@ ModuleManager.register( export class Sample { private propertyEditorPanel1: IgcPropertyEditorPanelComponent - private selectionBehavior: IgcPropertyEditorPropertyDescriptionComponent + private selectionBehaviorEditor: IgcPropertyEditorPropertyDescriptionComponent + private selectionModeEditor: IgcPropertyEditorPropertyDescriptionComponent private chart: IgcDataPieChartComponent private _bind: () => void; constructor() { var propertyEditorPanel1 = this.propertyEditorPanel1 = document.getElementById('propertyEditorPanel1') as IgcPropertyEditorPanelComponent; - var selectionBehavior = this.selectionBehavior = document.getElementById('SelectionBehavior') as IgcPropertyEditorPropertyDescriptionComponent; + var selectionBehaviorEditor = this.selectionBehaviorEditor = document.getElementById('SelectionBehaviorEditor') as IgcPropertyEditorPropertyDescriptionComponent; + var selectionModeEditor = this.selectionModeEditor = document.getElementById('SelectionModeEditor') as IgcPropertyEditorPropertyDescriptionComponent; var chart = this.chart = document.getElementById('chart') as IgcDataPieChartComponent; this._bind = () => { diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/src/MultipleStocks.ts b/samples/charts/financial-chart/data-legend-formatting-currency/src/MultipleStocks.ts index 3688676b43..ca994ac344 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/src/MultipleStocks.ts +++ b/samples/charts/financial-chart/data-legend-formatting-currency/src/MultipleStocks.ts @@ -80,7 +80,7 @@ export class MultipleStocks extends Array> { for (let json of jsonData) { let parts = json.date.split("-"); // "2020-01-01" let item = new StockItem(); - item.date = new Date(parts[0], parts[1], parts[2]); + item.date = new Date(parts[0], parts[1], parts[2],13,0,0); item.open = json.open; item.high = json.high; item.low = json.low; diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts b/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts index efd806727a..f482695fe8 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts +++ b/samples/charts/financial-chart/data-legend-styling-props/src/StockGoogle.ts @@ -1,8727 +1,1000 @@ -export class StockGoogleItem { - public constructor(init: Partial) { - Object.assign(this, init); - } +//begin data +export class StockGoogle extends Array { - public date: string; - public open: number; - public high: number; - public low: number; - public close: number; - public volume: number; + constructor(){ + super(); + let jsonData = [ + { "Date": "2014-03-01", "Open": 559.6, "High": 568.2, "Low": 558.4, "Close": 566.9, "Volume": 2182626 }, + { "Date": "2014-03-02", "Open": 562.4, "High": 571.8, "Low": 561.4, "Close": 567.0, "Volume": 2088804 }, + { "Date": "2014-03-03", "Open": 569.9, "High": 587.3, "Low": 564.1, "Close": 569.7, "Volume": 5087530 }, + { "Date": "2014-03-04", "Open": 574.6, "High": 577.8, "Low": 543.0, "Close": 543.1, "Volume": 6377658 }, + { "Date": "2014-03-07", "Open": 540.7, "High": 548.5, "Low": 527.1, "Close": 538.1, "Volume": 4389569 }, + { "Date": "2014-03-08", "Open": 542.6, "High": 555.0, "Low": 541.6, "Close": 554.9, "Volume": 3152406 }, + { "Date": "2014-03-09", "Open": 559.6, "High": 565.4, "Low": 553.0, "Close": 564.1, "Volume": 3324742 }, + { "Date": "2014-03-10", "Open": 565.0, "High": 565.0, "Low": 539.9, "Close": 541.0, "Volume": 4027743 }, + { "Date": "2014-03-11", "Open": 532.5, "High": 540.0, "Low": 526.5, "Close": 530.6, "Volume": 3916171 }, + { "Date": "2014-03-14", "Open": 538.3, "High": 544.1, "Low": 529.6, "Close": 532.5, "Volume": 2568020 }, + { "Date": "2014-03-15", "Open": 536.8, "High": 538.5, "Low": 518.5, "Close": 536.4, "Volume": 3847453 }, + { "Date": "2014-03-16", "Open": 543.0, "High": 557.0, "Low": 540.0, "Close": 556.5, "Volume": 4879889 }, + { "Date": "2014-03-17", "Open": 548.8, "High": 549.5, "Low": 531.1, "Close": 536.1, "Volume": 6795393 }, + { "Date": "2014-03-21", "Open": 536.1, "High": 536.7, "Low": 525.6, "Close": 528.6, "Volume": 2561214 }, + { "Date": "2014-03-22", "Open": 528.6, "High": 537.2, "Low": 527.5, "Close": 534.8, "Volume": 2359421 }, + { "Date": "2014-03-23", "Open": 533.8, "High": 533.9, "Low": 526.3, "Close": 526.9, "Volume": 2051066 }, + { "Date": "2014-03-24", "Open": 530.1, "High": 531.6, "Low": 522.1, "Close": 525.2, "Volume": 1881965 }, + { "Date": "2014-03-25", "Open": 522.5, "High": 524.7, "Low": 515.4, "Close": 516.2, "Volume": 2097264 }, + { "Date": "2014-03-28", "Open": 517.2, "High": 518.6, "Low": 502.8, "Close": 517.1, "Volume": 3326429 }, + { "Date": "2014-03-29", "Open": 516.9, "High": 529.5, "Low": 516.3, "Close": 527.7, "Volume": 2692489 }, + { "Date": "2014-03-30", "Open": 527.6, "High": 528.0, "Low": 522.5, "Close": 526.7, "Volume": 1746904 }, + { "Date": "2014-04-01", "Open": 527.1, "High": 532.9, "Low": 523.9, "Close": 531.4, "Volume": 1900432 }, + { "Date": "2014-04-02", "Open": 533.8, "High": 534.0, "Low": 525.6, "Close": 527.9, "Volume": 1685042 }, + { "Date": "2014-04-05", "Open": 524.8, "High": 528.9, "Low": 521.3, "Close": 527.8, "Volume": 1021408 }, + { "Date": "2014-04-06", "Open": 525.2, "High": 526.8, "Low": 515.1, "Close": 515.1, "Volume": 1684381 }, + { "Date": "2014-04-07", "Open": 515.8, "High": 516.7, "Low": 503.3, "Close": 510.0, "Volume": 3216077 }, + { "Date": "2014-04-08", "Open": 508.5, "High": 517.2, "Low": 506.4, "Close": 511.0, "Volume": 2016131 }, + { "Date": "2014-04-09", "Open": 510.8, "High": 519.9, "Low": 504.2, "Close": 518.7, "Volume": 2432783 }, + { "Date": "2014-04-12", "Open": 523.5, "High": 530.2, "Low": 519.0, "Close": 529.9, "Volume": 1908392 }, + { "Date": "2014-04-13", "Open": 530.9, "High": 536.1, "Low": 529.5, "Close": 533.1, "Volume": 1648907 }, + { "Date": "2014-04-14", "Open": 533.0, "High": 533.0, "Low": 525.3, "Close": 526.6, "Volume": 1191863 }, + { "Date": "2014-04-15", "Open": 525.7, "High": 525.9, "Low": 517.4, "Close": 520.0, "Volume": 1703758 }, + { "Date": "2014-04-16", "Open": 521.4, "High": 521.8, "Low": 515.4, "Close": 520.6, "Volume": 1481688 }, + { "Date": "2014-04-19", "Open": 519.7, "High": 529.8, "Low": 517.6, "Close": 528.9, "Volume": 1276362 }, + { "Date": "2014-04-20", "Open": 529.7, "High": 536.2, "Low": 526.3, "Close": 529.8, "Volume": 1780113 }, + { "Date": "2014-04-21", "Open": 532.9, "High": 539.2, "Low": 531.9, "Close": 538.9, "Volume": 1193389 }, + { "Date": "2014-04-22", "Open": 541.1, "High": 547.6, "Low": 540.8, "Close": 545.1, "Volume": 1611837 }, + { "Date": "2014-04-23", "Open": 547.3, "High": 553.6, "Low": 543.7, "Close": 552.7, "Volume": 1929632 }, + { "Date": "2014-04-27", "Open": 556.0, "High": 566.0, "Low": 554.4, "Close": 566.0, "Volume": 2100298 }, + { "Date": "2014-04-28", "Open": 564.6, "High": 567.8, "Low": 561.0, "Close": 561.7, "Volume": 1647717 }, + { "Date": "2014-04-29", "Open": 563.4, "High": 564.0, "Low": 558.7, "Close": 560.1, "Volume": 1350657 }, + { "Date": "2014-04-30", "Open": 560.8, "High": 561.4, "Low": 555.9, "Close": 559.9, "Volume": 1766794 }, + { "Date": "2014-05-02", "Open": 560.7, "High": 560.9, "Low": 545.7, "Close": 553.9, "Volume": 1434989 }, + { "Date": "2014-05-03", "Open": 551.0, "High": 552.3, "Low": 542.5, "Close": 544.9, "Volume": 1861921 }, + { "Date": "2014-05-04", "Open": 541.5, "High": 548.6, "Low": 538.8, "Close": 544.7, "Volume": 1812084 }, + { "Date": "2014-05-05", "Open": 546.4, "High": 555.0, "Low": 544.5, "Close": 553.9, "Volume": 1684886 }, + { "Date": "2014-05-06", "Open": 558.1, "High": 558.1, "Low": 548.9, "Close": 556.3, "Volume": 1732592 }, + { "Date": "2014-05-09", "Open": 557.1, "High": 562.9, "Low": 556.0, "Close": 562.1, "Volume": 1463676 }, + { "Date": "2014-05-10", "Open": 560.5, "High": 563.6, "Low": 557.9, "Close": 560.5, "Volume": 1349444 }, + { "Date": "2014-05-11", "Open": 558.0, "High": 559.9, "Low": 555.0, "Close": 558.8, "Volume": 1097380 }, + { "Date": "2014-05-12", "Open": 557.3, "High": 558.0, "Low": 548.5, "Close": 551.4, "Volume": 1457104 }, + { "Date": "2014-05-13", "Open": 552.3, "High": 552.3, "Low": 545.6, "Close": 551.8, "Volume": 1217176 }, + { "Date": "2014-05-16", "Open": 549.3, "High": 549.6, "Low": 541.5, "Close": 544.3, "Volume": 1704027 }, + { "Date": "2014-05-17", "Open": 544.2, "High": 545.3, "Low": 539.3, "Close": 543.0, "Volume": 1445878 }, + { "Date": "2014-05-18", "Open": 544.9, "High": 553.6, "Low": 544.0, "Close": 553.4, "Volume": 1737343 }, + { "Date": "2014-05-19", "Open": 554.2, "High": 555.0, "Low": 548.5, "Close": 554.9, "Volume": 2451341 }, + { "Date": "2014-05-20", "Open": 556.9, "High": 557.6, "Low": 550.4, "Close": 556.4, "Volume": 4496962 }, + { "Date": "2014-05-23", "Open": 555.1, "High": 565.0, "Low": 554.3, "Close": 565.0, "Volume": 1534659 }, + { "Date": "2014-05-24", "Open": 565.2, "High": 572.6, "Low": 561.0, "Close": 564.6, "Volume": 2201789 }, + { "Date": "2014-05-25", "Open": 565.3, "High": 580.0, "Low": 565.2, "Close": 578.6, "Volume": 1964447 }, + { "Date": "2014-05-26", "Open": 581.0, "High": 582.5, "Low": 571.9, "Close": 576.0, "Volume": 1737210 }, + { "Date": "2014-05-27", "Open": 577.2, "High": 579.9, "Low": 573.8, "Close": 577.2, "Volume": 2231174 }, + { "Date": "2014-05-30", "Open": 578.7, "High": 579.6, "Low": 574.8, "Close": 575.3, "Volume": 1310909 }, + { "Date": "2014-06-01", "Open": 578.3, "High": 584.4, "Low": 576.6, "Close": 582.7, "Volume": 1446309 }, + { "Date": "2014-06-02", "Open": 583.4, "High": 585.4, "Low": 580.4, "Close": 582.3, "Volume": 1054936 }, + { "Date": "2014-06-03", "Open": 583.4, "High": 585.0, "Low": 580.9, "Close": 584.7, "Volume": 712210 }, + { "Date": "2014-06-07", "Open": 583.8, "High": 586.4, "Low": 579.6, "Close": 582.3, "Volume": 1061833 }, + { "Date": "2014-06-08", "Open": 577.7, "High": 579.5, "Low": 566.1, "Close": 571.1, "Volume": 1908647 }, + { "Date": "2014-06-09", "Open": 571.6, "High": 576.7, "Low": 569.4, "Close": 576.1, "Volume": 1113907 }, + { "Date": "2014-06-10", "Open": 565.9, "High": 576.6, "Low": 565.0, "Close": 571.1, "Volume": 1353317 }, + { "Date": "2014-06-11", "Open": 571.9, "High": 580.9, "Low": 571.4, "Close": 579.2, "Volume": 1617569 }, + { "Date": "2014-06-14", "Open": 582.6, "High": 585.2, "Low": 578.0, "Close": 584.9, "Volume": 1852290 }, + { "Date": "2014-06-15", "Open": 585.7, "High": 585.8, "Low": 576.6, "Close": 584.8, "Volume": 1618815 }, + { "Date": "2014-06-16", "Open": 588.0, "High": 588.4, "Low": 582.2, "Close": 582.7, "Volume": 1394560 }, + { "Date": "2014-06-17", "Open": 579.5, "High": 581.0, "Low": 568.6, "Close": 573.7, "Volume": 3015475 }, + { "Date": "2014-06-18", "Open": 593.0, "High": 596.8, "Low": 582.0, "Close": 595.1, "Volume": 4006389 }, + { "Date": "2014-06-21", "Open": 591.8, "High": 594.4, "Low": 585.2, "Close": 589.5, "Volume": 2060334 }, + { "Date": "2014-06-22", "Open": 590.7, "High": 599.6, "Low": 590.6, "Close": 594.7, "Volume": 1694787 }, + { "Date": "2014-06-23", "Open": 593.2, "High": 597.9, "Low": 592.5, "Close": 596.0, "Volume": 1229846 }, + { "Date": "2014-06-24", "Open": 596.5, "High": 599.5, "Low": 591.8, "Close": 593.4, "Volume": 1033341 }, + { "Date": "2014-06-25", "Open": 590.4, "High": 591.9, "Low": 587.0, "Close": 589.0, "Volume": 932724 }, + { "Date": "2014-06-28", "Open": 588.1, "High": 592.5, "Low": 584.8, "Close": 590.6, "Volume": 984161 }, + { "Date": "2014-06-29", "Open": 588.8, "High": 589.7, "Low": 583.5, "Close": 585.6, "Volume": 1346647 }, + { "Date": "2014-06-30", "Open": 586.5, "High": 589.5, "Low": 584.0, "Close": 587.4, "Volume": 1013932 }, + { "Date": "2014-06-31", "Open": 580.6, "High": 583.6, "Low": 570.0, "Close": 571.6, "Volume": 2099516 }, + { "Date": "2014-07-01", "Open": 570.4, "High": 576.0, "Low": 562.9, "Close": 566.1, "Volume": 1950171 }, + { "Date": "2014-07-04", "Open": 569.0, "High": 575.4, "Low": 564.1, "Close": 573.1, "Volume": 1427169 }, + { "Date": "2014-07-05", "Open": 570.0, "High": 572.0, "Low": 562.6, "Close": 565.1, "Volume": 1556685 }, + { "Date": "2014-07-06", "Open": 561.8, "High": 570.7, "Low": 560.0, "Close": 566.4, "Volume": 1330877 }, + { "Date": "2014-07-07", "Open": 568.0, "High": 569.9, "Low": 561.1, "Close": 563.4, "Volume": 1108900 }, + { "Date": "2014-07-08", "Open": 563.6, "High": 570.3, "Low": 560.4, "Close": 568.8, "Volume": 1492491 }, + { "Date": "2014-07-11", "Open": 570.0, "High": 570.5, "Low": 566.0, "Close": 567.9, "Volume": 1215968 }, + { "Date": "2014-07-12", "Open": 564.5, "High": 565.9, "Low": 560.9, "Close": 562.7, "Volume": 1537758 }, + { "Date": "2014-07-13", "Open": 567.3, "High": 575.0, "Low": 565.8, "Close": 574.8, "Volume": 1437922 }, + { "Date": "2014-07-14", "Open": 576.2, "High": 577.9, "Low": 570.9, "Close": 574.6, "Volume": 982926 }, + { "Date": "2014-07-15", "Open": 577.9, "High": 579.4, "Low": 570.5, "Close": 573.5, "Volume": 1517056 }, + { "Date": "2014-07-18", "Open": 576.1, "High": 584.5, "Low": 576.0, "Close": 582.2, "Volume": 1282531 }, + { "Date": "2014-07-19", "Open": 585.0, "High": 587.3, "Low": 584.0, "Close": 586.9, "Volume": 979298 }, + { "Date": "2014-07-20", "Open": 585.9, "High": 586.7, "Low": 582.6, "Close": 584.5, "Volume": 1034779 }, + { "Date": "2014-07-21", "Open": 583.8, "High": 584.5, "Low": 581.1, "Close": 583.4, "Volume": 912854 }, + { "Date": "2014-07-22", "Open": 583.6, "High": 585.2, "Low": 580.6, "Close": 582.6, "Volume": 789484 }, + { "Date": "2014-07-25", "Open": 584.7, "High": 585.0, "Low": 579.0, "Close": 580.2, "Volume": 1358810 }, + { "Date": "2014-07-26", "Open": 581.3, "High": 581.8, "Low": 576.6, "Close": 577.9, "Volume": 1635465 }, + { "Date": "2014-07-27", "Open": 577.3, "High": 578.5, "Low": 570.1, "Close": 571.0, "Volume": 1700161 }, + { "Date": "2014-07-28", "Open": 569.6, "High": 573.3, "Low": 567.1, "Close": 569.2, "Volume": 1295963 }, + { "Date": "2014-07-29", "Open": 571.3, "High": 572.0, "Low": 567.1, "Close": 571.6, "Volume": 1081231 }, + { "Date": "2014-08-02", "Open": 571.9, "High": 577.8, "Low": 571.2, "Close": 577.3, "Volume": 1576830 }, + { "Date": "2014-08-03", "Open": 580.0, "High": 583.0, "Low": 575.0, "Close": 577.9, "Volume": 1214586 }, + { "Date": "2014-08-04", "Open": 580.0, "High": 586.0, "Low": 579.2, "Close": 582.0, "Volume": 1459956 }, + { "Date": "2014-08-05", "Open": 584.0, "High": 586.5, "Low": 582.0, "Close": 586.1, "Volume": 1629477 }, + { "Date": "2014-08-08", "Open": 586.6, "High": 591.8, "Low": 586.3, "Close": 589.7, "Volume": 1429101 }, + { "Date": "2014-08-09", "Open": 588.9, "High": 589.0, "Low": 580.0, "Close": 581.0, "Volume": 1286722 }, + { "Date": "2014-08-10", "Open": 581.5, "High": 583.5, "Low": 576.9, "Close": 583.1, "Volume": 975145 }, + { "Date": "2014-08-11", "Open": 580.4, "High": 581.8, "Low": 576.3, "Close": 581.4, "Volume": 1217721 }, + { "Date": "2014-08-12", "Open": 581.0, "High": 581.6, "Low": 574.5, "Close": 575.6, "Volume": 1597677 }, + { "Date": "2014-08-15", "Open": 572.9, "High": 575.0, "Low": 568.2, "Close": 573.1, "Volume": 1596224 }, + { "Date": "2014-08-16", "Open": 572.8, "High": 581.5, "Low": 572.7, "Close": 580.0, "Volume": 1478306 }, + { "Date": "2014-08-17", "Open": 580.0, "High": 587.5, "Low": 578.8, "Close": 584.8, "Volume": 1690994 }, + { "Date": "2014-08-18", "Open": 587.0, "High": 589.5, "Low": 585.0, "Close": 589.3, "Volume": 1442012 }, + { "Date": "2014-08-19", "Open": 591.5, "High": 596.5, "Low": 589.5, "Close": 596.1, "Volume": 3727045 }, + { "Date": "2014-08-22", "Open": 593.8, "High": 594.0, "Low": 583.5, "Close": 587.4, "Volume": 1687710 }, + { "Date": "2014-08-23", "Open": 586.9, "High": 586.9, "Low": 581.0, "Close": 581.1, "Volume": 1467703 }, + { "Date": "2014-08-24", "Open": 581.5, "High": 589.6, "Low": 580.5, "Close": 588.0, "Volume": 1724537 }, + { "Date": "2014-08-25", "Open": 587.5, "High": 588.0, "Low": 574.2, "Close": 575.1, "Volume": 1925350 }, + { "Date": "2014-08-26", "Open": 576.1, "High": 579.3, "Low": 574.7, "Close": 577.1, "Volume": 1439807 }, + { "Date": "2014-08-29", "Open": 571.8, "High": 578.2, "Low": 571.2, "Close": 576.4, "Volume": 1281204 }, + { "Date": "2014-08-30", "Open": 576.9, "High": 579.9, "Low": 572.9, "Close": 577.4, "Volume": 1618437 }, + { "Date": "2014-09-01", "Open": 576.0, "High": 577.6, "Low": 567.0, "Close": 568.3, "Volume": 1445027 }, + { "Date": "2014-09-02", "Open": 567.3, "High": 571.9, "Low": 563.3, "Close": 570.1, "Volume": 1175307 }, + { "Date": "2014-09-03", "Open": 573.0, "High": 577.2, "Low": 572.5, "Close": 575.3, "Volume": 1138636 }, + { "Date": "2014-09-06", "Open": 578.8, "High": 581.0, "Low": 574.4, "Close": 577.4, "Volume": 1211320 }, + { "Date": "2014-09-07", "Open": 574.4, "High": 575.3, "Low": 563.7, "Close": 563.7, "Volume": 1906427 }, + { "Date": "2014-09-08", "Open": 565.6, "High": 573.9, "Low": 557.5, "Close": 572.5, "Volume": 1987888 }, + { "Date": "2014-09-09", "Open": 571.2, "High": 571.5, "Low": 559.1, "Close": 560.9, "Volume": 2519693 }, + { "Date": "2014-09-10", "Open": 557.7, "High": 565.1, "Low": 544.0, "Close": 544.5, "Volume": 3078634 }, + { "Date": "2014-09-13", "Open": 545.0, "High": 549.5, "Low": 533.1, "Close": 533.2, "Volume": 2578676 }, + { "Date": "2014-09-14", "Open": 538.9, "High": 547.2, "Low": 533.2, "Close": 537.9, "Volume": 2217230 }, + { "Date": "2014-09-15", "Open": 531.0, "High": 532.8, "Low": 518.3, "Close": 530.0, "Volume": 3712536 }, + { "Date": "2014-09-16", "Open": 519.0, "High": 529.4, "Low": 515.0, "Close": 524.5, "Volume": 3698423 }, + { "Date": "2014-09-17", "Open": 527.3, "High": 531.0, "Low": 508.5, "Close": 511.2, "Volume": 5530674 }, + { "Date": "2014-09-20", "Open": 509.4, "High": 521.8, "Low": 508.1, "Close": 520.8, "Volume": 2605505 }, + { "Date": "2014-09-21", "Open": 525.2, "High": 526.8, "Low": 519.1, "Close": 526.5, "Volume": 2332531 }, + { "Date": "2014-09-22", "Open": 529.9, "High": 539.8, "Low": 528.8, "Close": 532.7, "Volume": 2917183 }, + { "Date": "2014-09-23", "Open": 539.3, "High": 547.2, "Low": 535.9, "Close": 544.0, "Volume": 2345296 }, + { "Date": "2014-09-24", "Open": 544.4, "High": 544.9, "Low": 535.8, "Close": 539.8, "Volume": 1972047 }, + { "Date": "2014-09-27", "Open": 537.0, "High": 544.4, "Low": 537.0, "Close": 540.8, "Volume": 1184973 }, + { "Date": "2014-09-28", "Open": 543.0, "High": 549.0, "Low": 541.6, "Close": 548.9, "Volume": 1273372 }, + { "Date": "2014-09-29", "Open": 550.0, "High": 554.2, "Low": 547.0, "Close": 549.3, "Volume": 1767107 }, + { "Date": "2014-09-30", "Open": 549.0, "High": 552.8, "Low": 543.5, "Close": 550.3, "Volume": 1451667 }, + { "Date": "2014-09-31", "Open": 559.4, "High": 559.6, "Low": 554.8, "Close": 559.1, "Volume": 2032887 }, + { "Date": "2014-10-03", "Open": 555.5, "High": 557.9, "Low": 553.2, "Close": 555.2, "Volume": 1378511 }, + { "Date": "2014-10-04", "Open": 553.0, "High": 555.5, "Low": 549.3, "Close": 554.1, "Volume": 1240761 }, + { "Date": "2014-10-05", "Open": 556.8, "High": 556.8, "Low": 544.0, "Close": 545.9, "Volume": 2026740 }, + { "Date": "2014-10-06", "Open": 545.5, "High": 546.9, "Low": 541.0, "Close": 542.0, "Volume": 1329604 }, + { "Date": "2014-10-07", "Open": 546.2, "High": 546.2, "Low": 538.7, "Close": 541.0, "Volume": 1629259 }, + { "Date": "2014-10-10", "Open": 541.5, "High": 549.6, "Low": 541.0, "Close": 547.5, "Volume": 1131546 }, + { "Date": "2014-10-11", "Open": 548.5, "High": 551.9, "Low": 546.3, "Close": 550.3, "Volume": 964866 }, + { "Date": "2014-10-12", "Open": 550.4, "High": 550.5, "Low": 545.2, "Close": 547.3, "Volume": 1126594 }, + { "Date": "2014-10-13", "Open": 549.8, "High": 549.8, "Low": 543.5, "Close": 545.4, "Volume": 1335719 }, + { "Date": "2014-10-14", "Open": 546.7, "High": 546.7, "Low": 542.1, "Close": 544.4, "Volume": 1285991 }, + { "Date": "2014-10-17", "Open": 543.6, "High": 543.8, "Low": 534.1, "Close": 536.5, "Volume": 1721282 }, + { "Date": "2014-10-18", "Open": 537.5, "High": 541.9, "Low": 534.2, "Close": 535.0, "Volume": 1957664 }, + { "Date": "2014-10-19", "Open": 535.0, "High": 538.2, "Low": 530.1, "Close": 537.0, "Volume": 1388440 }, + { "Date": "2014-10-20", "Open": 531.3, "High": 535.1, "Low": 531.1, "Close": 534.8, "Volume": 1559131 }, + { "Date": "2014-10-21", "Open": 541.6, "High": 542.1, "Low": 536.6, "Close": 537.5, "Volume": 2218249 }, + { "Date": "2014-10-24", "Open": 537.6, "High": 542.7, "Low": 535.6, "Close": 539.3, "Volume": 1701682 }, + { "Date": "2014-10-25", "Open": 539.0, "High": 544.0, "Low": 538.6, "Close": 541.1, "Volume": 1784967 }, + { "Date": "2014-10-26", "Open": 540.9, "High": 541.5, "Low": 537.0, "Close": 540.4, "Volume": 1519503 }, + { "Date": "2014-10-28", "Open": 540.6, "High": 542.0, "Low": 536.6, "Close": 541.8, "Volume": 1145231 }, + { "Date": "2014-11-01", "Open": 538.9, "High": 541.4, "Low": 531.9, "Close": 533.8, "Volume": 2109599 }, + { "Date": "2014-11-02", "Open": 533.5, "High": 535.5, "Low": 529.8, "Close": 533.8, "Volume": 1522481 }, + { "Date": "2014-11-03", "Open": 531.4, "High": 536.0, "Low": 529.3, "Close": 531.3, "Volume": 1279288 }, + { "Date": "2014-11-04", "Open": 531.2, "High": 537.3, "Low": 528.6, "Close": 537.3, "Volume": 1392208 }, + { "Date": "2014-11-05", "Open": 531.0, "High": 532.9, "Low": 524.3, "Close": 525.3, "Volume": 2558649 }, + { "Date": "2014-11-08", "Open": 527.1, "High": 531.0, "Low": 523.8, "Close": 527.0, "Volume": 2327127 }, + { "Date": "2014-11-09", "Open": 522.1, "High": 534.2, "Low": 520.5, "Close": 533.4, "Volume": 1871268 }, + { "Date": "2014-11-10", "Open": 533.1, "High": 536.3, "Low": 525.6, "Close": 526.1, "Volume": 1716835 }, + { "Date": "2014-11-11", "Open": 527.8, "High": 533.9, "Low": 527.1, "Close": 528.3, "Volume": 1610964 }, + { "Date": "2014-11-12", "Open": 523.5, "High": 528.5, "Low": 518.7, "Close": 518.7, "Volume": 1989117 }, + { "Date": "2014-11-15", "Open": 522.7, "High": 523.1, "Low": 513.3, "Close": 513.8, "Volume": 2812786 }, + { "Date": "2014-11-16", "Open": 511.6, "High": 513.0, "Low": 489.0, "Close": 495.4, "Volume": 3953371 }, + { "Date": "2014-11-17", "Open": 497.0, "High": 507.0, "Low": 496.8, "Close": 504.9, "Volume": 2875281 }, + { "Date": "2014-11-18", "Open": 513.0, "High": 513.9, "Low": 504.7, "Close": 511.1, "Volume": 2918730 }, + { "Date": "2014-11-19", "Open": 511.5, "High": 517.7, "Low": 506.9, "Close": 516.4, "Volume": 3680148 }, + { "Date": "2014-11-22", "Open": 516.1, "High": 526.5, "Low": 516.1, "Close": 524.9, "Volume": 2723599 }, + { "Date": "2014-11-23", "Open": 527.0, "High": 534.6, "Low": 526.3, "Close": 530.6, "Volume": 2191567 }, + { "Date": "2014-11-24", "Open": 530.5, "High": 531.8, "Low": 527.0, "Close": 528.8, "Volume": 704035 }, + { "Date": "2014-11-26", "Open": 528.8, "High": 534.3, "Low": 527.3, "Close": 534.0, "Volume": 1037727 }, + { "Date": "2014-11-29", "Open": 532.2, "High": 535.5, "Low": 530.0, "Close": 530.3, "Volume": 2276104 }, + { "Date": "2014-11-30", "Open": 528.1, "High": 531.1, "Low": 527.1, "Close": 530.4, "Volume": 873923 }, + { "Date": "2014-11-31", "Open": 531.3, "High": 532.6, "Low": 525.8, "Close": 526.4, "Volume": 1371819 }, + { "Date": "2015-00-02", "Open": 529.0, "High": 531.3, "Low": 524.1, "Close": 524.8, "Volume": 1446662 }, + { "Date": "2015-00-05", "Open": 523.3, "High": 524.3, "Low": 513.1, "Close": 513.9, "Volume": 2054238 }, + { "Date": "2015-00-06", "Open": 515.0, "High": 516.2, "Low": 501.1, "Close": 502.0, "Volume": 2891950 }, + { "Date": "2015-00-07", "Open": 507.0, "High": 507.2, "Low": 499.6, "Close": 501.1, "Volume": 2059366 }, + { "Date": "2015-00-08", "Open": 498.0, "High": 503.5, "Low": 491.0, "Close": 502.7, "Volume": 3344395 }, + { "Date": "2015-00-09", "Open": 504.8, "High": 504.9, "Low": 494.8, "Close": 496.2, "Volume": 2065715 }, + { "Date": "2015-00-12", "Open": 494.9, "High": 496.0, "Low": 487.6, "Close": 492.6, "Volume": 2320446 }, + { "Date": "2015-00-13", "Open": 498.8, "High": 503.0, "Low": 492.4, "Close": 496.2, "Volume": 2365687 }, + { "Date": "2015-00-14", "Open": 494.6, "High": 503.2, "Low": 493.0, "Close": 500.9, "Volume": 2229638 }, + { "Date": "2015-00-15", "Open": 505.6, "High": 505.7, "Low": 497.8, "Close": 501.8, "Volume": 2711355 }, + { "Date": "2015-00-16", "Open": 500.0, "High": 508.2, "Low": 500.0, "Close": 508.1, "Volume": 2292043 }, + { "Date": "2015-00-20", "Open": 511.0, "High": 512.5, "Low": 506.0, "Close": 506.9, "Volume": 2225922 }, + { "Date": "2015-00-21", "Open": 507.3, "High": 519.3, "Low": 506.2, "Close": 518.0, "Volume": 2262455 }, + { "Date": "2015-00-22", "Open": 521.5, "High": 536.3, "Low": 519.7, "Close": 534.4, "Volume": 2669558 }, + { "Date": "2015-00-23", "Open": 535.6, "High": 542.2, "Low": 533.0, "Close": 540.0, "Volume": 2275485 }, + { "Date": "2015-00-26", "Open": 538.5, "High": 539.0, "Low": 529.7, "Close": 535.2, "Volume": 1539524 }, + { "Date": "2015-00-27", "Open": 530.0, "High": 530.7, "Low": 518.2, "Close": 518.6, "Volume": 1898844 }, + { "Date": "2015-00-28", "Open": 522.8, "High": 523.0, "Low": 510.0, "Close": 510.0, "Volume": 1679230 }, + { "Date": "2015-00-29", "Open": 511.0, "High": 511.1, "Low": 501.2, "Close": 510.7, "Volume": 4174924 }, + { "Date": "2015-00-30", "Open": 515.9, "High": 539.9, "Low": 515.5, "Close": 534.5, "Volume": 5590977 }, + { "Date": "2015-01-02", "Open": 531.7, "High": 533.0, "Low": 518.5, "Close": 528.5, "Volume": 2841976 }, + { "Date": "2015-01-03", "Open": 528.0, "High": 533.4, "Low": 523.3, "Close": 529.2, "Volume": 2033085 }, + { "Date": "2015-01-04", "Open": 529.2, "High": 532.7, "Low": 521.3, "Close": 522.8, "Volume": 1659125 }, + { "Date": "2015-01-05", "Open": 523.8, "High": 528.5, "Low": 522.1, "Close": 527.6, "Volume": 1844687 }, + { "Date": "2015-01-06", "Open": 527.6, "High": 537.2, "Low": 526.4, "Close": 531.0, "Volume": 1758650 }, + { "Date": "2015-01-09", "Open": 528.0, "High": 532.0, "Low": 526.0, "Close": 527.8, "Volume": 1264276 }, + { "Date": "2015-01-10", "Open": 529.3, "High": 537.7, "Low": 526.9, "Close": 536.9, "Volume": 1745076 }, + { "Date": "2015-01-11", "Open": 535.3, "High": 538.5, "Low": 533.4, "Close": 536.0, "Volume": 1373970 }, + { "Date": "2015-01-12", "Open": 537.3, "High": 544.8, "Low": 534.7, "Close": 542.9, "Volume": 1615824 }, + { "Date": "2015-01-13", "Open": 543.4, "High": 549.9, "Low": 543.1, "Close": 549.0, "Volume": 1895126 }, + { "Date": "2015-01-17", "Open": 546.8, "High": 550.0, "Low": 541.1, "Close": 542.8, "Volume": 1612439 }, + { "Date": "2015-01-18", "Open": 541.4, "High": 545.5, "Low": 537.5, "Close": 539.7, "Volume": 1449089 }, + { "Date": "2015-01-19", "Open": 538.0, "High": 543.1, "Low": 538.0, "Close": 542.9, "Volume": 987478 }, + { "Date": "2015-01-20", "Open": 543.1, "High": 543.8, "Low": 535.8, "Close": 539.0, "Volume": 1441212 }, + { "Date": "2015-01-23", "Open": 536.0, "High": 536.4, "Low": 529.4, "Close": 531.9, "Volume": 1453907 }, + { "Date": "2015-01-24", "Open": 530.0, "High": 536.8, "Low": 528.3, "Close": 536.1, "Volume": 1002393 }, + { "Date": "2015-01-25", "Open": 535.9, "High": 546.2, "Low": 535.4, "Close": 543.9, "Volume": 1821041 }, + { "Date": "2015-01-26", "Open": 543.2, "High": 556.1, "Low": 541.5, "Close": 555.5, "Volume": 2305219 }, + { "Date": "2015-01-27", "Open": 554.2, "High": 564.7, "Low": 552.9, "Close": 558.4, "Volume": 2403553 }, + { "Date": "2015-02-02", "Open": 560.5, "High": 572.1, "Low": 558.8, "Close": 571.3, "Volume": 2123796 }, + { "Date": "2015-02-03", "Open": 570.5, "High": 575.4, "Low": 566.5, "Close": 573.6, "Volume": 1700084 }, + { "Date": "2015-02-04", "Open": 571.9, "High": 577.1, "Low": 568.0, "Close": 573.4, "Volume": 1871694 }, + { "Date": "2015-02-05", "Open": 575.0, "High": 577.9, "Low": 573.4, "Close": 575.3, "Volume": 1385818 }, + { "Date": "2015-02-06", "Open": 574.9, "High": 576.7, "Low": 566.8, "Close": 567.7, "Volume": 1654561 }, + { "Date": "2015-02-09", "Open": 566.9, "High": 570.3, "Low": 563.5, "Close": 568.9, "Volume": 1059336 }, + { "Date": "2015-02-10", "Open": 564.3, "High": 564.9, "Low": 554.7, "Close": 555.0, "Volume": 1787357 }, + { "Date": "2015-02-11", "Open": 555.1, "High": 558.1, "Low": 550.7, "Close": 551.2, "Volume": 1815763 }, + { "Date": "2015-02-12", "Open": 553.5, "High": 556.4, "Low": 550.5, "Close": 555.5, "Volume": 1385772 }, + { "Date": "2015-02-13", "Open": 553.5, "High": 558.4, "Low": 544.2, "Close": 547.3, "Volume": 1698872 }, + { "Date": "2015-02-16", "Open": 551.0, "High": 556.9, "Low": 546.0, "Close": 554.5, "Volume": 1636493 }, + { "Date": "2015-02-17", "Open": 551.7, "High": 553.8, "Low": 548.0, "Close": 550.8, "Volume": 1800570 }, + { "Date": "2015-02-18", "Open": 552.5, "High": 559.8, "Low": 547.0, "Close": 559.5, "Volume": 2128714 }, + { "Date": "2015-02-19", "Open": 559.4, "High": 560.8, "Low": 556.1, "Close": 558.0, "Volume": 1194049 }, + { "Date": "2015-02-20", "Open": 561.6, "High": 561.7, "Low": 559.0, "Close": 560.4, "Volume": 2609690 }, + { "Date": "2015-02-23", "Open": 560.4, "High": 562.4, "Low": 555.8, "Close": 558.8, "Volume": 1639306 }, + { "Date": "2015-02-24", "Open": 562.6, "High": 574.6, "Low": 561.2, "Close": 570.2, "Volume": 2576234 }, + { "Date": "2015-02-25", "Open": 570.5, "High": 572.3, "Low": 558.7, "Close": 558.8, "Volume": 2146384 }, + { "Date": "2015-02-26", "Open": 557.6, "High": 558.9, "Low": 550.6, "Close": 555.2, "Volume": 1568331 }, + { "Date": "2015-02-27", "Open": 553.0, "High": 555.3, "Low": 548.1, "Close": 548.3, "Volume": 1892323 }, + { "Date": "2015-02-30", "Open": 551.6, "High": 553.5, "Low": 548.2, "Close": 552.0, "Volume": 1283958 }, + { "Date": "2015-02-31", "Open": 550.0, "High": 554.7, "Low": 546.7, "Close": 548.0, "Volume": 1583677 }, + { "Date": "2015-03-01", "Open": 548.6, "High": 551.1, "Low": 539.5, "Close": 542.6, "Volume": 1957718 }, + { "Date": "2015-03-02", "Open": 540.9, "High": 540.9, "Low": 533.9, "Close": 535.5, "Volume": 1711737 }, + { "Date": "2015-03-06", "Open": 532.2, "High": 538.4, "Low": 529.6, "Close": 536.8, "Volume": 1320767 }, + { "Date": "2015-03-07", "Open": 538.1, "High": 542.7, "Low": 536.0, "Close": 537.0, "Volume": 1299298 }, + { "Date": "2015-03-08", "Open": 538.4, "High": 543.9, "Low": 538.4, "Close": 541.6, "Volume": 1175332 }, + { "Date": "2015-03-09", "Open": 541.0, "High": 542.0, "Low": 535.5, "Close": 540.8, "Volume": 1553586 }, + { "Date": "2015-03-10", "Open": 542.3, "High": 542.3, "Low": 537.3, "Close": 540.0, "Volume": 1405574 }, + { "Date": "2015-03-13", "Open": 538.4, "High": 544.1, "Low": 537.3, "Close": 539.2, "Volume": 1640809 }, + { "Date": "2015-03-14", "Open": 536.3, "High": 537.6, "Low": 528.1, "Close": 530.4, "Volume": 2597043 }, + { "Date": "2015-03-15", "Open": 528.7, "High": 534.7, "Low": 523.2, "Close": 532.5, "Volume": 2312512 }, + { "Date": "2015-03-16", "Open": 529.9, "High": 535.6, "Low": 529.6, "Close": 533.8, "Volume": 1296304 }, + { "Date": "2015-03-17", "Open": 528.7, "High": 529.8, "Low": 521.0, "Close": 524.0, "Volume": 2145955 }, + { "Date": "2015-03-20", "Open": 525.6, "High": 536.1, "Low": 524.5, "Close": 535.4, "Volume": 1675487 }, + { "Date": "2015-03-21", "Open": 537.5, "High": 539.4, "Low": 533.7, "Close": 534.0, "Volume": 1839668 }, + { "Date": "2015-03-22", "Open": 534.4, "High": 541.1, "Low": 531.8, "Close": 539.4, "Volume": 1589248 }, + { "Date": "2015-03-23", "Open": 541.0, "High": 551.0, "Low": 540.2, "Close": 547.0, "Volume": 4173376 }, + { "Date": "2015-03-24", "Open": 566.1, "High": 571.1, "Low": 557.3, "Close": 565.1, "Volume": 4919031 }, + { "Date": "2015-03-27", "Open": 563.4, "High": 566.0, "Low": 553.2, "Close": 555.4, "Volume": 2398039 }, + { "Date": "2015-03-28", "Open": 554.6, "High": 556.0, "Low": 550.4, "Close": 553.7, "Volume": 1490983 }, + { "Date": "2015-03-29", "Open": 550.5, "High": 553.7, "Low": 546.9, "Close": 549.1, "Volume": 1698761 }, + { "Date": "2015-03-30", "Open": 547.9, "High": 548.6, "Low": 535.0, "Close": 537.3, "Volume": 2082214 }, + { "Date": "2015-04-01", "Open": 538.4, "High": 539.5, "Low": 532.1, "Close": 537.9, "Volume": 1768181 }, + { "Date": "2015-04-04", "Open": 538.5, "High": 544.1, "Low": 535.1, "Close": 540.8, "Volume": 1307960 }, + { "Date": "2015-04-05", "Open": 538.2, "High": 539.7, "Low": 530.4, "Close": 530.8, "Volume": 1383068 }, + { "Date": "2015-04-06", "Open": 531.2, "High": 532.4, "Low": 521.1, "Close": 524.2, "Volume": 1566987 }, + { "Date": "2015-04-07", "Open": 524.0, "High": 533.5, "Low": 521.8, "Close": 530.7, "Volume": 1546278 }, + { "Date": "2015-04-08", "Open": 536.6, "High": 541.1, "Low": 536.0, "Close": 538.2, "Volume": 1527615 }, + { "Date": "2015-04-11", "Open": 538.4, "High": 542.0, "Low": 535.4, "Close": 535.7, "Volume": 905285 }, + { "Date": "2015-04-12", "Open": 531.6, "High": 533.2, "Low": 525.3, "Close": 529.0, "Volume": 1634174 }, + { "Date": "2015-04-13", "Open": 530.6, "High": 534.3, "Low": 528.7, "Close": 529.6, "Volume": 1253063 }, + { "Date": "2015-04-14", "Open": 533.8, "High": 539.0, "Low": 532.4, "Close": 538.4, "Volume": 1403935 }, + { "Date": "2015-04-15", "Open": 539.2, "High": 539.3, "Low": 530.4, "Close": 533.9, "Volume": 1971343 }, + { "Date": "2015-04-18", "Open": 532.0, "High": 534.8, "Low": 528.9, "Close": 532.3, "Volume": 2003421 }, + { "Date": "2015-04-19", "Open": 534.0, "High": 540.7, "Low": 533.0, "Close": 537.4, "Volume": 1966947 }, + { "Date": "2015-04-20", "Open": 538.5, "High": 542.9, "Low": 533.0, "Close": 539.3, "Volume": 1430826 }, + { "Date": "2015-04-21", "Open": 538.0, "High": 543.8, "Low": 536.0, "Close": 542.5, "Volume": 1462695 }, + { "Date": "2015-04-22", "Open": 540.1, "High": 544.2, "Low": 539.5, "Close": 540.1, "Volume": 1176214 }, + { "Date": "2015-04-26", "Open": 538.1, "High": 539.0, "Low": 529.9, "Close": 532.3, "Volume": 2406512 }, + { "Date": "2015-04-27", "Open": 532.8, "High": 540.5, "Low": 531.7, "Close": 539.8, "Volume": 1525019 }, + { "Date": "2015-04-28", "Open": 538.0, "High": 540.6, "Low": 536.3, "Close": 539.8, "Volume": 1029849 }, + { "Date": "2015-04-29", "Open": 537.4, "High": 538.6, "Low": 531.5, "Close": 532.1, "Volume": 2597407 }, + { "Date": "2015-05-01", "Open": 536.8, "High": 536.8, "Low": 529.8, "Close": 534.0, "Volume": 1904332 }, + { "Date": "2015-05-02", "Open": 532.9, "High": 543.0, "Low": 531.3, "Close": 539.2, "Volume": 1938989 }, + { "Date": "2015-05-03", "Open": 539.9, "High": 543.5, "Low": 537.1, "Close": 540.3, "Volume": 1717036 }, + { "Date": "2015-05-04", "Open": 537.8, "High": 540.6, "Low": 534.3, "Close": 536.7, "Volume": 1348337 }, + { "Date": "2015-05-05", "Open": 536.4, "High": 537.2, "Low": 532.5, "Close": 533.3, "Volume": 1388220 }, + { "Date": "2015-05-08", "Open": 533.3, "High": 534.1, "Low": 526.2, "Close": 526.8, "Volume": 1524139 }, + { "Date": "2015-05-09", "Open": 527.6, "High": 529.2, "Low": 523.0, "Close": 526.7, "Volume": 1455266 }, + { "Date": "2015-05-10", "Open": 529.4, "High": 538.4, "Low": 529.4, "Close": 536.7, "Volume": 1814958 }, + { "Date": "2015-05-11", "Open": 538.4, "High": 539.0, "Low": 533.0, "Close": 534.6, "Volume": 1217536 }, + { "Date": "2015-05-12", "Open": 531.6, "High": 533.1, "Low": 530.2, "Close": 532.3, "Volume": 955789 }, + { "Date": "2015-05-15", "Open": 528.0, "High": 528.3, "Low": 524.0, "Close": 527.2, "Volume": 1632702 }, + { "Date": "2015-05-16", "Open": 528.4, "High": 529.6, "Low": 525.6, "Close": 528.1, "Volume": 1071814 }, + { "Date": "2015-05-17", "Open": 529.4, "High": 531.0, "Low": 525.1, "Close": 529.3, "Volume": 1294216 }, + { "Date": "2015-05-18", "Open": 531.0, "High": 538.1, "Low": 530.8, "Close": 536.7, "Volume": 1833109 }, + { "Date": "2015-05-19", "Open": 537.2, "High": 538.3, "Low": 533.0, "Close": 536.7, "Volume": 1893497 }, + { "Date": "2015-05-22", "Open": 539.6, "High": 543.7, "Low": 537.5, "Close": 538.2, "Volume": 1250282 }, + { "Date": "2015-05-23", "Open": 539.6, "High": 541.5, "Low": 535.3, "Close": 540.5, "Volume": 1197450 }, + { "Date": "2015-05-24", "Open": 540.0, "High": 540.0, "Low": 535.7, "Close": 537.8, "Volume": 1286608 }, + { "Date": "2015-05-25", "Open": 538.9, "High": 540.9, "Low": 535.2, "Close": 535.2, "Volume": 1335697 }, + { "Date": "2015-05-26", "Open": 537.3, "High": 537.8, "Low": 531.4, "Close": 531.7, "Volume": 2109130 }, + { "Date": "2015-05-29", "Open": 525.0, "High": 528.6, "Low": 520.5, "Close": 521.5, "Volume": 1937821 }, + { "Date": "2015-05-30", "Open": 526.0, "High": 526.3, "Low": 520.5, "Close": 520.5, "Volume": 2235595 }, + { "Date": "2015-06-01", "Open": 524.7, "High": 525.7, "Low": 518.2, "Close": 521.8, "Volume": 1961354 }, + { "Date": "2015-06-02", "Open": 521.1, "High": 524.6, "Low": 521.1, "Close": 523.4, "Volume": 1235903 }, + { "Date": "2015-06-06", "Open": 519.5, "High": 525.3, "Low": 519.0, "Close": 522.9, "Volume": 1280525 }, + { "Date": "2015-06-07", "Open": 523.1, "High": 526.2, "Low": 515.2, "Close": 525.0, "Volume": 1597229 }, + { "Date": "2015-06-08", "Open": 521.0, "High": 522.7, "Low": 516.1, "Close": 516.8, "Volume": 1296699 }, + { "Date": "2015-06-09", "Open": 523.1, "High": 523.8, "Low": 520.4, "Close": 520.7, "Volume": 1842347 }, + { "Date": "2015-06-10", "Open": 526.3, "High": 532.6, "Low": 525.5, "Close": 530.1, "Volume": 1956682 }, + { "Date": "2015-06-13", "Open": 532.9, "High": 547.1, "Low": 532.4, "Close": 546.5, "Volume": 2206475 }, + { "Date": "2015-06-14", "Open": 546.8, "High": 565.9, "Low": 546.7, "Close": 561.1, "Volume": 3244066 }, + { "Date": "2015-06-15", "Open": 560.1, "High": 566.5, "Low": 556.8, "Close": 560.2, "Volume": 1784554 }, + { "Date": "2015-06-16", "Open": 565.1, "High": 580.7, "Low": 565.0, "Close": 579.9, "Volume": 4768318 }, + { "Date": "2015-06-17", "Open": 649.0, "High": 674.5, "Low": 645.0, "Close": 672.9, "Volume": 11164943 }, + { "Date": "2015-06-20", "Open": 659.2, "High": 668.9, "Low": 653.0, "Close": 663.0, "Volume": 5860872 }, + { "Date": "2015-06-21", "Open": 655.2, "High": 673.0, "Low": 654.3, "Close": 662.3, "Volume": 3377196 }, + { "Date": "2015-06-22", "Open": 660.9, "High": 678.6, "Low": 659.0, "Close": 662.1, "Volume": 3929309 }, + { "Date": "2015-06-23", "Open": 661.3, "High": 663.6, "Low": 641.0, "Close": 644.3, "Volume": 3029109 }, + { "Date": "2015-06-24", "Open": 647.0, "High": 648.2, "Low": 622.5, "Close": 623.6, "Volume": 3625747 }, + { "Date": "2015-06-27", "Open": 621.0, "High": 634.3, "Low": 620.5, "Close": 627.3, "Volume": 2675381 }, + { "Date": "2015-06-28", "Open": 632.8, "High": 632.8, "Low": 623.3, "Close": 628.0, "Volume": 1727327 }, + { "Date": "2015-06-29", "Open": 628.8, "High": 633.4, "Low": 622.6, "Close": 631.9, "Volume": 1575069 }, + { "Date": "2015-06-30", "Open": 630.0, "High": 635.2, "Low": 622.0, "Close": 632.6, "Volume": 1474203 }, + { "Date": "2015-06-31", "Open": 631.4, "High": 632.9, "Low": 625.5, "Close": 625.6, "Volume": 1706149 }, + { "Date": "2015-07-03", "Open": 625.3, "High": 633.1, "Low": 625.3, "Close": 631.2, "Volume": 1304511 }, + { "Date": "2015-07-04", "Open": 628.4, "High": 634.8, "Low": 627.2, "Close": 629.3, "Volume": 1490881 }, + { "Date": "2015-07-05", "Open": 634.3, "High": 647.9, "Low": 633.2, "Close": 643.8, "Volume": 2334266 }, + { "Date": "2015-07-06", "Open": 645.0, "High": 645.4, "Low": 632.3, "Close": 642.7, "Volume": 1572600 }, + { "Date": "2015-07-07", "Open": 640.2, "High": 642.7, "Low": 629.7, "Close": 635.3, "Volume": 1403865 }, + { "Date": "2015-07-10", "Open": 639.5, "High": 643.4, "Low": 631.3, "Close": 633.7, "Volume": 1809205 }, + { "Date": "2015-07-11", "Open": 669.2, "High": 674.9, "Low": 654.3, "Close": 660.8, "Volume": 5029203 }, + { "Date": "2015-07-12", "Open": 663.1, "High": 665.0, "Low": 652.3, "Close": 659.6, "Volume": 2940803 }, + { "Date": "2015-07-13", "Open": 659.3, "High": 664.5, "Low": 651.7, "Close": 656.5, "Volume": 1810749 }, + { "Date": "2015-07-14", "Open": 655.0, "High": 659.9, "Low": 652.7, "Close": 657.1, "Volume": 1072061 }, + { "Date": "2015-07-17", "Open": 656.8, "High": 661.4, "Low": 651.2, "Close": 660.9, "Volume": 1051699 }, + { "Date": "2015-07-18", "Open": 661.9, "High": 664.0, "Low": 653.5, "Close": 656.1, "Volume": 1456059 }, + { "Date": "2015-07-19", "Open": 656.6, "High": 667.0, "Low": 654.2, "Close": 660.9, "Volume": 2134098 }, + { "Date": "2015-07-20", "Open": 655.5, "High": 663.0, "Low": 642.9, "Close": 646.8, "Volume": 2855299 }, + { "Date": "2015-07-21", "Open": 639.8, "High": 640.0, "Low": 612.3, "Close": 612.5, "Volume": 4265183 }, + { "Date": "2015-07-24", "Open": 573.0, "High": 614.0, "Low": 565.0, "Close": 589.6, "Volume": 5770302 }, + { "Date": "2015-07-25", "Open": 614.9, "High": 617.5, "Low": 581.1, "Close": 582.1, "Volume": 3537966 }, + { "Date": "2015-07-26", "Open": 610.4, "High": 631.7, "Low": 599.0, "Close": 628.6, "Volume": 4235891 }, + { "Date": "2015-07-27", "Open": 639.4, "High": 643.6, "Low": 622.0, "Close": 637.6, "Volume": 3491336 }, + { "Date": "2015-07-28", "Open": 632.8, "High": 636.9, "Low": 624.6, "Close": 630.4, "Volume": 1978733 }, + { "Date": "2015-07-31", "Open": 627.5, "High": 635.8, "Low": 617.7, "Close": 618.3, "Volume": 2176737 }, + { "Date": "2015-08-01", "Open": 602.4, "High": 612.9, "Low": 594.1, "Close": 597.8, "Volume": 3702105 }, + { "Date": "2015-08-02", "Open": 605.6, "High": 614.3, "Low": 599.7, "Close": 614.3, "Volume": 2575620 }, + { "Date": "2015-08-03", "Open": 617.0, "High": 619.7, "Low": 602.8, "Close": 606.3, "Volume": 1759572 }, + { "Date": "2015-08-04", "Open": 600.0, "High": 603.5, "Low": 595.3, "Close": 600.7, "Volume": 2089453 }, + { "Date": "2015-08-08", "Open": 612.5, "High": 616.3, "Low": 604.1, "Close": 614.7, "Volume": 2279538 }, + { "Date": "2015-08-09", "Open": 621.2, "High": 626.5, "Low": 609.6, "Close": 612.7, "Volume": 1702094 }, + { "Date": "2015-08-10", "Open": 613.1, "High": 624.2, "Low": 611.4, "Close": 621.4, "Volume": 1900526 }, + { "Date": "2015-08-11", "Open": 619.8, "High": 625.8, "Low": 617.4, "Close": 625.8, "Volume": 1373545 }, + { "Date": "2015-08-14", "Open": 625.7, "High": 625.9, "Low": 619.4, "Close": 623.2, "Volume": 1702271 }, + { "Date": "2015-08-15", "Open": 626.7, "High": 638.7, "Low": 623.8, "Close": 635.1, "Volume": 2084397 }, + { "Date": "2015-08-16", "Open": 635.5, "High": 638.0, "Low": 632.3, "Close": 636.0, "Volume": 1286454 }, + { "Date": "2015-08-17", "Open": 637.8, "High": 650.9, "Low": 635.0, "Close": 642.9, "Volume": 2274690 }, + { "Date": "2015-08-18", "Open": 636.8, "High": 640.0, "Low": 627.0, "Close": 629.3, "Volume": 5133386 }, + { "Date": "2015-08-21", "Open": 634.4, "High": 636.5, "Low": 625.9, "Close": 635.4, "Volume": 1788506 }, + { "Date": "2015-08-22", "Open": 627.0, "High": 627.5, "Low": 615.4, "Close": 622.7, "Volume": 2562869 }, + { "Date": "2015-08-23", "Open": 622.0, "High": 628.9, "Low": 620.0, "Close": 622.4, "Volume": 1470949 }, + { "Date": "2015-08-24", "Open": 616.6, "High": 627.3, "Low": 612.4, "Close": 625.8, "Volume": 2240098 }, + { "Date": "2015-08-25", "Open": 629.8, "High": 629.8, "Low": 611.0, "Close": 612.0, "Volume": 2174009 }, + { "Date": "2015-08-28", "Open": 610.3, "High": 614.6, "Low": 589.4, "Close": 594.9, "Volume": 3127667 }, + { "Date": "2015-08-29", "Open": 597.3, "High": 605.0, "Low": 590.2, "Close": 595.0, "Volume": 2310284 }, + { "Date": "2015-08-30", "Open": 603.3, "High": 608.8, "Low": 600.7, "Close": 608.4, "Volume": 2413441 }, + { "Date": "2015-09-01", "Open": 608.4, "High": 612.1, "Low": 599.9, "Close": 611.3, "Volume": 1867601 }, + { "Date": "2015-09-02", "Open": 607.2, "High": 627.3, "Low": 603.1, "Close": 626.9, "Volume": 2684805 }, + { "Date": "2015-09-05", "Open": 632.0, "High": 643.0, "Low": 627.0, "Close": 641.5, "Volume": 1787880 }, + { "Date": "2015-09-06", "Open": 638.8, "High": 649.3, "Low": 636.5, "Close": 645.4, "Volume": 2166264 }, + { "Date": "2015-09-07", "Open": 649.2, "High": 650.6, "Low": 632.1, "Close": 642.4, "Volume": 2089776 }, + { "Date": "2015-09-08", "Open": 641.4, "High": 644.5, "Low": 625.6, "Close": 639.2, "Volume": 2180441 }, + { "Date": "2015-09-09", "Open": 640.0, "High": 646.0, "Low": 635.3, "Close": 643.6, "Volume": 1645844 }, + { "Date": "2015-09-12", "Open": 642.1, "High": 648.5, "Low": 639.0, "Close": 646.7, "Volume": 1275206 }, + { "Date": "2015-09-13", "Open": 643.1, "High": 657.8, "Low": 643.1, "Close": 652.3, "Volume": 1790704 }, + { "Date": "2015-09-14", "Open": 653.2, "High": 659.4, "Low": 648.9, "Close": 651.2, "Volume": 1412040 }, + { "Date": "2015-09-15", "Open": 654.7, "High": 663.1, "Low": 654.5, "Close": 661.7, "Volume": 1830524 }, + { "Date": "2015-09-16", "Open": 664.1, "High": 665.0, "Low": 657.2, "Close": 662.2, "Volume": 1606138 }, + { "Date": "2015-09-19", "Open": 661.2, "High": 666.8, "Low": 659.6, "Close": 666.1, "Volume": 1465339 }, + { "Date": "2015-09-20", "Open": 664.0, "High": 664.7, "Low": 644.2, "Close": 650.3, "Volume": 2490016 }, + { "Date": "2015-09-21", "Open": 654.1, "High": 655.9, "Low": 641.7, "Close": 642.6, "Volume": 1791099 }, + { "Date": "2015-09-22", "Open": 646.7, "High": 657.8, "Low": 644.0, "Close": 651.8, "Volume": 3782103 }, + { "Date": "2015-09-23", "Open": 727.5, "High": 730.0, "Low": 701.5, "Close": 702.0, "Volume": 6642504 }, + { "Date": "2015-09-26", "Open": 701.5, "High": 719.1, "Low": 701.3, "Close": 712.8, "Volume": 2701629 }, + { "Date": "2015-09-27", "Open": 707.4, "High": 713.6, "Low": 704.5, "Close": 708.5, "Volume": 2224309 }, + { "Date": "2015-09-28", "Open": 707.3, "High": 713.0, "Low": 703.1, "Close": 713.0, "Volume": 2176623 }, + { "Date": "2015-09-29", "Open": 710.5, "High": 718.3, "Low": 710.0, "Close": 716.9, "Volume": 1454128 }, + { "Date": "2015-09-30", "Open": 715.7, "High": 718.0, "Low": 710.0, "Close": 710.8, "Volume": 1903980 }, + { "Date": "2015-10-02", "Open": 711.1, "High": 721.6, "Low": 705.9, "Close": 721.1, "Volume": 1871073 }, + { "Date": "2015-10-03", "Open": 718.9, "High": 724.6, "Low": 714.7, "Close": 722.2, "Volume": 1560770 }, + { "Date": "2015-10-04", "Open": 722.0, "High": 733.1, "Low": 721.9, "Close": 728.1, "Volume": 1704575 }, + { "Date": "2015-10-05", "Open": 729.5, "High": 739.5, "Low": 729.5, "Close": 731.3, "Volume": 1860367 }, + { "Date": "2015-10-06", "Open": 731.5, "High": 735.4, "Low": 727.0, "Close": 733.8, "Volume": 1509656 }, + { "Date": "2015-10-09", "Open": 730.2, "High": 734.7, "Low": 719.4, "Close": 724.9, "Volume": 2065619 }, + { "Date": "2015-10-10", "Open": 724.4, "High": 730.6, "Low": 718.5, "Close": 728.3, "Volume": 1603937 }, + { "Date": "2015-10-11", "Open": 732.5, "High": 741.0, "Low": 730.2, "Close": 735.4, "Volume": 1366375 }, + { "Date": "2015-10-12", "Open": 731.0, "High": 737.8, "Low": 728.6, "Close": 731.2, "Volume": 1668048 }, + { "Date": "2015-10-13", "Open": 729.2, "High": 731.1, "Low": 716.7, "Close": 717.0, "Volume": 2062982 }, + { "Date": "2015-10-16", "Open": 715.6, "High": 729.5, "Low": 711.3, "Close": 729.0, "Volume": 1891074 }, + { "Date": "2015-10-17", "Open": 729.3, "High": 731.8, "Low": 723.0, "Close": 725.3, "Volume": 1491709 }, + { "Date": "2015-10-18", "Open": 727.6, "High": 741.4, "Low": 727.0, "Close": 740.0, "Volume": 1671588 }, + { "Date": "2015-10-19", "Open": 738.7, "High": 742.0, "Low": 737.4, "Close": 738.4, "Volume": 1327109 }, + { "Date": "2015-10-20", "Open": 746.5, "High": 757.9, "Low": 743.0, "Close": 756.6, "Volume": 2212302 }, + { "Date": "2015-10-23", "Open": 757.5, "High": 762.7, "Low": 751.8, "Close": 756.0, "Volume": 1414487 }, + { "Date": "2015-10-24", "Open": 752.0, "High": 755.3, "Low": 737.6, "Close": 748.3, "Volume": 2333130 }, + { "Date": "2015-10-25", "Open": 748.1, "High": 752.0, "Low": 746.1, "Close": 748.1, "Volume": 1122224 }, + { "Date": "2015-10-27", "Open": 748.5, "High": 753.4, "Low": 747.5, "Close": 750.3, "Volume": 838518 }, + { "Date": "2015-10-30", "Open": 748.8, "High": 754.9, "Low": 741.3, "Close": 742.6, "Volume": 2035261 }, + { "Date": "2015-11-01", "Open": 747.1, "High": 769.0, "Low": 746.7, "Close": 767.0, "Volume": 2129940 }, + { "Date": "2015-11-02", "Open": 768.9, "High": 776.0, "Low": 759.0, "Close": 762.4, "Volume": 2195686 }, + { "Date": "2015-11-03", "Open": 766.0, "High": 769.0, "Low": 745.6, "Close": 752.5, "Volume": 2590641 }, + { "Date": "2015-11-04", "Open": 753.1, "High": 768.5, "Low": 750.0, "Close": 766.8, "Volume": 2757283 }, + { "Date": "2015-11-07", "Open": 767.8, "High": 768.7, "Low": 755.1, "Close": 763.3, "Volume": 1812314 }, + { "Date": "2015-11-08", "Open": 757.9, "High": 764.8, "Low": 754.2, "Close": 762.4, "Volume": 1829475 }, + { "Date": "2015-11-09", "Open": 759.2, "High": 764.2, "Low": 737.0, "Close": 751.6, "Volume": 2699990 }, + { "Date": "2015-11-10", "Open": 752.9, "High": 755.9, "Low": 743.8, "Close": 749.5, "Volume": 1988380 }, + { "Date": "2015-11-11", "Open": 741.2, "High": 745.7, "Low": 736.8, "Close": 738.9, "Volume": 2224410 }, + { "Date": "2015-11-14", "Open": 741.8, "High": 748.7, "Low": 724.2, "Close": 747.8, "Volume": 2412497 }, + { "Date": "2015-11-15", "Open": 753.0, "High": 758.1, "Low": 743.0, "Close": 743.4, "Volume": 2666229 }, + { "Date": "2015-11-16", "Open": 750.0, "High": 760.6, "Low": 739.4, "Close": 758.1, "Volume": 1993251 }, + { "Date": "2015-11-17", "Open": 762.4, "High": 762.7, "Low": 749.0, "Close": 749.4, "Volume": 1553418 }, + { "Date": "2015-11-18", "Open": 746.5, "High": 754.1, "Low": 738.1, "Close": 739.3, "Volume": 3148743 }, + { "Date": "2015-11-21", "Open": 746.1, "High": 750.0, "Low": 740.0, "Close": 747.8, "Volume": 1525703 }, + { "Date": "2015-11-22", "Open": 751.6, "High": 754.9, "Low": 745.5, "Close": 750.0, "Volume": 1365520 }, + { "Date": "2015-11-23", "Open": 753.5, "High": 754.2, "Low": 744.0, "Close": 750.3, "Volume": 1566726 }, + { "Date": "2015-11-24", "Open": 749.5, "High": 751.4, "Low": 746.6, "Close": 748.4, "Volume": 527223 }, + { "Date": "2015-11-28", "Open": 752.9, "High": 763.0, "Low": 749.5, "Close": 762.5, "Volume": 1515716 }, + { "Date": "2015-11-29", "Open": 766.7, "High": 780.0, "Low": 766.4, "Close": 776.6, "Volume": 1765012 }, + { "Date": "2015-11-30", "Open": 776.6, "High": 777.6, "Low": 766.9, "Close": 771.0, "Volume": 1293521 }, + { "Date": "2015-11-31", "Open": 769.5, "High": 769.5, "Low": 758.3, "Close": 758.9, "Volume": 1500923 }, + { "Date": "2016-00-04", "Open": 743.0, "High": 744.1, "Low": 731.3, "Close": 741.8, "Volume": 3258199 }, + { "Date": "2016-00-05", "Open": 746.5, "High": 752.0, "Low": 738.6, "Close": 742.6, "Volume": 1950691 }, + { "Date": "2016-00-06", "Open": 730.0, "High": 747.2, "Low": 728.9, "Close": 743.6, "Volume": 1947034 }, + { "Date": "2016-00-07", "Open": 730.3, "High": 738.5, "Low": 719.1, "Close": 726.4, "Volume": 2963741 }, + { "Date": "2016-00-08", "Open": 731.5, "High": 733.2, "Low": 713.0, "Close": 714.5, "Volume": 2450857 }, + { "Date": "2016-00-11", "Open": 716.6, "High": 718.9, "Low": 703.5, "Close": 716.0, "Volume": 2090621 }, + { "Date": "2016-00-12", "Open": 721.7, "High": 728.8, "Low": 717.3, "Close": 726.1, "Volume": 2024509 }, + { "Date": "2016-00-13", "Open": 730.9, "High": 734.7, "Low": 698.6, "Close": 700.6, "Volume": 2468295 }, + { "Date": "2016-00-14", "Open": 705.4, "High": 721.9, "Low": 689.1, "Close": 714.7, "Volume": 2211853 }, + { "Date": "2016-00-15", "Open": 692.3, "High": 706.7, "Low": 685.4, "Close": 694.5, "Volume": 3592449 }, + { "Date": "2016-00-19", "Open": 703.3, "High": 710.0, "Low": 693.4, "Close": 701.8, "Volume": 2258479 }, + { "Date": "2016-00-20", "Open": 688.6, "High": 706.9, "Low": 673.3, "Close": 698.5, "Volume": 3439386 }, + { "Date": "2016-00-21", "Open": 702.2, "High": 719.2, "Low": 694.5, "Close": 706.6, "Volume": 2410263 }, + { "Date": "2016-00-22", "Open": 723.6, "High": 728.1, "Low": 720.1, "Close": 725.3, "Volume": 2006528 }, + { "Date": "2016-00-25", "Open": 723.6, "High": 729.7, "Low": 710.0, "Close": 711.7, "Volume": 1704641 }, + { "Date": "2016-00-26", "Open": 713.9, "High": 718.3, "Low": 706.5, "Close": 713.0, "Volume": 1324300 }, + { "Date": "2016-00-27", "Open": 713.7, "High": 718.2, "Low": 694.4, "Close": 700.0, "Volume": 2139970 }, + { "Date": "2016-00-28", "Open": 722.2, "High": 733.7, "Low": 712.4, "Close": 731.0, "Volume": 2658016 }, + { "Date": "2016-00-29", "Open": 731.5, "High": 745.0, "Low": 726.8, "Close": 743.0, "Volume": 3394935 }, + { "Date": "2016-01-01", "Open": 750.5, "High": 757.9, "Low": 743.3, "Close": 752.0, "Volume": 4801816 }, + { "Date": "2016-01-02", "Open": 784.5, "High": 789.9, "Low": 764.6, "Close": 764.6, "Volume": 6332431 }, + { "Date": "2016-01-03", "Open": 770.2, "High": 774.5, "Low": 720.5, "Close": 727.0, "Volume": 6162333 }, + { "Date": "2016-01-04", "Open": 722.8, "High": 727.0, "Low": 701.9, "Close": 708.0, "Volume": 5145855 }, + { "Date": "2016-01-05", "Open": 703.9, "High": 704.0, "Low": 680.1, "Close": 683.6, "Volume": 5069985 }, + { "Date": "2016-01-08", "Open": 667.9, "High": 684.0, "Low": 663.1, "Close": 682.7, "Volume": 4212541 }, + { "Date": "2016-01-09", "Open": 672.3, "High": 699.9, "Low": 668.8, "Close": 678.1, "Volume": 3604335 }, + { "Date": "2016-01-10", "Open": 686.9, "High": 701.3, "Low": 682.1, "Close": 684.1, "Volume": 2627379 }, + { "Date": "2016-01-11", "Open": 675.0, "High": 689.4, "Low": 668.9, "Close": 683.1, "Volume": 3007223 }, + { "Date": "2016-01-12", "Open": 690.3, "High": 693.8, "Low": 678.6, "Close": 682.4, "Volume": 2129831 }, + { "Date": "2016-01-16", "Open": 693.0, "High": 698.0, "Low": 685.0, "Close": 691.0, "Volume": 2497024 }, + { "Date": "2016-01-17", "Open": 699.0, "High": 709.8, "Low": 691.4, "Close": 708.4, "Volume": 2466808 }, + { "Date": "2016-01-18", "Open": 710.0, "High": 712.4, "Low": 696.0, "Close": 697.4, "Volume": 1859130 }, + { "Date": "2016-01-19", "Open": 695.0, "High": 703.1, "Low": 694.0, "Close": 700.9, "Volume": 1582260 }, + { "Date": "2016-01-22", "Open": 707.5, "High": 713.2, "Low": 702.5, "Close": 706.5, "Volume": 1946067 }, + { "Date": "2016-01-23", "Open": 701.5, "High": 708.4, "Low": 693.6, "Close": 695.9, "Volume": 1999699 }, + { "Date": "2016-01-24", "Open": 688.9, "High": 700.0, "Low": 680.8, "Close": 699.6, "Volume": 1958611 }, + { "Date": "2016-01-25", "Open": 700.0, "High": 706.0, "Low": 690.6, "Close": 705.8, "Volume": 1631855 }, + { "Date": "2016-01-26", "Open": 708.6, "High": 713.4, "Low": 700.9, "Close": 705.1, "Volume": 2239978 }, + { "Date": "2016-01-29", "Open": 700.3, "High": 710.9, "Low": 697.7, "Close": 697.8, "Volume": 2280280 }, + { "Date": "2016-02-01", "Open": 703.6, "High": 718.8, "Low": 699.8, "Close": 718.8, "Volume": 2147442 }, + { "Date": "2016-02-02", "Open": 719.0, "High": 720.0, "Low": 712.0, "Close": 718.9, "Volume": 1627753 }, + { "Date": "2016-02-03", "Open": 718.7, "High": 719.5, "Low": 706.0, "Close": 712.4, "Volume": 1956761 }, + { "Date": "2016-02-04", "Open": 715.0, "High": 716.5, "Low": 706.0, "Close": 710.9, "Volume": 1967873 }, + { "Date": "2016-02-07", "Open": 706.9, "High": 708.1, "Low": 686.9, "Close": 695.2, "Volume": 2985094 }, + { "Date": "2016-02-08", "Open": 688.6, "High": 703.8, "Low": 685.3, "Close": 694.0, "Volume": 2063357 }, + { "Date": "2016-02-09", "Open": 698.5, "High": 705.7, "Low": 694.0, "Close": 705.2, "Volume": 1418704 }, + { "Date": "2016-02-10", "Open": 708.1, "High": 716.4, "Low": 703.4, "Close": 712.8, "Volume": 2829412 }, + { "Date": "2016-02-11", "Open": 720.0, "High": 726.9, "Low": 717.1, "Close": 726.8, "Volume": 1963907 }, + { "Date": "2016-02-14", "Open": 726.8, "High": 735.5, "Low": 725.1, "Close": 730.5, "Volume": 1716910 }, + { "Date": "2016-02-15", "Open": 726.9, "High": 732.3, "Low": 724.8, "Close": 728.3, "Volume": 1720965 }, + { "Date": "2016-02-16", "Open": 726.4, "High": 737.5, "Low": 724.5, "Close": 736.1, "Volume": 1572329 }, + { "Date": "2016-02-17", "Open": 736.5, "High": 743.1, "Low": 736.0, "Close": 737.8, "Volume": 1856800 }, + { "Date": "2016-02-18", "Open": 741.9, "High": 742.0, "Low": 731.8, "Close": 737.6, "Volume": 2796376 }, + { "Date": "2016-02-21", "Open": 736.5, "High": 742.5, "Low": 733.5, "Close": 742.1, "Volume": 1831839 }, + { "Date": "2016-02-22", "Open": 737.5, "High": 745.0, "Low": 737.5, "Close": 740.8, "Volume": 1264396 }, + { "Date": "2016-02-23", "Open": 742.4, "High": 745.7, "Low": 736.1, "Close": 738.1, "Volume": 1421861 }, + { "Date": "2016-02-24", "Open": 732.0, "High": 737.8, "Low": 731.0, "Close": 735.3, "Volume": 1564782 }, + { "Date": "2016-02-28", "Open": 736.8, "High": 739.0, "Low": 732.5, "Close": 733.5, "Volume": 1299812 }, + { "Date": "2016-02-29", "Open": 734.6, "High": 747.3, "Low": 728.8, "Close": 744.8, "Volume": 1902128 }, + { "Date": "2016-02-30", "Open": 750.1, "High": 757.9, "Low": 748.7, "Close": 750.5, "Volume": 1780998 }, + { "Date": "2016-02-31", "Open": 749.3, "High": 750.9, "Low": 740.9, "Close": 745.0, "Volume": 1712375 }, + { "Date": "2016-03-01", "Open": 738.6, "High": 750.3, "Low": 737.0, "Close": 749.9, "Volume": 1574870 }, + { "Date": "2016-03-04", "Open": 750.1, "High": 752.8, "Low": 742.4, "Close": 745.3, "Volume": 1131843 }, + { "Date": "2016-03-05", "Open": 738.0, "High": 742.8, "Low": 735.4, "Close": 737.8, "Volume": 1129829 }, + { "Date": "2016-03-06", "Open": 735.8, "High": 746.2, "Low": 735.6, "Close": 745.7, "Volume": 1050193 }, + { "Date": "2016-03-07", "Open": 745.4, "High": 747.0, "Low": 736.3, "Close": 740.3, "Volume": 1429504 }, + { "Date": "2016-03-08", "Open": 744.0, "High": 745.5, "Low": 735.5, "Close": 739.1, "Volume": 1285755 }, + { "Date": "2016-03-11", "Open": 743.0, "High": 745.0, "Low": 736.0, "Close": 736.1, "Volume": 1211762 }, + { "Date": "2016-03-12", "Open": 738.0, "High": 743.8, "Low": 731.0, "Close": 743.1, "Volume": 1349734 }, + { "Date": "2016-03-13", "Open": 749.2, "High": 754.4, "Low": 744.3, "Close": 751.7, "Volume": 1707095 }, + { "Date": "2016-03-14", "Open": 754.0, "High": 757.3, "Low": 752.7, "Close": 753.2, "Volume": 1130971 }, + { "Date": "2016-03-15", "Open": 754.0, "High": 761.0, "Low": 752.7, "Close": 759.0, "Volume": 1800413 }, + { "Date": "2016-03-18", "Open": 760.5, "High": 768.0, "Low": 757.3, "Close": 766.6, "Volume": 1555953 }, + { "Date": "2016-03-19", "Open": 769.5, "High": 769.9, "Low": 749.3, "Close": 753.9, "Volume": 2027642 }, + { "Date": "2016-03-20", "Open": 758.0, "High": 758.1, "Low": 750.0, "Close": 752.7, "Volume": 1525591 }, + { "Date": "2016-03-21", "Open": 755.4, "High": 760.5, "Low": 749.5, "Close": 759.1, "Volume": 2743620 }, + { "Date": "2016-03-22", "Open": 726.3, "High": 736.1, "Low": 713.6, "Close": 718.8, "Volume": 5939199 }, + { "Date": "2016-03-25", "Open": 716.1, "High": 723.9, "Low": 715.6, "Close": 723.1, "Volume": 1955567 }, + { "Date": "2016-03-26", "Open": 725.4, "High": 725.8, "Low": 703.0, "Close": 708.1, "Volume": 2727185 }, + { "Date": "2016-03-27", "Open": 707.3, "High": 709.0, "Low": 692.4, "Close": 705.8, "Volume": 3086722 }, + { "Date": "2016-03-28", "Open": 708.3, "High": 714.2, "Low": 689.5, "Close": 691.0, "Volume": 2851108 }, + { "Date": "2016-03-29", "Open": 690.7, "High": 697.6, "Low": 689.0, "Close": 693.0, "Volume": 2484273 }, + { "Date": "2016-04-02", "Open": 697.6, "High": 700.6, "Low": 691.0, "Close": 698.2, "Volume": 1644126 }, + { "Date": "2016-04-03", "Open": 696.9, "High": 697.8, "Low": 692.0, "Close": 692.4, "Volume": 1530993 }, + { "Date": "2016-04-04", "Open": 690.5, "High": 699.8, "Low": 689.0, "Close": 695.7, "Volume": 1688569 }, + { "Date": "2016-04-05", "Open": 697.7, "High": 702.3, "Low": 695.7, "Close": 701.4, "Volume": 1677405 }, + { "Date": "2016-04-06", "Open": 698.4, "High": 711.9, "Low": 698.1, "Close": 711.1, "Volume": 1826146 }, + { "Date": "2016-04-09", "Open": 712.0, "High": 718.7, "Low": 710.0, "Close": 712.9, "Volume": 1508423 }, + { "Date": "2016-04-10", "Open": 716.8, "High": 723.5, "Low": 715.7, "Close": 723.2, "Volume": 1563105 }, + { "Date": "2016-04-11", "Open": 723.4, "High": 724.5, "Low": 712.8, "Close": 715.3, "Volume": 1686823 }, + { "Date": "2016-04-12", "Open": 717.1, "High": 719.3, "Low": 709.0, "Close": 713.3, "Volume": 1360732 }, + { "Date": "2016-04-13", "Open": 711.9, "High": 716.7, "Low": 709.3, "Close": 710.8, "Volume": 1307338 }, + { "Date": "2016-04-16", "Open": 709.1, "High": 718.5, "Low": 705.6, "Close": 716.5, "Volume": 1316177 }, + { "Date": "2016-04-17", "Open": 716.0, "High": 721.5, "Low": 704.1, "Close": 706.2, "Volume": 1999456 }, + { "Date": "2016-04-18", "Open": 703.7, "High": 711.6, "Low": 700.6, "Close": 706.6, "Volume": 1763394 }, + { "Date": "2016-04-19", "Open": 702.4, "High": 706.0, "Low": 696.8, "Close": 700.3, "Volume": 1656321 }, + { "Date": "2016-04-20", "Open": 701.6, "High": 714.6, "Low": 700.5, "Close": 709.7, "Volume": 1816027 }, + { "Date": "2016-04-23", "Open": 706.5, "High": 711.5, "Low": 704.2, "Close": 704.2, "Volume": 1320927 }, + { "Date": "2016-04-24", "Open": 706.9, "High": 721.0, "Low": 706.9, "Close": 720.1, "Volume": 1920411 }, + { "Date": "2016-04-25", "Open": 720.8, "High": 727.5, "Low": 719.7, "Close": 725.3, "Volume": 1629198 }, + { "Date": "2016-04-26", "Open": 722.9, "High": 728.3, "Low": 720.3, "Close": 724.1, "Volume": 1542866 }, + { "Date": "2016-04-27", "Open": 724.0, "High": 733.9, "Low": 724.0, "Close": 732.7, "Volume": 1974026 }, + { "Date": "2016-04-31", "Open": 731.7, "High": 739.7, "Low": 731.3, "Close": 735.7, "Volume": 2129545 }, + { "Date": "2016-05-01", "Open": 734.5, "High": 737.2, "Low": 730.7, "Close": 734.1, "Volume": 1253593 }, + { "Date": "2016-05-02", "Open": 732.5, "High": 733.0, "Low": 724.2, "Close": 730.4, "Volume": 1341807 }, + { "Date": "2016-05-03", "Open": 729.3, "High": 729.5, "Low": 720.6, "Close": 722.3, "Volume": 1226253 }, + { "Date": "2016-05-06", "Open": 724.9, "High": 724.9, "Low": 714.6, "Close": 716.5, "Volume": 1566059 }, + { "Date": "2016-05-07", "Open": 719.8, "High": 722.0, "Low": 716.5, "Close": 716.6, "Volume": 1336754 }, + { "Date": "2016-05-08", "Open": 724.0, "High": 728.6, "Low": 720.6, "Close": 728.3, "Volume": 1583701 }, + { "Date": "2016-05-09", "Open": 722.9, "High": 729.5, "Low": 722.3, "Close": 728.6, "Volume": 988914 }, + { "Date": "2016-05-10", "Open": 719.5, "High": 725.9, "Low": 716.4, "Close": 719.4, "Volume": 1216443 }, + { "Date": "2016-05-13", "Open": 716.5, "High": 725.4, "Low": 716.5, "Close": 718.4, "Volume": 1258930 }, + { "Date": "2016-05-14", "Open": 716.5, "High": 722.5, "Low": 713.1, "Close": 718.3, "Volume": 1306065 }, + { "Date": "2016-05-15", "Open": 719.0, "High": 723.0, "Low": 717.3, "Close": 718.9, "Volume": 1214517 }, + { "Date": "2016-05-16", "Open": 714.9, "High": 716.6, "Low": 703.3, "Close": 710.4, "Volume": 1982471 }, + { "Date": "2016-05-17", "Open": 708.6, "High": 708.8, "Low": 688.5, "Close": 691.7, "Volume": 3402357 }, + { "Date": "2016-05-20", "Open": 698.8, "High": 702.5, "Low": 693.4, "Close": 693.7, "Volume": 2082538 }, + { "Date": "2016-05-21", "Open": 698.4, "High": 702.8, "Low": 692.0, "Close": 695.9, "Volume": 1465634 }, + { "Date": "2016-05-22", "Open": 699.1, "High": 700.9, "Low": 693.1, "Close": 697.5, "Volume": 1184318 }, + { "Date": "2016-05-23", "Open": 697.5, "High": 702.0, "Low": 687.0, "Close": 701.9, "Volume": 2171415 }, + { "Date": "2016-05-24", "Open": 675.2, "High": 689.4, "Low": 673.5, "Close": 675.2, "Volume": 4449022 }, + { "Date": "2016-05-27", "Open": 671.0, "High": 672.3, "Low": 663.3, "Close": 668.3, "Volume": 2641085 }, + { "Date": "2016-05-28", "Open": 679.0, "High": 680.3, "Low": 673.0, "Close": 680.0, "Volume": 2173762 }, + { "Date": "2016-05-29", "Open": 683.0, "High": 687.4, "Low": 681.4, "Close": 684.1, "Volume": 1932561 }, + { "Date": "2016-05-30", "Open": 685.5, "High": 692.3, "Low": 683.6, "Close": 692.1, "Volume": 1597714 }, + { "Date": "2016-06-01", "Open": 692.2, "High": 700.6, "Low": 692.1, "Close": 699.2, "Volume": 1344710 }, + { "Date": "2016-06-05", "Open": 696.1, "High": 696.9, "Low": 688.9, "Close": 694.5, "Volume": 1462616 }, + { "Date": "2016-06-06", "Open": 690.0, "High": 701.7, "Low": 689.1, "Close": 697.8, "Volume": 1411925 }, + { "Date": "2016-06-07", "Open": 698.1, "High": 698.2, "Low": 688.2, "Close": 695.4, "Volume": 1304200 }, + { "Date": "2016-06-08", "Open": 699.5, "High": 705.7, "Low": 696.4, "Close": 705.6, "Volume": 1575166 }, + { "Date": "2016-06-11", "Open": 708.0, "High": 716.5, "Low": 707.2, "Close": 715.1, "Volume": 1111762 }, + { "Date": "2016-06-12", "Open": 719.1, "High": 722.9, "Low": 715.9, "Close": 720.6, "Volume": 1336921 }, + { "Date": "2016-06-13", "Open": 723.6, "High": 724.0, "Low": 716.9, "Close": 717.0, "Volume": 935876 }, + { "Date": "2016-06-14", "Open": 721.6, "High": 722.2, "Low": 718.0, "Close": 721.0, "Volume": 950193 }, + { "Date": "2016-06-15", "Open": 725.7, "High": 725.7, "Low": 719.1, "Close": 719.9, "Volume": 1279339 }, + { "Date": "2016-06-18", "Open": 722.7, "High": 736.1, "Low": 721.2, "Close": 733.8, "Volume": 1295476 }, + { "Date": "2016-06-19", "Open": 729.9, "High": 737.0, "Low": 729.0, "Close": 737.0, "Volume": 1227486 }, + { "Date": "2016-06-20", "Open": 737.3, "High": 742.1, "Low": 737.1, "Close": 741.2, "Volume": 1289671 }, + { "Date": "2016-06-21", "Open": 740.4, "High": 741.7, "Low": 735.8, "Close": 738.6, "Volume": 1026306 }, + { "Date": "2016-06-22", "Open": 741.9, "High": 743.2, "Low": 736.6, "Close": 742.7, "Volume": 1259823 }, + { "Date": "2016-06-25", "Open": 740.7, "High": 742.6, "Low": 737.5, "Close": 739.8, "Volume": 1032432 }, + { "Date": "2016-06-26", "Open": 739.0, "High": 741.7, "Low": 734.3, "Close": 738.4, "Volume": 1186738 }, + { "Date": "2016-06-27", "Open": 738.3, "High": 744.5, "Low": 737.0, "Close": 741.8, "Volume": 1512517 }, + { "Date": "2016-06-28", "Open": 747.0, "High": 748.6, "Low": 739.3, "Close": 745.9, "Volume": 3530169 }, + { "Date": "2016-06-29", "Open": 772.7, "High": 778.5, "Low": 766.8, "Close": 768.8, "Volume": 3841482 }, + { "Date": "2016-07-01", "Open": 761.1, "High": 780.4, "Low": 761.1, "Close": 772.9, "Volume": 2700470 }, + { "Date": "2016-07-02", "Open": 768.7, "High": 775.8, "Low": 767.9, "Close": 771.1, "Volume": 1784525 }, + { "Date": "2016-07-03", "Open": 767.2, "High": 773.2, "Low": 766.8, "Close": 773.2, "Volume": 1287421 }, + { "Date": "2016-07-04", "Open": 772.2, "High": 774.1, "Low": 768.8, "Close": 771.6, "Volume": 1140254 }, + { "Date": "2016-07-05", "Open": 773.8, "High": 783.0, "Low": 772.3, "Close": 782.2, "Volume": 1801205 }, + { "Date": "2016-07-08", "Open": 782.0, "High": 782.6, "Low": 778.1, "Close": 781.8, "Volume": 1107857 }, + { "Date": "2016-07-09", "Open": 781.1, "High": 788.9, "Low": 780.6, "Close": 784.3, "Volume": 1318894 }, + { "Date": "2016-07-10", "Open": 783.8, "High": 786.8, "Low": 782.8, "Close": 784.7, "Volume": 786363 }, + { "Date": "2016-07-11", "Open": 785.0, "High": 789.8, "Low": 783.0, "Close": 784.9, "Volume": 975113 }, + { "Date": "2016-07-12", "Open": 781.5, "High": 783.4, "Low": 780.4, "Close": 783.2, "Volume": 740498 }, + { "Date": "2016-07-15", "Open": 783.8, "High": 787.5, "Low": 780.1, "Close": 782.4, "Volume": 938186 }, + { "Date": "2016-07-16", "Open": 780.3, "High": 781.0, "Low": 773.4, "Close": 777.1, "Volume": 1028047 }, + { "Date": "2016-07-17", "Open": 777.3, "High": 780.8, "Low": 773.5, "Close": 779.9, "Volume": 924226 }, + { "Date": "2016-07-18", "Open": 780.0, "High": 782.9, "Low": 777.0, "Close": 777.5, "Volume": 719429 }, + { "Date": "2016-07-19", "Open": 775.0, "High": 777.1, "Low": 773.1, "Close": 775.4, "Volume": 861546 }, + { "Date": "2016-07-22", "Open": 773.3, "High": 774.5, "Low": 770.0, "Close": 772.1, "Volume": 951362 }, + { "Date": "2016-07-23", "Open": 775.5, "High": 776.4, "Low": 771.8, "Close": 772.1, "Volume": 928232 }, + { "Date": "2016-07-24", "Open": 770.6, "High": 774.5, "Low": 767.1, "Close": 769.6, "Volume": 1071999 }, + { "Date": "2016-07-25", "Open": 767.0, "High": 771.9, "Low": 763.2, "Close": 769.4, "Volume": 926883 }, + { "Date": "2016-07-26", "Open": 769.0, "High": 776.1, "Low": 765.9, "Close": 769.5, "Volume": 1166681 }, + { "Date": "2016-07-29", "Open": 768.7, "High": 775.0, "Low": 766.6, "Close": 772.1, "Volume": 847565 }, + { "Date": "2016-07-30", "Open": 769.3, "High": 774.5, "Low": 766.8, "Close": 769.1, "Volume": 1130029 }, + { "Date": "2016-07-31", "Open": 767.0, "High": 769.1, "Low": 765.4, "Close": 767.0, "Volume": 1248556 }, + { "Date": "2016-08-01", "Open": 769.3, "High": 771.0, "Low": 764.3, "Close": 768.8, "Volume": 925131 }, + { "Date": "2016-08-02", "Open": 773.0, "High": 773.9, "Low": 768.4, "Close": 771.5, "Volume": 1072658 }, + { "Date": "2016-08-06", "Open": 773.5, "High": 782.0, "Low": 771.0, "Close": 780.1, "Volume": 1442822 }, + { "Date": "2016-08-07", "Open": 780.0, "High": 782.7, "Low": 776.2, "Close": 780.4, "Volume": 894021 }, + { "Date": "2016-08-08", "Open": 778.6, "High": 780.4, "Low": 773.6, "Close": 775.3, "Volume": 1270264 }, + { "Date": "2016-08-09", "Open": 770.1, "High": 773.2, "Low": 759.7, "Close": 759.7, "Volume": 1885496 }, + { "Date": "2016-08-12", "Open": 755.1, "High": 770.3, "Low": 754.0, "Close": 769.0, "Volume": 1310986 }, + { "Date": "2016-08-13", "Open": 764.5, "High": 766.2, "Low": 755.8, "Close": 759.7, "Volume": 1395046 }, + { "Date": "2016-08-14", "Open": 759.6, "High": 767.7, "Low": 759.1, "Close": 762.5, "Volume": 1094490 }, + { "Date": "2016-08-15", "Open": 762.9, "High": 773.8, "Low": 760.0, "Close": 771.8, "Volume": 1346751 }, + { "Date": "2016-08-16", "Open": 769.8, "High": 769.8, "Low": 764.7, "Close": 768.9, "Volume": 2049338 }, + { "Date": "2016-08-19", "Open": 772.4, "High": 774.0, "Low": 764.4, "Close": 765.7, "Volume": 1172824 }, + { "Date": "2016-08-20", "Open": 769.0, "High": 773.3, "Low": 768.5, "Close": 771.4, "Volume": 978631 }, + { "Date": "2016-08-21", "Open": 772.7, "High": 777.2, "Low": 768.3, "Close": 776.2, "Volume": 1167810 }, + { "Date": "2016-08-22", "Open": 780.0, "High": 789.9, "Low": 778.4, "Close": 787.2, "Volume": 1486223 }, + { "Date": "2016-08-23", "Open": 786.6, "High": 788.9, "Low": 784.1, "Close": 786.9, "Volume": 1411937 }, + { "Date": "2016-08-26", "Open": 782.7, "High": 782.7, "Low": 773.1, "Close": 774.2, "Volume": 1533206 }, + { "Date": "2016-08-27", "Open": 775.5, "High": 786.0, "Low": 774.3, "Close": 783.0, "Volume": 1153247 }, + { "Date": "2016-08-28", "Open": 777.9, "High": 781.8, "Low": 775.0, "Close": 781.6, "Volume": 1109834 }, + { "Date": "2016-08-29", "Open": 781.4, "High": 785.8, "Low": 774.2, "Close": 775.0, "Volume": 1314746 }, + { "Date": "2016-08-30", "Open": 776.3, "High": 780.9, "Low": 774.1, "Close": 777.3, "Volume": 1585333 }, + { "Date": "2016-09-03", "Open": 774.3, "High": 776.1, "Low": 769.5, "Close": 772.6, "Volume": 1278821 }, + { "Date": "2016-09-04", "Open": 776.0, "High": 778.7, "Low": 772.9, "Close": 776.4, "Volume": 1201350 }, + { "Date": "2016-09-05", "Open": 779.3, "High": 782.1, "Low": 775.6, "Close": 776.5, "Volume": 1461151 }, + { "Date": "2016-09-06", "Open": 779.0, "High": 780.5, "Low": 775.5, "Close": 776.9, "Volume": 1070692 }, + { "Date": "2016-09-07", "Open": 779.7, "High": 779.7, "Low": 770.8, "Close": 775.1, "Volume": 933158 }, + { "Date": "2016-09-10", "Open": 777.7, "High": 789.4, "Low": 775.9, "Close": 785.9, "Volume": 1174923 }, + { "Date": "2016-09-11", "Open": 786.7, "High": 792.3, "Low": 780.6, "Close": 783.1, "Volume": 1372461 }, + { "Date": "2016-09-12", "Open": 783.8, "High": 788.1, "Low": 782.1, "Close": 786.1, "Volume": 937435 }, + { "Date": "2016-09-13", "Open": 781.2, "High": 781.2, "Low": 773.0, "Close": 778.2, "Volume": 1365277 }, + { "Date": "2016-09-14", "Open": 781.6, "High": 784.0, "Low": 776.0, "Close": 778.5, "Volume": 852487 }, + { "Date": "2016-09-17", "Open": 779.8, "High": 785.9, "Low": 777.5, "Close": 780.0, "Volume": 1092973 }, + { "Date": "2016-09-18", "Open": 787.9, "High": 801.6, "Low": 785.6, "Close": 795.3, "Volume": 2056903 }, + { "Date": "2016-09-19", "Open": 798.9, "High": 804.6, "Low": 797.6, "Close": 801.6, "Volume": 1766798 }, + { "Date": "2016-09-20", "Open": 803.3, "High": 804.0, "Low": 796.0, "Close": 797.0, "Volume": 1757528 }, + { "Date": "2016-09-21", "Open": 795.0, "High": 799.5, "Low": 794.0, "Close": 799.4, "Volume": 1266181 }, + { "Date": "2016-09-24", "Open": 804.9, "High": 815.2, "Low": 804.8, "Close": 813.1, "Volume": 1697514 }, + { "Date": "2016-09-25", "Open": 816.7, "High": 816.7, "Low": 805.1, "Close": 807.7, "Volume": 1576404 }, + { "Date": "2016-09-26", "Open": 806.3, "High": 807.0, "Low": 796.3, "Close": 799.1, "Volume": 1647733 }, + { "Date": "2016-09-27", "Open": 801.0, "High": 803.5, "Low": 791.5, "Close": 795.4, "Volume": 2749221 }, + { "Date": "2016-09-28", "Open": 808.4, "High": 815.5, "Low": 793.6, "Close": 795.4, "Volume": 4269902 }, + { "Date": "2016-09-31", "Open": 795.5, "High": 796.9, "Low": 784.0, "Close": 784.5, "Volume": 2427284 }, + { "Date": "2016-10-01", "Open": 782.9, "High": 789.5, "Low": 775.5, "Close": 783.6, "Volume": 2406356 }, + { "Date": "2016-10-02", "Open": 778.2, "High": 781.6, "Low": 763.5, "Close": 768.7, "Volume": 1918414 }, + { "Date": "2016-10-03", "Open": 767.3, "High": 770.0, "Low": 759.0, "Close": 762.1, "Volume": 1943175 }, + { "Date": "2016-10-04", "Open": 750.7, "High": 770.4, "Low": 750.6, "Close": 762.0, "Volume": 2134812 }, + { "Date": "2016-10-07", "Open": 774.5, "High": 785.2, "Low": 772.5, "Close": 782.5, "Volume": 1585070 }, + { "Date": "2016-10-08", "Open": 783.4, "High": 795.6, "Low": 780.2, "Close": 790.5, "Volume": 1366873 }, + { "Date": "2016-10-09", "Open": 779.9, "High": 791.2, "Low": 771.7, "Close": 785.3, "Volume": 2607121 }, + { "Date": "2016-10-10", "Open": 791.2, "High": 791.2, "Low": 752.2, "Close": 762.6, "Volume": 4745183 }, + { "Date": "2016-10-11", "Open": 756.5, "High": 760.8, "Low": 750.4, "Close": 754.0, "Volume": 2431815 }, + { "Date": "2016-10-14", "Open": 755.6, "High": 757.9, "Low": 727.5, "Close": 736.1, "Volume": 3654385 }, + { "Date": "2016-10-15", "Open": 747.0, "High": 764.4, "Low": 747.0, "Close": 758.5, "Volume": 2384001 }, + { "Date": "2016-10-16", "Open": 755.2, "High": 766.4, "Low": 750.5, "Close": 764.5, "Volume": 1472594 }, + { "Date": "2016-10-17", "Open": 766.9, "High": 772.7, "Low": 764.2, "Close": 771.2, "Volume": 1286961 }, + { "Date": "2016-10-18", "Open": 771.4, "High": 775.0, "Low": 760.0, "Close": 760.5, "Volume": 1547145 }, + { "Date": "2016-10-21", "Open": 762.6, "High": 769.7, "Low": 760.6, "Close": 769.2, "Volume": 1330639 }, + { "Date": "2016-10-22", "Open": 772.6, "High": 777.0, "Low": 767.0, "Close": 768.3, "Volume": 1593108 }, + { "Date": "2016-10-23", "Open": 767.7, "High": 768.3, "Low": 755.3, "Close": 761.0, "Volume": 1478417 }, + { "Date": "2016-10-25", "Open": 764.3, "High": 765.0, "Low": 760.5, "Close": 761.7, "Volume": 587421 }, + { "Date": "2016-10-28", "Open": 760.0, "High": 779.5, "Low": 759.8, "Close": 768.2, "Volume": 2188151 }, + { "Date": "2016-10-29", "Open": 771.5, "High": 778.5, "Low": 768.2, "Close": 770.8, "Volume": 1616618 }, + { "Date": "2016-10-30", "Open": 770.1, "High": 773.0, "Low": 754.8, "Close": 758.0, "Volume": 2392890 }, + { "Date": "2016-11-01", "Open": 757.4, "High": 759.9, "Low": 737.0, "Close": 747.9, "Volume": 3017947 }, + { "Date": "2016-11-02", "Open": 744.6, "High": 754.0, "Low": 743.1, "Close": 750.5, "Volume": 1452484 }, + { "Date": "2016-11-05", "Open": 757.7, "High": 763.9, "Low": 752.9, "Close": 762.5, "Volume": 1394223 }, + { "Date": "2016-11-06", "Open": 764.7, "High": 768.8, "Low": 757.3, "Close": 759.1, "Volume": 1690689 }, + { "Date": "2016-11-07", "Open": 761.0, "High": 771.4, "Low": 755.8, "Close": 771.2, "Volume": 1760966 }, + { "Date": "2016-11-08", "Open": 772.5, "High": 778.2, "Low": 767.2, "Close": 776.4, "Volume": 1488059 }, + { "Date": "2016-11-09", "Open": 780.0, "High": 789.4, "Low": 779.0, "Close": 789.3, "Volume": 1821914 }, + { "Date": "2016-11-12", "Open": 785.0, "High": 791.3, "Low": 784.4, "Close": 789.3, "Volume": 2104117 }, + { "Date": "2016-11-13", "Open": 793.9, "High": 804.4, "Low": 793.3, "Close": 796.1, "Volume": 2145209 }, + { "Date": "2016-11-14", "Open": 797.4, "High": 804.0, "Low": 794.0, "Close": 797.1, "Volume": 1704150 }, + { "Date": "2016-11-15", "Open": 797.3, "High": 803.0, "Low": 792.9, "Close": 797.9, "Volume": 1626499 }, + { "Date": "2016-11-16", "Open": 800.4, "High": 800.9, "Low": 790.3, "Close": 790.8, "Volume": 2443796 }, + { "Date": "2016-11-19", "Open": 790.2, "High": 797.7, "Low": 786.3, "Close": 794.2, "Volume": 1232087 }, + { "Date": "2016-11-20", "Open": 796.8, "High": 798.6, "Low": 793.3, "Close": 796.4, "Volume": 951014 }, + { "Date": "2016-11-21", "Open": 795.8, "High": 796.7, "Low": 787.1, "Close": 794.6, "Volume": 1211346 }, + { "Date": "2016-11-22", "Open": 792.4, "High": 793.3, "Low": 788.6, "Close": 791.3, "Volume": 972169 }, + { "Date": "2016-11-23", "Open": 790.9, "High": 792.7, "Low": 787.3, "Close": 789.9, "Volume": 623944 }, + { "Date": "2016-11-27", "Open": 790.7, "High": 797.9, "Low": 787.7, "Close": 791.5, "Volume": 789321 }, + { "Date": "2016-11-28", "Open": 793.7, "High": 794.2, "Low": 783.2, "Close": 785.0, "Volume": 1153824 }, + { "Date": "2016-11-29", "Open": 783.3, "High": 785.9, "Low": 778.9, "Close": 782.8, "Volume": 744272 }, + { "Date": "2016-11-30", "Open": 782.8, "High": 782.8, "Low": 770.4, "Close": 771.8, "Volume": 1769950 }, + { "Date": "2017-00-03", "Open": 778.8, "High": 789.6, "Low": 775.8, "Close": 786.1, "Volume": 1657268 }, + { "Date": "2017-00-04", "Open": 788.4, "High": 791.3, "Low": 783.2, "Close": 786.9, "Volume": 1072958 }, + { "Date": "2017-00-05", "Open": 786.1, "High": 794.5, "Low": 785.0, "Close": 794.0, "Volume": 1335167 }, + { "Date": "2017-00-06", "Open": 795.3, "High": 807.9, "Low": 792.2, "Close": 806.1, "Volume": 1640170 }, + { "Date": "2017-00-09", "Open": 806.4, "High": 810.0, "Low": 802.8, "Close": 806.6, "Volume": 1274645 }, + { "Date": "2017-00-10", "Open": 807.9, "High": 809.1, "Low": 803.5, "Close": 804.8, "Volume": 1176780 }, + { "Date": "2017-00-11", "Open": 805.0, "High": 808.1, "Low": 801.4, "Close": 807.9, "Volume": 1065936 }, + { "Date": "2017-00-12", "Open": 807.1, "High": 807.4, "Low": 799.2, "Close": 806.4, "Volume": 1353057 }, + { "Date": "2017-00-13", "Open": 807.5, "High": 811.2, "Low": 806.7, "Close": 807.9, "Volume": 1099215 }, + { "Date": "2017-00-17", "Open": 807.1, "High": 807.1, "Low": 800.4, "Close": 804.6, "Volume": 1362115 }, + { "Date": "2017-00-18", "Open": 805.8, "High": 806.2, "Low": 801.0, "Close": 806.1, "Volume": 1294407 }, + { "Date": "2017-00-19", "Open": 805.1, "High": 809.5, "Low": 801.8, "Close": 802.2, "Volume": 919325 }, + { "Date": "2017-00-20", "Open": 806.9, "High": 806.9, "Low": 801.7, "Close": 805.0, "Volume": 1670045 }, + { "Date": "2017-00-23", "Open": 807.3, "High": 820.9, "Low": 803.7, "Close": 819.3, "Volume": 1963628 }, + { "Date": "2017-00-24", "Open": 822.3, "High": 825.9, "Low": 817.8, "Close": 823.9, "Volume": 1474010 }, + { "Date": "2017-00-25", "Open": 829.6, "High": 835.8, "Low": 825.1, "Close": 835.7, "Volume": 1627304 }, + { "Date": "2017-00-26", "Open": 837.8, "High": 838.0, "Low": 827.0, "Close": 832.1, "Volume": 2973891 }, + { "Date": "2017-00-27", "Open": 834.7, "High": 842.0, "Low": 820.4, "Close": 823.3, "Volume": 2965771 }, + { "Date": "2017-00-30", "Open": 814.7, "High": 815.8, "Low": 799.8, "Close": 802.3, "Volume": 3246573 }, + { "Date": "2017-00-31", "Open": 796.9, "High": 801.3, "Low": 790.5, "Close": 796.8, "Volume": 2160556 }, + { "Date": "2017-01-01", "Open": 799.7, "High": 801.2, "Low": 791.2, "Close": 795.7, "Volume": 2029744 }, + { "Date": "2017-01-02", "Open": 793.8, "High": 802.7, "Low": 792.0, "Close": 798.5, "Volume": 1532138 }, + { "Date": "2017-01-03", "Open": 803.0, "High": 806.0, "Low": 800.4, "Close": 801.5, "Volume": 1463448 }, + { "Date": "2017-01-06", "Open": 799.7, "High": 801.7, "Low": 795.3, "Close": 801.3, "Volume": 1184483 }, + { "Date": "2017-01-07", "Open": 804.0, "High": 810.5, "Low": 801.8, "Close": 807.0, "Volume": 1241221 }, + { "Date": "2017-01-08", "Open": 807.0, "High": 811.8, "Low": 803.2, "Close": 808.4, "Volume": 1155990 }, + { "Date": "2017-01-09", "Open": 809.5, "High": 810.7, "Low": 804.5, "Close": 809.6, "Volume": 990391 }, + { "Date": "2017-01-10", "Open": 811.7, "High": 815.3, "Low": 809.8, "Close": 813.7, "Volume": 1134976 }, + { "Date": "2017-01-13", "Open": 816.0, "High": 821.0, "Low": 815.5, "Close": 819.2, "Volume": 1213324 }, + { "Date": "2017-01-14", "Open": 819.0, "High": 823.0, "Low": 816.0, "Close": 820.5, "Volume": 1054732 }, + { "Date": "2017-01-15", "Open": 819.4, "High": 823.0, "Low": 818.5, "Close": 819.0, "Volume": 1313617 }, + { "Date": "2017-01-16", "Open": 819.9, "High": 824.4, "Low": 819.0, "Close": 824.2, "Volume": 1287626 }, + { "Date": "2017-01-17", "Open": 823.0, "High": 828.1, "Low": 821.7, "Close": 828.1, "Volume": 1611039 }, + { "Date": "2017-01-21", "Open": 828.7, "High": 833.5, "Low": 828.4, "Close": 831.7, "Volume": 1262337 }, + { "Date": "2017-01-22", "Open": 828.7, "High": 833.3, "Low": 828.6, "Close": 830.8, "Volume": 987248 }, + { "Date": "2017-01-23", "Open": 830.1, "High": 832.5, "Low": 822.9, "Close": 831.3, "Volume": 1472771 }, + { "Date": "2017-01-24", "Open": 827.7, "High": 829.0, "Low": 824.2, "Close": 828.6, "Volume": 1392202 }, + { "Date": "2017-01-27", "Open": 824.5, "High": 830.5, "Low": 824.0, "Close": 829.3, "Volume": 1101466 }, + { "Date": "2017-01-28", "Open": 825.6, "High": 828.5, "Low": 820.2, "Close": 823.2, "Volume": 2260769 }, + { "Date": "2017-02-01", "Open": 828.9, "High": 836.3, "Low": 827.3, "Close": 835.2, "Volume": 1496540 }, + { "Date": "2017-02-02", "Open": 833.9, "High": 834.5, "Low": 829.6, "Close": 830.6, "Volume": 942476 }, + { "Date": "2017-02-03", "Open": 830.6, "High": 831.4, "Low": 825.8, "Close": 829.1, "Volume": 896378 }, + { "Date": "2017-02-06", "Open": 827.0, "High": 828.9, "Low": 822.4, "Close": 827.8, "Volume": 1109037 }, + { "Date": "2017-02-07", "Open": 827.4, "High": 833.4, "Low": 826.5, "Close": 831.9, "Volume": 1037630 }, + { "Date": "2017-02-08", "Open": 833.5, "High": 838.1, "Low": 831.8, "Close": 835.4, "Volume": 989773 }, + { "Date": "2017-02-09", "Open": 836.0, "High": 842.0, "Low": 834.2, "Close": 838.7, "Volume": 1261517 }, + { "Date": "2017-02-10", "Open": 843.3, "High": 844.9, "Low": 839.5, "Close": 843.3, "Volume": 1704024 }, + { "Date": "2017-02-13", "Open": 844.0, "High": 848.7, "Low": 843.3, "Close": 845.5, "Volume": 1223647 }, + { "Date": "2017-02-14", "Open": 843.6, "High": 847.2, "Low": 840.8, "Close": 845.6, "Volume": 780198 }, + { "Date": "2017-02-15", "Open": 847.6, "High": 848.6, "Low": 840.8, "Close": 847.2, "Volume": 1381474 }, + { "Date": "2017-02-16", "Open": 849.0, "High": 850.9, "Low": 846.1, "Close": 848.8, "Volume": 977560 }, + { "Date": "2017-02-17", "Open": 851.6, "High": 853.4, "Low": 847.1, "Close": 852.1, "Volume": 1716471 }, + { "Date": "2017-02-20", "Open": 850.0, "High": 850.2, "Low": 845.1, "Close": 848.4, "Volume": 1231521 }, + { "Date": "2017-02-21", "Open": 851.4, "High": 853.5, "Low": 829.0, "Close": 830.5, "Volume": 2463484 }, + { "Date": "2017-02-22", "Open": 831.9, "High": 835.5, "Low": 827.2, "Close": 829.6, "Volume": 1401465 }, + { "Date": "2017-02-23", "Open": 821.0, "High": 822.6, "Low": 812.3, "Close": 817.6, "Volume": 3487056 }, + { "Date": "2017-02-24", "Open": 820.1, "High": 821.9, "Low": 808.9, "Close": 814.4, "Volume": 1981006 }, + { "Date": "2017-02-27", "Open": 807.0, "High": 821.6, "Low": 803.4, "Close": 819.5, "Volume": 1894990 }, + { "Date": "2017-02-28", "Open": 820.4, "High": 826.0, "Low": 814.0, "Close": 820.9, "Volume": 1620542 }, + { "Date": "2017-02-29", "Open": 825.0, "High": 832.8, "Low": 822.4, "Close": 831.4, "Volume": 1786321 }, + { "Date": "2017-02-30", "Open": 833.5, "High": 833.7, "Low": 829.0, "Close": 831.5, "Volume": 1055339 }, + { "Date": "2017-02-31", "Open": 829.0, "High": 831.6, "Low": 827.4, "Close": 829.6, "Volume": 1401893 }, + { "Date": "2017-03-03", "Open": 829.2, "High": 840.9, "Low": 829.2, "Close": 838.5, "Volume": 1671503 }, + { "Date": "2017-03-04", "Open": 831.4, "High": 835.2, "Low": 829.0, "Close": 834.6, "Volume": 1045363 }, + { "Date": "2017-03-05", "Open": 835.5, "High": 842.5, "Low": 830.7, "Close": 831.4, "Volume": 1555328 }, + { "Date": "2017-03-06", "Open": 832.4, "High": 836.4, "Low": 826.5, "Close": 827.9, "Volume": 1254433 }, + { "Date": "2017-03-07", "Open": 828.0, "High": 828.5, "Low": 820.5, "Close": 824.7, "Volume": 1057253 }, + { "Date": "2017-03-10", "Open": 825.4, "High": 829.4, "Low": 823.8, "Close": 824.7, "Volume": 978905 }, + { "Date": "2017-03-11", "Open": 824.7, "High": 827.4, "Low": 817.0, "Close": 823.4, "Volume": 1079732 }, + { "Date": "2017-03-12", "Open": 821.9, "High": 826.7, "Low": 821.0, "Close": 824.3, "Volume": 900480 }, + { "Date": "2017-03-13", "Open": 822.1, "High": 826.4, "Low": 821.4, "Close": 823.6, "Volume": 1122362 }, + { "Date": "2017-03-17", "Open": 825.0, "High": 837.8, "Low": 824.5, "Close": 837.2, "Volume": 895015 }, + { "Date": "2017-03-18", "Open": 834.2, "High": 838.9, "Low": 832.7, "Close": 836.8, "Volume": 836722 }, + { "Date": "2017-03-19", "Open": 839.8, "High": 842.2, "Low": 836.3, "Close": 838.2, "Volume": 954330 }, + { "Date": "2017-03-20", "Open": 841.4, "High": 845.2, "Low": 839.3, "Close": 841.6, "Volume": 959031 }, + { "Date": "2017-03-21", "Open": 842.9, "High": 843.9, "Low": 840.6, "Close": 843.2, "Volume": 1323583 }, + { "Date": "2017-03-24", "Open": 851.2, "High": 863.5, "Low": 849.9, "Close": 862.8, "Volume": 1372541 }, + { "Date": "2017-03-25", "Open": 865.0, "High": 875.0, "Low": 862.8, "Close": 872.3, "Volume": 1671972 }, + { "Date": "2017-03-26", "Open": 874.2, "High": 876.0, "Low": 867.8, "Close": 871.7, "Volume": 1237167 }, + { "Date": "2017-03-27", "Open": 873.6, "High": 875.4, "Low": 870.4, "Close": 874.3, "Volume": 2026816 }, + { "Date": "2017-03-28", "Open": 910.7, "High": 916.9, "Low": 905.8, "Close": 906.0, "Volume": 3276255 }, + { "Date": "2017-04-01", "Open": 901.9, "High": 915.7, "Low": 901.5, "Close": 912.6, "Volume": 2115993 }, + { "Date": "2017-04-02", "Open": 909.6, "High": 920.8, "Low": 909.5, "Close": 916.4, "Volume": 1587219 }, + { "Date": "2017-04-03", "Open": 914.9, "High": 928.1, "Low": 912.5, "Close": 927.0, "Volume": 1499532 }, + { "Date": "2017-04-04", "Open": 926.1, "High": 935.9, "Low": 924.6, "Close": 931.7, "Volume": 1422144 }, + { "Date": "2017-04-05", "Open": 933.5, "High": 934.9, "Low": 925.2, "Close": 927.1, "Volume": 1911275 }, + { "Date": "2017-04-08", "Open": 926.1, "High": 936.9, "Low": 925.3, "Close": 934.3, "Volume": 1329825 }, + { "Date": "2017-04-09", "Open": 937.0, "High": 937.5, "Low": 929.5, "Close": 932.2, "Volume": 1581809 }, + { "Date": "2017-04-10", "Open": 932.0, "High": 932.0, "Low": 925.2, "Close": 928.8, "Volume": 1173925 }, + { "Date": "2017-04-11", "Open": 925.3, "High": 932.5, "Low": 923.0, "Close": 930.6, "Volume": 835386 }, + { "Date": "2017-04-12", "Open": 931.5, "High": 933.4, "Low": 927.9, "Close": 932.2, "Volume": 1050601 }, + { "Date": "2017-04-15", "Open": 933.0, "High": 938.3, "Low": 929.3, "Close": 937.1, "Volume": 1108496 }, + { "Date": "2017-04-16", "Open": 940.0, "High": 943.1, "Low": 937.6, "Close": 943.0, "Volume": 969479 }, + { "Date": "2017-04-17", "Open": 935.7, "High": 939.3, "Low": 918.1, "Close": 919.6, "Volume": 2362072 }, + { "Date": "2017-04-18", "Open": 921.0, "High": 933.2, "Low": 918.8, "Close": 930.2, "Volume": 1596897 }, + { "Date": "2017-04-19", "Open": 931.5, "High": 937.8, "Low": 931.0, "Close": 934.0, "Volume": 1393024 }, + { "Date": "2017-04-22", "Open": 935.0, "High": 941.9, "Low": 935.0, "Close": 941.9, "Volume": 1120385 }, + { "Date": "2017-04-23", "Open": 947.9, "High": 951.5, "Low": 942.6, "Close": 948.8, "Volume": 1270817 }, + { "Date": "2017-04-24", "Open": 953.0, "High": 955.1, "Low": 949.5, "Close": 955.0, "Volume": 1034199 }, + { "Date": "2017-04-25", "Open": 957.3, "High": 972.6, "Low": 955.5, "Close": 969.5, "Volume": 1660474 }, + { "Date": "2017-04-26", "Open": 969.7, "High": 975.0, "Low": 965.0, "Close": 971.5, "Volume": 1252010 }, + { "Date": "2017-04-30", "Open": 970.3, "High": 976.2, "Low": 969.5, "Close": 975.9, "Volume": 1466654 }, + { "Date": "2017-04-31", "Open": 975.0, "High": 979.3, "Low": 960.2, "Close": 964.9, "Volume": 2448067 }, + { "Date": "2017-05-01", "Open": 969.0, "High": 971.5, "Low": 960.0, "Close": 967.0, "Volume": 1410458 }, + { "Date": "2017-05-02", "Open": 969.5, "High": 975.9, "Low": 966.0, "Close": 975.6, "Volume": 1750955 }, + { "Date": "2017-05-05", "Open": 976.5, "High": 986.9, "Low": 975.1, "Close": 983.7, "Volume": 1252106 }, + { "Date": "2017-05-06", "Open": 983.2, "High": 988.3, "Low": 975.1, "Close": 976.6, "Volume": 1814624 }, + { "Date": "2017-05-07", "Open": 979.6, "High": 984.1, "Low": 975.8, "Close": 981.1, "Volume": 1453874 }, + { "Date": "2017-05-08", "Open": 982.4, "High": 984.6, "Low": 977.2, "Close": 983.4, "Volume": 1481916 }, + { "Date": "2017-05-09", "Open": 984.5, "High": 984.5, "Low": 935.6, "Close": 949.8, "Volume": 3309389 }, + { "Date": "2017-05-12", "Open": 939.6, "High": 949.4, "Low": 915.2, "Close": 942.9, "Volume": 3763529 }, + { "Date": "2017-05-13", "Open": 951.9, "High": 960.0, "Low": 944.1, "Close": 953.4, "Volume": 2013337 }, + { "Date": "2017-05-14", "Open": 959.9, "High": 961.1, "Low": 942.3, "Close": 950.8, "Volume": 1489715 }, + { "Date": "2017-05-15", "Open": 934.0, "High": 943.3, "Low": 924.4, "Close": 942.3, "Volume": 2133050 }, + { "Date": "2017-05-16", "Open": 940.0, "High": 942.0, "Low": 931.6, "Close": 939.8, "Volume": 3094711 }, + { "Date": "2017-05-19", "Open": 950.0, "High": 960.0, "Low": 949.0, "Close": 957.4, "Volume": 1533336 }, + { "Date": "2017-05-20", "Open": 957.5, "High": 961.6, "Low": 950.0, "Close": 950.6, "Volume": 1125990 }, + { "Date": "2017-05-21", "Open": 953.6, "High": 960.1, "Low": 950.8, "Close": 959.5, "Volume": 1202233 }, + { "Date": "2017-05-22", "Open": 958.7, "High": 960.7, "Low": 954.5, "Close": 957.1, "Volume": 941958 }, + { "Date": "2017-05-23", "Open": 956.8, "High": 966.0, "Low": 954.2, "Close": 965.6, "Volume": 1527856 }, + { "Date": "2017-05-26", "Open": 969.9, "High": 973.3, "Low": 950.8, "Close": 952.3, "Volume": 1598355 }, + { "Date": "2017-05-27", "Open": 942.5, "High": 948.3, "Low": 926.9, "Close": 927.3, "Volume": 2579930 }, + { "Date": "2017-05-28", "Open": 929.0, "High": 942.8, "Low": 916.0, "Close": 940.5, "Volume": 2721406 }, + { "Date": "2017-05-29", "Open": 929.9, "High": 931.3, "Low": 910.6, "Close": 917.8, "Volume": 3299176 }, + { "Date": "2017-05-30", "Open": 926.0, "High": 926.0, "Low": 908.3, "Close": 908.7, "Volume": 2090226 }, + { "Date": "2017-06-03", "Open": 912.2, "High": 913.9, "Low": 894.8, "Close": 898.7, "Volume": 1710373 }, + { "Date": "2017-06-05", "Open": 901.8, "High": 914.5, "Low": 898.5, "Close": 911.7, "Volume": 1813884 }, + { "Date": "2017-06-06", "Open": 904.1, "High": 914.9, "Low": 899.7, "Close": 906.7, "Volume": 1424503 }, + { "Date": "2017-06-07", "Open": 908.9, "High": 921.5, "Low": 908.9, "Close": 918.6, "Volume": 1637785 }, + { "Date": "2017-06-10", "Open": 921.8, "High": 930.4, "Low": 919.6, "Close": 928.8, "Volume": 1192825 }, + { "Date": "2017-06-11", "Open": 929.5, "High": 931.4, "Low": 922.0, "Close": 930.1, "Volume": 1113235 }, + { "Date": "2017-06-12", "Open": 938.7, "High": 946.3, "Low": 934.5, "Close": 943.8, "Volume": 1532144 }, + { "Date": "2017-06-13", "Open": 946.3, "High": 954.5, "Low": 943.0, "Close": 947.2, "Volume": 1294687 }, + { "Date": "2017-06-14", "Open": 952.0, "High": 956.9, "Low": 948.0, "Close": 956.0, "Volume": 1053774 }, + { "Date": "2017-06-17", "Open": 957.0, "High": 960.7, "Low": 949.2, "Close": 953.4, "Volume": 1165537 }, + { "Date": "2017-06-18", "Open": 953.0, "High": 968.0, "Low": 950.6, "Close": 965.4, "Volume": 1153964 }, + { "Date": "2017-06-19", "Open": 967.8, "High": 973.0, "Low": 964.0, "Close": 970.9, "Volume": 1224540 }, + { "Date": "2017-06-20", "Open": 975.0, "High": 975.9, "Low": 961.5, "Close": 968.1, "Volume": 1624463 }, + { "Date": "2017-06-21", "Open": 962.3, "High": 973.2, "Low": 960.1, "Close": 972.9, "Volume": 1711000 }, + { "Date": "2017-06-24", "Open": 972.2, "High": 986.2, "Low": 970.8, "Close": 980.3, "Volume": 3248347 }, + { "Date": "2017-06-25", "Open": 953.8, "High": 959.7, "Low": 945.4, "Close": 950.7, "Volume": 4660979 }, + { "Date": "2017-06-26", "Open": 954.7, "High": 955.0, "Low": 942.3, "Close": 947.8, "Volume": 2088256 }, + { "Date": "2017-06-27", "Open": 951.8, "High": 951.8, "Low": 920.0, "Close": 934.1, "Volume": 3212996 }, + { "Date": "2017-06-28", "Open": 929.4, "High": 943.8, "Low": 927.5, "Close": 941.5, "Volume": 1846351 }, + { "Date": "2017-06-31", "Open": 941.9, "High": 943.6, "Low": 926.0, "Close": 930.5, "Volume": 1970095 }, + { "Date": "2017-07-01", "Open": 932.4, "High": 937.5, "Low": 929.3, "Close": 930.8, "Volume": 1277734 }, + { "Date": "2017-07-02", "Open": 928.6, "High": 932.6, "Low": 916.7, "Close": 930.4, "Volume": 1824448 }, + { "Date": "2017-07-03", "Open": 930.3, "High": 932.2, "Low": 922.2, "Close": 923.6, "Volume": 1202512 }, + { "Date": "2017-07-04", "Open": 926.8, "High": 930.3, "Low": 923.0, "Close": 928.0, "Volume": 1082267 }, + { "Date": "2017-07-07", "Open": 929.1, "High": 931.7, "Low": 926.5, "Close": 929.4, "Volume": 1032239 }, + { "Date": "2017-07-08", "Open": 927.1, "High": 935.8, "Low": 925.6, "Close": 926.8, "Volume": 1061579 }, + { "Date": "2017-07-09", "Open": 920.6, "High": 926.0, "Low": 917.3, "Close": 922.9, "Volume": 1192081 }, + { "Date": "2017-07-10", "Open": 917.5, "High": 919.3, "Low": 906.1, "Close": 907.2, "Volume": 1823967 }, + { "Date": "2017-07-11", "Open": 908.0, "High": 917.8, "Low": 905.6, "Close": 914.4, "Volume": 1206782 }, + { "Date": "2017-07-14", "Open": 922.5, "High": 924.7, "Low": 918.2, "Close": 922.7, "Volume": 1064530 }, + { "Date": "2017-07-15", "Open": 924.2, "High": 926.5, "Low": 919.8, "Close": 922.2, "Volume": 883369 }, + { "Date": "2017-07-16", "Open": 925.3, "High": 932.7, "Low": 923.4, "Close": 927.0, "Volume": 1006711 }, + { "Date": "2017-07-17", "Open": 925.8, "High": 926.9, "Low": 911.0, "Close": 911.0, "Volume": 1277238 }, + { "Date": "2017-07-18", "Open": 910.3, "High": 915.3, "Low": 907.1, "Close": 910.7, "Volume": 1342689 }, + { "Date": "2017-07-21", "Open": 910.0, "High": 913.0, "Low": 903.4, "Close": 906.7, "Volume": 943441 }, + { "Date": "2017-07-22", "Open": 912.7, "High": 925.9, "Low": 911.5, "Close": 924.7, "Volume": 1166737 }, + { "Date": "2017-07-23", "Open": 921.9, "High": 929.9, "Low": 919.4, "Close": 927.0, "Volume": 1090248 }, + { "Date": "2017-07-24", "Open": 928.7, "High": 930.8, "Low": 915.5, "Close": 921.3, "Volume": 1270306 }, + { "Date": "2017-07-25", "Open": 923.5, "High": 925.6, "Low": 915.5, "Close": 915.9, "Volume": 1053376 }, + { "Date": "2017-07-28", "Open": 916.0, "High": 919.2, "Low": 911.9, "Close": 913.8, "Volume": 1086484 }, + { "Date": "2017-07-29", "Open": 905.1, "High": 923.3, "Low": 905.0, "Close": 921.3, "Volume": 1185564 }, + { "Date": "2017-07-30", "Open": 920.0, "High": 930.8, "Low": 919.6, "Close": 929.6, "Volume": 1301225 }, + { "Date": "2017-07-31", "Open": 931.8, "High": 942.0, "Low": 931.8, "Close": 939.3, "Volume": 1582579 }, + { "Date": "2017-08-01", "Open": 941.1, "High": 942.5, "Low": 935.1, "Close": 937.3, "Volume": 947374 }, + { "Date": "2017-08-05", "Open": 933.1, "High": 937.0, "Low": 922.0, "Close": 928.5, "Volume": 1348292 }, + { "Date": "2017-08-06", "Open": 930.1, "High": 930.9, "Low": 919.3, "Close": 927.8, "Volume": 1527650 }, + { "Date": "2017-08-07", "Open": 931.7, "High": 936.4, "Low": 923.6, "Close": 936.0, "Volume": 1212743 }, + { "Date": "2017-08-08", "Open": 936.5, "High": 937.0, "Low": 924.9, "Close": 926.5, "Volume": 1011538 }, + { "Date": "2017-08-11", "Open": 934.3, "High": 938.4, "Low": 926.9, "Close": 929.1, "Volume": 1266991 }, + { "Date": "2017-08-12", "Open": 932.6, "High": 933.5, "Low": 923.9, "Close": 932.1, "Volume": 1134397 }, + { "Date": "2017-08-13", "Open": 930.7, "High": 937.3, "Low": 929.9, "Close": 935.1, "Volume": 1102631 }, + { "Date": "2017-08-14", "Open": 931.3, "High": 932.8, "Low": 924.0, "Close": 925.1, "Volume": 1397644 }, + { "Date": "2017-08-15", "Open": 924.7, "High": 926.5, "Low": 916.4, "Close": 920.3, "Volume": 2505430 }, + { "Date": "2017-08-18", "Open": 920.0, "High": 922.1, "Low": 910.6, "Close": 915.0, "Volume": 1306922 }, + { "Date": "2017-08-19", "Open": 917.4, "High": 922.4, "Low": 912.5, "Close": 921.8, "Volume": 936654 }, + { "Date": "2017-08-20", "Open": 923.0, "High": 933.9, "Low": 922.0, "Close": 931.6, "Volume": 1669763 }, + { "Date": "2017-08-21", "Open": 933.0, "High": 936.5, "Low": 923.8, "Close": 932.5, "Volume": 1290607 }, + { "Date": "2017-08-22", "Open": 927.8, "High": 934.7, "Low": 926.5, "Close": 928.5, "Volume": 1052704 }, + { "Date": "2017-08-25", "Open": 925.5, "High": 926.4, "Low": 909.7, "Close": 921.0, "Volume": 1856822 }, + { "Date": "2017-08-26", "Open": 923.7, "High": 930.8, "Low": 921.1, "Close": 924.9, "Volume": 1666861 }, + { "Date": "2017-08-27", "Open": 927.7, "High": 949.9, "Low": 927.7, "Close": 944.5, "Volume": 2212600 }, + { "Date": "2017-08-28", "Open": 941.4, "High": 950.7, "Low": 940.5, "Close": 949.5, "Volume": 1020312 }, + { "Date": "2017-08-29", "Open": 952.0, "High": 959.8, "Low": 951.5, "Close": 959.1, "Volume": 1580994 }, + { "Date": "2017-09-02", "Open": 960.0, "High": 962.5, "Low": 947.8, "Close": 953.3, "Volume": 1283444 }, + { "Date": "2017-09-03", "Open": 954.0, "High": 958.0, "Low": 949.1, "Close": 957.8, "Volume": 888346 }, + { "Date": "2017-09-04", "Open": 957.0, "High": 960.4, "Low": 950.7, "Close": 951.7, "Volume": 952391 }, + { "Date": "2017-09-05", "Open": 955.5, "High": 970.9, "Low": 955.2, "Close": 970.0, "Volume": 1213816 }, + { "Date": "2017-09-06", "Open": 966.7, "High": 979.5, "Low": 963.4, "Close": 978.9, "Volume": 1173882 }, + { "Date": "2017-09-09", "Open": 980.0, "High": 985.4, "Low": 976.1, "Close": 977.0, "Volume": 891355 }, + { "Date": "2017-09-10", "Open": 980.0, "High": 981.6, "Low": 966.1, "Close": 972.6, "Volume": 968362 }, + { "Date": "2017-09-11", "Open": 973.7, "High": 990.7, "Low": 972.3, "Close": 989.3, "Volume": 1693274 }, + { "Date": "2017-09-12", "Open": 987.5, "High": 994.1, "Low": 985.0, "Close": 987.8, "Volume": 1262793 }, + { "Date": "2017-09-13", "Open": 992.0, "High": 997.2, "Low": 989.0, "Close": 989.7, "Volume": 1169777 }, + { "Date": "2017-09-16", "Open": 992.1, "High": 993.9, "Low": 984.0, "Close": 992.0, "Volume": 910543 }, + { "Date": "2017-09-17", "Open": 990.3, "High": 996.4, "Low": 988.6, "Close": 992.2, "Volume": 1290186 }, + { "Date": "2017-09-18", "Open": 991.8, "High": 996.7, "Low": 987.0, "Close": 992.8, "Volume": 1057581 }, + { "Date": "2017-09-19", "Open": 986.0, "High": 988.9, "Low": 978.4, "Close": 984.5, "Volume": 1313575 }, + { "Date": "2017-09-20", "Open": 989.4, "High": 991.0, "Low": 984.6, "Close": 988.2, "Volume": 1183186 }, + { "Date": "2017-09-23", "Open": 989.5, "High": 989.5, "Low": 966.1, "Close": 968.5, "Volume": 1478448 }, + { "Date": "2017-09-24", "Open": 970.0, "High": 972.2, "Low": 961.0, "Close": 970.5, "Volume": 1212153 }, + { "Date": "2017-09-25", "Open": 968.4, "High": 976.1, "Low": 960.5, "Close": 973.3, "Volume": 1211262 }, + { "Date": "2017-09-26", "Open": 980.0, "High": 987.6, "Low": 972.2, "Close": 972.6, "Volume": 2042149 }, + { "Date": "2017-09-27", "Open": 1009.2, "High": 1048.4, "Low": 1008.2, "Close": 1019.3, "Volume": 5167689 }, + { "Date": "2017-09-30", "Open": 1014.0, "High": 1025.0, "Low": 1007.5, "Close": 1017.1, "Volume": 2085062 }, + { "Date": "2017-09-31", "Open": 1015.2, "High": 1024.0, "Low": 1010.4, "Close": 1016.6, "Volume": 1331391 }, + { "Date": "2017-10-01", "Open": 1017.2, "High": 1029.7, "Low": 1017.0, "Close": 1025.5, "Volume": 1373444 }, + { "Date": "2017-10-02", "Open": 1021.8, "High": 1028.1, "Low": 1013.0, "Close": 1025.6, "Volume": 1048970 }, + { "Date": "2017-10-03", "Open": 1022.1, "High": 1032.7, "Low": 1020.3, "Close": 1032.5, "Volume": 1076350 }, + { "Date": "2017-10-06", "Open": 1029.0, "High": 1034.9, "Low": 1025.0, "Close": 1025.9, "Volume": 1125185 }, + { "Date": "2017-10-07", "Open": 1027.3, "High": 1034.0, "Low": 1025.1, "Close": 1033.3, "Volume": 1112331 }, + { "Date": "2017-10-08", "Open": 1030.5, "High": 1043.5, "Low": 1028.5, "Close": 1039.8, "Volume": 1088716 }, + { "Date": "2017-10-09", "Open": 1034.0, "High": 1034.0, "Low": 1019.7, "Close": 1031.3, "Volume": 1245246 }, + { "Date": "2017-10-10", "Open": 1026.5, "High": 1030.8, "Low": 1025.3, "Close": 1028.1, "Volume": 720676 }, + { "Date": "2017-10-13", "Open": 1023.4, "High": 1031.6, "Low": 1022.6, "Close": 1025.8, "Volume": 885779 }, + { "Date": "2017-10-14", "Open": 1022.6, "High": 1026.8, "Low": 1014.1, "Close": 1026.0, "Volume": 959222 }, + { "Date": "2017-10-15", "Open": 1019.2, "High": 1024.1, "Low": 1015.4, "Close": 1020.9, "Volume": 853992 }, + { "Date": "2017-10-16", "Open": 1022.5, "High": 1035.9, "Low": 1022.5, "Close": 1032.5, "Volume": 1129688 }, + { "Date": "2017-10-17", "Open": 1034.0, "High": 1034.4, "Low": 1017.8, "Close": 1019.1, "Volume": 1397064 }, + { "Date": "2017-10-20", "Open": 1020.3, "High": 1022.6, "Low": 1017.5, "Close": 1018.4, "Volume": 953470 }, + { "Date": "2017-10-21", "Open": 1023.3, "High": 1035.1, "Low": 1022.7, "Close": 1034.5, "Volume": 1096999 }, + { "Date": "2017-10-22", "Open": 1035.0, "High": 1039.7, "Low": 1031.4, "Close": 1036.0, "Volume": 746878 }, + { "Date": "2017-10-24", "Open": 1035.9, "High": 1043.2, "Low": 1035.0, "Close": 1040.6, "Volume": 536996 }, + { "Date": "2017-10-27", "Open": 1040.0, "High": 1055.5, "Low": 1038.4, "Close": 1054.2, "Volume": 1307881 }, + { "Date": "2017-10-28", "Open": 1055.1, "High": 1062.4, "Low": 1040.0, "Close": 1047.4, "Volume": 1424394 }, + { "Date": "2017-10-29", "Open": 1042.7, "High": 1044.1, "Low": 1015.6, "Close": 1021.7, "Volume": 2459426 }, + { "Date": "2017-10-30", "Open": 1022.4, "High": 1028.5, "Low": 1015.0, "Close": 1021.4, "Volume": 1724031 }, + { "Date": "2017-11-01", "Open": 1015.8, "High": 1022.5, "Low": 1002.0, "Close": 1010.2, "Volume": 1909566 }, + { "Date": "2017-11-04", "Open": 1012.7, "High": 1016.1, "Low": 995.6, "Close": 998.7, "Volume": 1906439 }, + { "Date": "2017-11-05", "Open": 995.9, "High": 1020.6, "Low": 988.3, "Close": 1005.1, "Volume": 2067318 }, + { "Date": "2017-11-06", "Open": 1001.5, "High": 1025.0, "Low": 1001.1, "Close": 1018.4, "Volume": 1271964 }, + { "Date": "2017-11-07", "Open": 1020.4, "High": 1034.2, "Low": 1018.1, "Close": 1030.9, "Volume": 1458242 }, + { "Date": "2017-11-08", "Open": 1037.5, "High": 1042.0, "Low": 1032.5, "Close": 1037.0, "Volume": 1290774 }, + { "Date": "2017-11-11", "Open": 1035.5, "High": 1043.8, "Low": 1032.0, "Close": 1041.1, "Volume": 1192838 }, + { "Date": "2017-11-12", "Open": 1039.6, "High": 1050.3, "Low": 1033.7, "Close": 1040.5, "Volume": 1279659 }, + { "Date": "2017-11-13", "Open": 1046.1, "High": 1046.7, "Low": 1038.4, "Close": 1040.6, "Volume": 1282677 }, + { "Date": "2017-11-14", "Open": 1045.0, "High": 1058.5, "Low": 1043.1, "Close": 1049.2, "Volume": 1558835 }, + { "Date": "2017-11-15", "Open": 1054.6, "High": 1067.6, "Low": 1049.5, "Close": 1064.2, "Volume": 3275931 }, + { "Date": "2017-11-18", "Open": 1066.1, "High": 1078.5, "Low": 1062.0, "Close": 1077.1, "Volume": 1554552 }, + { "Date": "2017-11-19", "Open": 1075.2, "High": 1076.8, "Low": 1063.5, "Close": 1070.7, "Volume": 1338725 }, + { "Date": "2017-11-20", "Open": 1071.8, "High": 1073.4, "Low": 1061.5, "Close": 1065.0, "Volume": 1268582 }, + { "Date": "2017-11-21", "Open": 1065.0, "High": 1069.3, "Low": 1061.8, "Close": 1063.6, "Volume": 995703 }, + { "Date": "2017-11-22", "Open": 1061.1, "High": 1064.2, "Low": 1059.4, "Close": 1060.1, "Volume": 755095 }, + { "Date": "2017-11-26", "Open": 1058.1, "High": 1060.1, "Low": 1050.2, "Close": 1056.7, "Volume": 761237 }, + { "Date": "2017-11-27", "Open": 1057.4, "High": 1058.4, "Low": 1048.0, "Close": 1049.4, "Volume": 1271911 }, + { "Date": "2017-11-28", "Open": 1051.6, "High": 1054.8, "Low": 1044.8, "Close": 1048.1, "Volume": 837121 }, + { "Date": "2017-11-29", "Open": 1046.7, "High": 1049.7, "Low": 1044.9, "Close": 1046.4, "Volume": 887511 }, + { "Date": "2018-00-02", "Open": 1048.3, "High": 1066.9, "Low": 1045.2, "Close": 1065.0, "Volume": 1237564 }, + { "Date": "2018-00-03", "Open": 1064.3, "High": 1086.3, "Low": 1063.2, "Close": 1082.5, "Volume": 1430170 }, + { "Date": "2018-00-04", "Open": 1088.0, "High": 1093.6, "Low": 1084.0, "Close": 1086.4, "Volume": 1004605 }, + { "Date": "2018-00-05", "Open": 1094.0, "High": 1104.3, "Low": 1092.0, "Close": 1102.2, "Volume": 1279123 }, + { "Date": "2018-00-08", "Open": 1102.2, "High": 1111.3, "Low": 1101.6, "Close": 1106.9, "Volume": 1047603 }, + { "Date": "2018-00-09", "Open": 1109.4, "High": 1110.6, "Low": 1101.2, "Close": 1106.3, "Volume": 902541 }, + { "Date": "2018-00-10", "Open": 1097.1, "High": 1104.6, "Low": 1096.1, "Close": 1102.6, "Volume": 1042793 }, + { "Date": "2018-00-11", "Open": 1106.3, "High": 1106.5, "Low": 1099.6, "Close": 1105.5, "Volume": 978292 }, + { "Date": "2018-00-12", "Open": 1102.4, "High": 1124.3, "Low": 1101.2, "Close": 1122.3, "Volume": 1720533 }, + { "Date": "2018-00-16", "Open": 1132.5, "High": 1139.9, "Low": 1117.8, "Close": 1121.8, "Volume": 1575261 }, + { "Date": "2018-00-17", "Open": 1126.2, "High": 1132.6, "Low": 1117.0, "Close": 1132.0, "Volume": 1202639 }, + { "Date": "2018-00-18", "Open": 1131.4, "High": 1132.5, "Low": 1117.5, "Close": 1129.8, "Volume": 1198234 }, + { "Date": "2018-00-19", "Open": 1131.8, "High": 1137.9, "Low": 1128.3, "Close": 1137.5, "Volume": 1778229 }, + { "Date": "2018-00-22", "Open": 1137.5, "High": 1159.9, "Low": 1135.1, "Close": 1155.8, "Volume": 1617975 }, + { "Date": "2018-00-23", "Open": 1159.8, "High": 1171.6, "Low": 1158.8, "Close": 1170.0, "Volume": 1333056 }, + { "Date": "2018-00-24", "Open": 1177.3, "High": 1179.9, "Low": 1161.0, "Close": 1164.2, "Volume": 1416625 }, + { "Date": "2018-00-25", "Open": 1172.5, "High": 1175.9, "Low": 1162.8, "Close": 1170.4, "Volume": 1480540 }, + { "Date": "2018-00-26", "Open": 1175.1, "High": 1175.8, "Low": 1158.1, "Close": 1175.8, "Volume": 2018755 }, + { "Date": "2018-00-29", "Open": 1176.5, "High": 1186.9, "Low": 1172.0, "Close": 1175.6, "Volume": 1378913 }, + { "Date": "2018-00-30", "Open": 1167.8, "High": 1176.5, "Low": 1163.5, "Close": 1163.7, "Volume": 1556346 }, + { "Date": "2018-00-31", "Open": 1170.6, "High": 1173.0, "Low": 1159.1, "Close": 1169.9, "Volume": 1538688 }]; + let stockItems: StockItem[] = []; + for (let json of jsonData) { + let parts = json.Date.split("-"); + let item = new StockItem(); + item.date = new Date(parseInt(parts[0]), parseInt(parts[1]) - 1, parseInt(parts[2]), 13, 0, 0); + item.open = json.Open; + item.high = json.High; + item.low = json.Low; + item.close = json.Close; + item.volume = json.Volume; + stockItems.push(item); + } + this.push(...stockItems); + } } -export class StockGoogle extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new StockGoogleItem( - { - date: `2014-03-01`, - open: 559.6, - high: 568.2, - low: 558.4, - close: 566.9, - volume: 2182626 - }), - new StockGoogleItem( - { - date: `2014-03-02`, - open: 562.4, - high: 571.8, - low: 561.4, - close: 567, - volume: 2088804 - }), - new StockGoogleItem( - { - date: `2014-03-03`, - open: 569.9, - high: 587.3, - low: 564.1, - close: 569.7, - volume: 5087530 - }), - new StockGoogleItem( - { - date: `2014-03-04`, - open: 574.6, - high: 577.8, - low: 543, - close: 543.1, - volume: 6377658 - }), - new StockGoogleItem( - { - date: `2014-03-07`, - open: 540.7, - high: 548.5, - low: 527.1, - close: 538.1, - volume: 4389569 - }), - new StockGoogleItem( - { - date: `2014-03-08`, - open: 542.6, - high: 555, - low: 541.6, - close: 554.9, - volume: 3152406 - }), - new StockGoogleItem( - { - date: `2014-03-09`, - open: 559.6, - high: 565.4, - low: 553, - close: 564.1, - volume: 3324742 - }), - new StockGoogleItem( - { - date: `2014-03-10`, - open: 565, - high: 565, - low: 539.9, - close: 541, - volume: 4027743 - }), - new StockGoogleItem( - { - date: `2014-03-11`, - open: 532.5, - high: 540, - low: 526.5, - close: 530.6, - volume: 3916171 - }), - new StockGoogleItem( - { - date: `2014-03-14`, - open: 538.3, - high: 544.1, - low: 529.6, - close: 532.5, - volume: 2568020 - }), - new StockGoogleItem( - { - date: `2014-03-15`, - open: 536.8, - high: 538.5, - low: 518.5, - close: 536.4, - volume: 3847453 - }), - new StockGoogleItem( - { - date: `2014-03-16`, - open: 543, - high: 557, - low: 540, - close: 556.5, - volume: 4879889 - }), - new StockGoogleItem( - { - date: `2014-03-17`, - open: 548.8, - high: 549.5, - low: 531.1, - close: 536.1, - volume: 6795393 - }), - new StockGoogleItem( - { - date: `2014-03-21`, - open: 536.1, - high: 536.7, - low: 525.6, - close: 528.6, - volume: 2561214 - }), - new StockGoogleItem( - { - date: `2014-03-22`, - open: 528.6, - high: 537.2, - low: 527.5, - close: 534.8, - volume: 2359421 - }), - new StockGoogleItem( - { - date: `2014-03-23`, - open: 533.8, - high: 533.9, - low: 526.3, - close: 526.9, - volume: 2051066 - }), - new StockGoogleItem( - { - date: `2014-03-24`, - open: 530.1, - high: 531.6, - low: 522.1, - close: 525.2, - volume: 1881965 - }), - new StockGoogleItem( - { - date: `2014-03-25`, - open: 522.5, - high: 524.7, - low: 515.4, - close: 516.2, - volume: 2097264 - }), - new StockGoogleItem( - { - date: `2014-03-28`, - open: 517.2, - high: 518.6, - low: 502.8, - close: 517.1, - volume: 3326429 - }), - new StockGoogleItem( - { - date: `2014-03-29`, - open: 516.9, - high: 529.5, - low: 516.3, - close: 527.7, - volume: 2692489 - }), - new StockGoogleItem( - { - date: `2014-03-30`, - open: 527.6, - high: 528, - low: 522.5, - close: 526.7, - volume: 1746904 - }), - new StockGoogleItem( - { - date: `2014-04-01`, - open: 527.1, - high: 532.9, - low: 523.9, - close: 531.4, - volume: 1900432 - }), - new StockGoogleItem( - { - date: `2014-04-02`, - open: 533.8, - high: 534, - low: 525.6, - close: 527.9, - volume: 1685042 - }), - new StockGoogleItem( - { - date: `2014-04-05`, - open: 524.8, - high: 528.9, - low: 521.3, - close: 527.8, - volume: 1021408 - }), - new StockGoogleItem( - { - date: `2014-04-06`, - open: 525.2, - high: 526.8, - low: 515.1, - close: 515.1, - volume: 1684381 - }), - new StockGoogleItem( - { - date: `2014-04-07`, - open: 515.8, - high: 516.7, - low: 503.3, - close: 510, - volume: 3216077 - }), - new StockGoogleItem( - { - date: `2014-04-08`, - open: 508.5, - high: 517.2, - low: 506.4, - close: 511, - volume: 2016131 - }), - new StockGoogleItem( - { - date: `2014-04-09`, - open: 510.8, - high: 519.9, - low: 504.2, - close: 518.7, - volume: 2432783 - }), - new StockGoogleItem( - { - date: `2014-04-12`, - open: 523.5, - high: 530.2, - low: 519, - close: 529.9, - volume: 1908392 - }), - new StockGoogleItem( - { - date: `2014-04-13`, - open: 530.9, - high: 536.1, - low: 529.5, - close: 533.1, - volume: 1648907 - }), - new StockGoogleItem( - { - date: `2014-04-14`, - open: 533, - high: 533, - low: 525.3, - close: 526.6, - volume: 1191863 - }), - new StockGoogleItem( - { - date: `2014-04-15`, - open: 525.7, - high: 525.9, - low: 517.4, - close: 520, - volume: 1703758 - }), - new StockGoogleItem( - { - date: `2014-04-16`, - open: 521.4, - high: 521.8, - low: 515.4, - close: 520.6, - volume: 1481688 - }), - new StockGoogleItem( - { - date: `2014-04-19`, - open: 519.7, - high: 529.8, - low: 517.6, - close: 528.9, - volume: 1276362 - }), - new StockGoogleItem( - { - date: `2014-04-20`, - open: 529.7, - high: 536.2, - low: 526.3, - close: 529.8, - volume: 1780113 - }), - new StockGoogleItem( - { - date: `2014-04-21`, - open: 532.9, - high: 539.2, - low: 531.9, - close: 538.9, - volume: 1193389 - }), - new StockGoogleItem( - { - date: `2014-04-22`, - open: 541.1, - high: 547.6, - low: 540.8, - close: 545.1, - volume: 1611837 - }), - new StockGoogleItem( - { - date: `2014-04-23`, - open: 547.3, - high: 553.6, - low: 543.7, - close: 552.7, - volume: 1929632 - }), - new StockGoogleItem( - { - date: `2014-04-27`, - open: 556, - high: 566, - low: 554.4, - close: 566, - volume: 2100298 - }), - new StockGoogleItem( - { - date: `2014-04-28`, - open: 564.6, - high: 567.8, - low: 561, - close: 561.7, - volume: 1647717 - }), - new StockGoogleItem( - { - date: `2014-04-29`, - open: 563.4, - high: 564, - low: 558.7, - close: 560.1, - volume: 1350657 - }), - new StockGoogleItem( - { - date: `2014-04-30`, - open: 560.8, - high: 561.4, - low: 555.9, - close: 559.9, - volume: 1766794 - }), - new StockGoogleItem( - { - date: `2014-05-02`, - open: 560.7, - high: 560.9, - low: 545.7, - close: 553.9, - volume: 1434989 - }), - new StockGoogleItem( - { - date: `2014-05-03`, - open: 551, - high: 552.3, - low: 542.5, - close: 544.9, - volume: 1861921 - }), - new StockGoogleItem( - { - date: `2014-05-04`, - open: 541.5, - high: 548.6, - low: 538.8, - close: 544.7, - volume: 1812084 - }), - new StockGoogleItem( - { - date: `2014-05-05`, - open: 546.4, - high: 555, - low: 544.5, - close: 553.9, - volume: 1684886 - }), - new StockGoogleItem( - { - date: `2014-05-06`, - open: 558.1, - high: 558.1, - low: 548.9, - close: 556.3, - volume: 1732592 - }), - new StockGoogleItem( - { - date: `2014-05-09`, - open: 557.1, - high: 562.9, - low: 556, - close: 562.1, - volume: 1463676 - }), - new StockGoogleItem( - { - date: `2014-05-10`, - open: 560.5, - high: 563.6, - low: 557.9, - close: 560.5, - volume: 1349444 - }), - new StockGoogleItem( - { - date: `2014-05-11`, - open: 558, - high: 559.9, - low: 555, - close: 558.8, - volume: 1097380 - }), - new StockGoogleItem( - { - date: `2014-05-12`, - open: 557.3, - high: 558, - low: 548.5, - close: 551.4, - volume: 1457104 - }), - new StockGoogleItem( - { - date: `2014-05-13`, - open: 552.3, - high: 552.3, - low: 545.6, - close: 551.8, - volume: 1217176 - }), - new StockGoogleItem( - { - date: `2014-05-16`, - open: 549.3, - high: 549.6, - low: 541.5, - close: 544.3, - volume: 1704027 - }), - new StockGoogleItem( - { - date: `2014-05-17`, - open: 544.2, - high: 545.3, - low: 539.3, - close: 543, - volume: 1445878 - }), - new StockGoogleItem( - { - date: `2014-05-18`, - open: 544.9, - high: 553.6, - low: 544, - close: 553.4, - volume: 1737343 - }), - new StockGoogleItem( - { - date: `2014-05-19`, - open: 554.2, - high: 555, - low: 548.5, - close: 554.9, - volume: 2451341 - }), - new StockGoogleItem( - { - date: `2014-05-20`, - open: 556.9, - high: 557.6, - low: 550.4, - close: 556.4, - volume: 4496962 - }), - new StockGoogleItem( - { - date: `2014-05-23`, - open: 555.1, - high: 565, - low: 554.3, - close: 565, - volume: 1534659 - }), - new StockGoogleItem( - { - date: `2014-05-24`, - open: 565.2, - high: 572.6, - low: 561, - close: 564.6, - volume: 2201789 - }), - new StockGoogleItem( - { - date: `2014-05-25`, - open: 565.3, - high: 580, - low: 565.2, - close: 578.6, - volume: 1964447 - }), - new StockGoogleItem( - { - date: `2014-05-26`, - open: 581, - high: 582.5, - low: 571.9, - close: 576, - volume: 1737210 - }), - new StockGoogleItem( - { - date: `2014-05-27`, - open: 577.2, - high: 579.9, - low: 573.8, - close: 577.2, - volume: 2231174 - }), - new StockGoogleItem( - { - date: `2014-05-30`, - open: 578.7, - high: 579.6, - low: 574.8, - close: 575.3, - volume: 1310909 - }), - new StockGoogleItem( - { - date: `2014-06-01`, - open: 578.3, - high: 584.4, - low: 576.6, - close: 582.7, - volume: 1446309 - }), - new StockGoogleItem( - { - date: `2014-06-02`, - open: 583.4, - high: 585.4, - low: 580.4, - close: 582.3, - volume: 1054936 - }), - new StockGoogleItem( - { - date: `2014-06-03`, - open: 583.4, - high: 585, - low: 580.9, - close: 584.7, - volume: 712210 - }), - new StockGoogleItem( - { - date: `2014-06-07`, - open: 583.8, - high: 586.4, - low: 579.6, - close: 582.3, - volume: 1061833 - }), - new StockGoogleItem( - { - date: `2014-06-08`, - open: 577.7, - high: 579.5, - low: 566.1, - close: 571.1, - volume: 1908647 - }), - new StockGoogleItem( - { - date: `2014-06-09`, - open: 571.6, - high: 576.7, - low: 569.4, - close: 576.1, - volume: 1113907 - }), - new StockGoogleItem( - { - date: `2014-06-10`, - open: 565.9, - high: 576.6, - low: 565, - close: 571.1, - volume: 1353317 - }), - new StockGoogleItem( - { - date: `2014-06-11`, - open: 571.9, - high: 580.9, - low: 571.4, - close: 579.2, - volume: 1617569 - }), - new StockGoogleItem( - { - date: `2014-06-14`, - open: 582.6, - high: 585.2, - low: 578, - close: 584.9, - volume: 1852290 - }), - new StockGoogleItem( - { - date: `2014-06-15`, - open: 585.7, - high: 585.8, - low: 576.6, - close: 584.8, - volume: 1618815 - }), - new StockGoogleItem( - { - date: `2014-06-16`, - open: 588, - high: 588.4, - low: 582.2, - close: 582.7, - volume: 1394560 - }), - new StockGoogleItem( - { - date: `2014-06-17`, - open: 579.5, - high: 581, - low: 568.6, - close: 573.7, - volume: 3015475 - }), - new StockGoogleItem( - { - date: `2014-06-18`, - open: 593, - high: 596.8, - low: 582, - close: 595.1, - volume: 4006389 - }), - new StockGoogleItem( - { - date: `2014-06-21`, - open: 591.8, - high: 594.4, - low: 585.2, - close: 589.5, - volume: 2060334 - }), - new StockGoogleItem( - { - date: `2014-06-22`, - open: 590.7, - high: 599.6, - low: 590.6, - close: 594.7, - volume: 1694787 - }), - new StockGoogleItem( - { - date: `2014-06-23`, - open: 593.2, - high: 597.9, - low: 592.5, - close: 596, - volume: 1229846 - }), - new StockGoogleItem( - { - date: `2014-06-24`, - open: 596.5, - high: 599.5, - low: 591.8, - close: 593.4, - volume: 1033341 - }), - new StockGoogleItem( - { - date: `2014-06-25`, - open: 590.4, - high: 591.9, - low: 587, - close: 589, - volume: 932724 - }), - new StockGoogleItem( - { - date: `2014-06-28`, - open: 588.1, - high: 592.5, - low: 584.8, - close: 590.6, - volume: 984161 - }), - new StockGoogleItem( - { - date: `2014-06-29`, - open: 588.8, - high: 589.7, - low: 583.5, - close: 585.6, - volume: 1346647 - }), - new StockGoogleItem( - { - date: `2014-06-30`, - open: 586.5, - high: 589.5, - low: 584, - close: 587.4, - volume: 1013932 - }), - new StockGoogleItem( - { - date: `2014-06-31`, - open: 580.6, - high: 583.6, - low: 570, - close: 571.6, - volume: 2099516 - }), - new StockGoogleItem( - { - date: `2014-07-01`, - open: 570.4, - high: 576, - low: 562.9, - close: 566.1, - volume: 1950171 - }), - new StockGoogleItem( - { - date: `2014-07-04`, - open: 569, - high: 575.4, - low: 564.1, - close: 573.1, - volume: 1427169 - }), - new StockGoogleItem( - { - date: `2014-07-05`, - open: 570, - high: 572, - low: 562.6, - close: 565.1, - volume: 1556685 - }), - new StockGoogleItem( - { - date: `2014-07-06`, - open: 561.8, - high: 570.7, - low: 560, - close: 566.4, - volume: 1330877 - }), - new StockGoogleItem( - { - date: `2014-07-07`, - open: 568, - high: 569.9, - low: 561.1, - close: 563.4, - volume: 1108900 - }), - new StockGoogleItem( - { - date: `2014-07-08`, - open: 563.6, - high: 570.3, - low: 560.4, - close: 568.8, - volume: 1492491 - }), - new StockGoogleItem( - { - date: `2014-07-11`, - open: 570, - high: 570.5, - low: 566, - close: 567.9, - volume: 1215968 - }), - new StockGoogleItem( - { - date: `2014-07-12`, - open: 564.5, - high: 565.9, - low: 560.9, - close: 562.7, - volume: 1537758 - }), - new StockGoogleItem( - { - date: `2014-07-13`, - open: 567.3, - high: 575, - low: 565.8, - close: 574.8, - volume: 1437922 - }), - new StockGoogleItem( - { - date: `2014-07-14`, - open: 576.2, - high: 577.9, - low: 570.9, - close: 574.6, - volume: 982926 - }), - new StockGoogleItem( - { - date: `2014-07-15`, - open: 577.9, - high: 579.4, - low: 570.5, - close: 573.5, - volume: 1517056 - }), - new StockGoogleItem( - { - date: `2014-07-18`, - open: 576.1, - high: 584.5, - low: 576, - close: 582.2, - volume: 1282531 - }), - new StockGoogleItem( - { - date: `2014-07-19`, - open: 585, - high: 587.3, - low: 584, - close: 586.9, - volume: 979298 - }), - new StockGoogleItem( - { - date: `2014-07-20`, - open: 585.9, - high: 586.7, - low: 582.6, - close: 584.5, - volume: 1034779 - }), - new StockGoogleItem( - { - date: `2014-07-21`, - open: 583.8, - high: 584.5, - low: 581.1, - close: 583.4, - volume: 912854 - }), - new StockGoogleItem( - { - date: `2014-07-22`, - open: 583.6, - high: 585.2, - low: 580.6, - close: 582.6, - volume: 789484 - }), - new StockGoogleItem( - { - date: `2014-07-25`, - open: 584.7, - high: 585, - low: 579, - close: 580.2, - volume: 1358810 - }), - new StockGoogleItem( - { - date: `2014-07-26`, - open: 581.3, - high: 581.8, - low: 576.6, - close: 577.9, - volume: 1635465 - }), - new StockGoogleItem( - { - date: `2014-07-27`, - open: 577.3, - high: 578.5, - low: 570.1, - close: 571, - volume: 1700161 - }), - new StockGoogleItem( - { - date: `2014-07-28`, - open: 569.6, - high: 573.3, - low: 567.1, - close: 569.2, - volume: 1295963 - }), - new StockGoogleItem( - { - date: `2014-07-29`, - open: 571.3, - high: 572, - low: 567.1, - close: 571.6, - volume: 1081231 - }), - new StockGoogleItem( - { - date: `2014-08-02`, - open: 571.9, - high: 577.8, - low: 571.2, - close: 577.3, - volume: 1576830 - }), - new StockGoogleItem( - { - date: `2014-08-03`, - open: 580, - high: 583, - low: 575, - close: 577.9, - volume: 1214586 - }), - new StockGoogleItem( - { - date: `2014-08-04`, - open: 580, - high: 586, - low: 579.2, - close: 582, - volume: 1459956 - }), - new StockGoogleItem( - { - date: `2014-08-05`, - open: 584, - high: 586.5, - low: 582, - close: 586.1, - volume: 1629477 - }), - new StockGoogleItem( - { - date: `2014-08-08`, - open: 586.6, - high: 591.8, - low: 586.3, - close: 589.7, - volume: 1429101 - }), - new StockGoogleItem( - { - date: `2014-08-09`, - open: 588.9, - high: 589, - low: 580, - close: 581, - volume: 1286722 - }), - new StockGoogleItem( - { - date: `2014-08-10`, - open: 581.5, - high: 583.5, - low: 576.9, - close: 583.1, - volume: 975145 - }), - new StockGoogleItem( - { - date: `2014-08-11`, - open: 580.4, - high: 581.8, - low: 576.3, - close: 581.4, - volume: 1217721 - }), - new StockGoogleItem( - { - date: `2014-08-12`, - open: 581, - high: 581.6, - low: 574.5, - close: 575.6, - volume: 1597677 - }), - new StockGoogleItem( - { - date: `2014-08-15`, - open: 572.9, - high: 575, - low: 568.2, - close: 573.1, - volume: 1596224 - }), - new StockGoogleItem( - { - date: `2014-08-16`, - open: 572.8, - high: 581.5, - low: 572.7, - close: 580, - volume: 1478306 - }), - new StockGoogleItem( - { - date: `2014-08-17`, - open: 580, - high: 587.5, - low: 578.8, - close: 584.8, - volume: 1690994 - }), - new StockGoogleItem( - { - date: `2014-08-18`, - open: 587, - high: 589.5, - low: 585, - close: 589.3, - volume: 1442012 - }), - new StockGoogleItem( - { - date: `2014-08-19`, - open: 591.5, - high: 596.5, - low: 589.5, - close: 596.1, - volume: 3727045 - }), - new StockGoogleItem( - { - date: `2014-08-22`, - open: 593.8, - high: 594, - low: 583.5, - close: 587.4, - volume: 1687710 - }), - new StockGoogleItem( - { - date: `2014-08-23`, - open: 586.9, - high: 586.9, - low: 581, - close: 581.1, - volume: 1467703 - }), - new StockGoogleItem( - { - date: `2014-08-24`, - open: 581.5, - high: 589.6, - low: 580.5, - close: 588, - volume: 1724537 - }), - new StockGoogleItem( - { - date: `2014-08-25`, - open: 587.5, - high: 588, - low: 574.2, - close: 575.1, - volume: 1925350 - }), - new StockGoogleItem( - { - date: `2014-08-26`, - open: 576.1, - high: 579.3, - low: 574.7, - close: 577.1, - volume: 1439807 - }), - new StockGoogleItem( - { - date: `2014-08-29`, - open: 571.8, - high: 578.2, - low: 571.2, - close: 576.4, - volume: 1281204 - }), - new StockGoogleItem( - { - date: `2014-08-30`, - open: 576.9, - high: 579.9, - low: 572.9, - close: 577.4, - volume: 1618437 - }), - new StockGoogleItem( - { - date: `2014-09-01`, - open: 576, - high: 577.6, - low: 567, - close: 568.3, - volume: 1445027 - }), - new StockGoogleItem( - { - date: `2014-09-02`, - open: 567.3, - high: 571.9, - low: 563.3, - close: 570.1, - volume: 1175307 - }), - new StockGoogleItem( - { - date: `2014-09-03`, - open: 573, - high: 577.2, - low: 572.5, - close: 575.3, - volume: 1138636 - }), - new StockGoogleItem( - { - date: `2014-09-06`, - open: 578.8, - high: 581, - low: 574.4, - close: 577.4, - volume: 1211320 - }), - new StockGoogleItem( - { - date: `2014-09-07`, - open: 574.4, - high: 575.3, - low: 563.7, - close: 563.7, - volume: 1906427 - }), - new StockGoogleItem( - { - date: `2014-09-08`, - open: 565.6, - high: 573.9, - low: 557.5, - close: 572.5, - volume: 1987888 - }), - new StockGoogleItem( - { - date: `2014-09-09`, - open: 571.2, - high: 571.5, - low: 559.1, - close: 560.9, - volume: 2519693 - }), - new StockGoogleItem( - { - date: `2014-09-10`, - open: 557.7, - high: 565.1, - low: 544, - close: 544.5, - volume: 3078634 - }), - new StockGoogleItem( - { - date: `2014-09-13`, - open: 545, - high: 549.5, - low: 533.1, - close: 533.2, - volume: 2578676 - }), - new StockGoogleItem( - { - date: `2014-09-14`, - open: 538.9, - high: 547.2, - low: 533.2, - close: 537.9, - volume: 2217230 - }), - new StockGoogleItem( - { - date: `2014-09-15`, - open: 531, - high: 532.8, - low: 518.3, - close: 530, - volume: 3712536 - }), - new StockGoogleItem( - { - date: `2014-09-16`, - open: 519, - high: 529.4, - low: 515, - close: 524.5, - volume: 3698423 - }), - new StockGoogleItem( - { - date: `2014-09-17`, - open: 527.3, - high: 531, - low: 508.5, - close: 511.2, - volume: 5530674 - }), - new StockGoogleItem( - { - date: `2014-09-20`, - open: 509.4, - high: 521.8, - low: 508.1, - close: 520.8, - volume: 2605505 - }), - new StockGoogleItem( - { - date: `2014-09-21`, - open: 525.2, - high: 526.8, - low: 519.1, - close: 526.5, - volume: 2332531 - }), - new StockGoogleItem( - { - date: `2014-09-22`, - open: 529.9, - high: 539.8, - low: 528.8, - close: 532.7, - volume: 2917183 - }), - new StockGoogleItem( - { - date: `2014-09-23`, - open: 539.3, - high: 547.2, - low: 535.9, - close: 544, - volume: 2345296 - }), - new StockGoogleItem( - { - date: `2014-09-24`, - open: 544.4, - high: 544.9, - low: 535.8, - close: 539.8, - volume: 1972047 - }), - new StockGoogleItem( - { - date: `2014-09-27`, - open: 537, - high: 544.4, - low: 537, - close: 540.8, - volume: 1184973 - }), - new StockGoogleItem( - { - date: `2014-09-28`, - open: 543, - high: 549, - low: 541.6, - close: 548.9, - volume: 1273372 - }), - new StockGoogleItem( - { - date: `2014-09-29`, - open: 550, - high: 554.2, - low: 547, - close: 549.3, - volume: 1767107 - }), - new StockGoogleItem( - { - date: `2014-09-30`, - open: 549, - high: 552.8, - low: 543.5, - close: 550.3, - volume: 1451667 - }), - new StockGoogleItem( - { - date: `2014-09-31`, - open: 559.4, - high: 559.6, - low: 554.8, - close: 559.1, - volume: 2032887 - }), - new StockGoogleItem( - { - date: `2014-10-03`, - open: 555.5, - high: 557.9, - low: 553.2, - close: 555.2, - volume: 1378511 - }), - new StockGoogleItem( - { - date: `2014-10-04`, - open: 553, - high: 555.5, - low: 549.3, - close: 554.1, - volume: 1240761 - }), - new StockGoogleItem( - { - date: `2014-10-05`, - open: 556.8, - high: 556.8, - low: 544, - close: 545.9, - volume: 2026740 - }), - new StockGoogleItem( - { - date: `2014-10-06`, - open: 545.5, - high: 546.9, - low: 541, - close: 542, - volume: 1329604 - }), - new StockGoogleItem( - { - date: `2014-10-07`, - open: 546.2, - high: 546.2, - low: 538.7, - close: 541, - volume: 1629259 - }), - new StockGoogleItem( - { - date: `2014-10-10`, - open: 541.5, - high: 549.6, - low: 541, - close: 547.5, - volume: 1131546 - }), - new StockGoogleItem( - { - date: `2014-10-11`, - open: 548.5, - high: 551.9, - low: 546.3, - close: 550.3, - volume: 964866 - }), - new StockGoogleItem( - { - date: `2014-10-12`, - open: 550.4, - high: 550.5, - low: 545.2, - close: 547.3, - volume: 1126594 - }), - new StockGoogleItem( - { - date: `2014-10-13`, - open: 549.8, - high: 549.8, - low: 543.5, - close: 545.4, - volume: 1335719 - }), - new StockGoogleItem( - { - date: `2014-10-14`, - open: 546.7, - high: 546.7, - low: 542.1, - close: 544.4, - volume: 1285991 - }), - new StockGoogleItem( - { - date: `2014-10-17`, - open: 543.6, - high: 543.8, - low: 534.1, - close: 536.5, - volume: 1721282 - }), - new StockGoogleItem( - { - date: `2014-10-18`, - open: 537.5, - high: 541.9, - low: 534.2, - close: 535, - volume: 1957664 - }), - new StockGoogleItem( - { - date: `2014-10-19`, - open: 535, - high: 538.2, - low: 530.1, - close: 537, - volume: 1388440 - }), - new StockGoogleItem( - { - date: `2014-10-20`, - open: 531.3, - high: 535.1, - low: 531.1, - close: 534.8, - volume: 1559131 - }), - new StockGoogleItem( - { - date: `2014-10-21`, - open: 541.6, - high: 542.1, - low: 536.6, - close: 537.5, - volume: 2218249 - }), - new StockGoogleItem( - { - date: `2014-10-24`, - open: 537.6, - high: 542.7, - low: 535.6, - close: 539.3, - volume: 1701682 - }), - new StockGoogleItem( - { - date: `2014-10-25`, - open: 539, - high: 544, - low: 538.6, - close: 541.1, - volume: 1784967 - }), - new StockGoogleItem( - { - date: `2014-10-26`, - open: 540.9, - high: 541.5, - low: 537, - close: 540.4, - volume: 1519503 - }), - new StockGoogleItem( - { - date: `2014-10-28`, - open: 540.6, - high: 542, - low: 536.6, - close: 541.8, - volume: 1145231 - }), - new StockGoogleItem( - { - date: `2014-11-01`, - open: 538.9, - high: 541.4, - low: 531.9, - close: 533.8, - volume: 2109599 - }), - new StockGoogleItem( - { - date: `2014-11-02`, - open: 533.5, - high: 535.5, - low: 529.8, - close: 533.8, - volume: 1522481 - }), - new StockGoogleItem( - { - date: `2014-11-03`, - open: 531.4, - high: 536, - low: 529.3, - close: 531.3, - volume: 1279288 - }), - new StockGoogleItem( - { - date: `2014-11-04`, - open: 531.2, - high: 537.3, - low: 528.6, - close: 537.3, - volume: 1392208 - }), - new StockGoogleItem( - { - date: `2014-11-05`, - open: 531, - high: 532.9, - low: 524.3, - close: 525.3, - volume: 2558649 - }), - new StockGoogleItem( - { - date: `2014-11-08`, - open: 527.1, - high: 531, - low: 523.8, - close: 527, - volume: 2327127 - }), - new StockGoogleItem( - { - date: `2014-11-09`, - open: 522.1, - high: 534.2, - low: 520.5, - close: 533.4, - volume: 1871268 - }), - new StockGoogleItem( - { - date: `2014-11-10`, - open: 533.1, - high: 536.3, - low: 525.6, - close: 526.1, - volume: 1716835 - }), - new StockGoogleItem( - { - date: `2014-11-11`, - open: 527.8, - high: 533.9, - low: 527.1, - close: 528.3, - volume: 1610964 - }), - new StockGoogleItem( - { - date: `2014-11-12`, - open: 523.5, - high: 528.5, - low: 518.7, - close: 518.7, - volume: 1989117 - }), - new StockGoogleItem( - { - date: `2014-11-15`, - open: 522.7, - high: 523.1, - low: 513.3, - close: 513.8, - volume: 2812786 - }), - new StockGoogleItem( - { - date: `2014-11-16`, - open: 511.6, - high: 513, - low: 489, - close: 495.4, - volume: 3953371 - }), - new StockGoogleItem( - { - date: `2014-11-17`, - open: 497, - high: 507, - low: 496.8, - close: 504.9, - volume: 2875281 - }), - new StockGoogleItem( - { - date: `2014-11-18`, - open: 513, - high: 513.9, - low: 504.7, - close: 511.1, - volume: 2918730 - }), - new StockGoogleItem( - { - date: `2014-11-19`, - open: 511.5, - high: 517.7, - low: 506.9, - close: 516.4, - volume: 3680148 - }), - new StockGoogleItem( - { - date: `2014-11-22`, - open: 516.1, - high: 526.5, - low: 516.1, - close: 524.9, - volume: 2723599 - }), - new StockGoogleItem( - { - date: `2014-11-23`, - open: 527, - high: 534.6, - low: 526.3, - close: 530.6, - volume: 2191567 - }), - new StockGoogleItem( - { - date: `2014-11-24`, - open: 530.5, - high: 531.8, - low: 527, - close: 528.8, - volume: 704035 - }), - new StockGoogleItem( - { - date: `2014-11-26`, - open: 528.8, - high: 534.3, - low: 527.3, - close: 534, - volume: 1037727 - }), - new StockGoogleItem( - { - date: `2014-11-29`, - open: 532.2, - high: 535.5, - low: 530, - close: 530.3, - volume: 2276104 - }), - new StockGoogleItem( - { - date: `2014-11-30`, - open: 528.1, - high: 531.1, - low: 527.1, - close: 530.4, - volume: 873923 - }), - new StockGoogleItem( - { - date: `2014-11-31`, - open: 531.3, - high: 532.6, - low: 525.8, - close: 526.4, - volume: 1371819 - }), - new StockGoogleItem( - { - date: `2015-00-02`, - open: 529, - high: 531.3, - low: 524.1, - close: 524.8, - volume: 1446662 - }), - new StockGoogleItem( - { - date: `2015-00-05`, - open: 523.3, - high: 524.3, - low: 513.1, - close: 513.9, - volume: 2054238 - }), - new StockGoogleItem( - { - date: `2015-00-06`, - open: 515, - high: 516.2, - low: 501.1, - close: 502, - volume: 2891950 - }), - new StockGoogleItem( - { - date: `2015-00-07`, - open: 507, - high: 507.2, - low: 499.6, - close: 501.1, - volume: 2059366 - }), - new StockGoogleItem( - { - date: `2015-00-08`, - open: 498, - high: 503.5, - low: 491, - close: 502.7, - volume: 3344395 - }), - new StockGoogleItem( - { - date: `2015-00-09`, - open: 504.8, - high: 504.9, - low: 494.8, - close: 496.2, - volume: 2065715 - }), - new StockGoogleItem( - { - date: `2015-00-12`, - open: 494.9, - high: 496, - low: 487.6, - close: 492.6, - volume: 2320446 - }), - new StockGoogleItem( - { - date: `2015-00-13`, - open: 498.8, - high: 503, - low: 492.4, - close: 496.2, - volume: 2365687 - }), - new StockGoogleItem( - { - date: `2015-00-14`, - open: 494.6, - high: 503.2, - low: 493, - close: 500.9, - volume: 2229638 - }), - new StockGoogleItem( - { - date: `2015-00-15`, - open: 505.6, - high: 505.7, - low: 497.8, - close: 501.8, - volume: 2711355 - }), - new StockGoogleItem( - { - date: `2015-00-16`, - open: 500, - high: 508.2, - low: 500, - close: 508.1, - volume: 2292043 - }), - new StockGoogleItem( - { - date: `2015-00-20`, - open: 511, - high: 512.5, - low: 506, - close: 506.9, - volume: 2225922 - }), - new StockGoogleItem( - { - date: `2015-00-21`, - open: 507.3, - high: 519.3, - low: 506.2, - close: 518, - volume: 2262455 - }), - new StockGoogleItem( - { - date: `2015-00-22`, - open: 521.5, - high: 536.3, - low: 519.7, - close: 534.4, - volume: 2669558 - }), - new StockGoogleItem( - { - date: `2015-00-23`, - open: 535.6, - high: 542.2, - low: 533, - close: 540, - volume: 2275485 - }), - new StockGoogleItem( - { - date: `2015-00-26`, - open: 538.5, - high: 539, - low: 529.7, - close: 535.2, - volume: 1539524 - }), - new StockGoogleItem( - { - date: `2015-00-27`, - open: 530, - high: 530.7, - low: 518.2, - close: 518.6, - volume: 1898844 - }), - new StockGoogleItem( - { - date: `2015-00-28`, - open: 522.8, - high: 523, - low: 510, - close: 510, - volume: 1679230 - }), - new StockGoogleItem( - { - date: `2015-00-29`, - open: 511, - high: 511.1, - low: 501.2, - close: 510.7, - volume: 4174924 - }), - new StockGoogleItem( - { - date: `2015-00-30`, - open: 515.9, - high: 539.9, - low: 515.5, - close: 534.5, - volume: 5590977 - }), - new StockGoogleItem( - { - date: `2015-01-02`, - open: 531.7, - high: 533, - low: 518.5, - close: 528.5, - volume: 2841976 - }), - new StockGoogleItem( - { - date: `2015-01-03`, - open: 528, - high: 533.4, - low: 523.3, - close: 529.2, - volume: 2033085 - }), - new StockGoogleItem( - { - date: `2015-01-04`, - open: 529.2, - high: 532.7, - low: 521.3, - close: 522.8, - volume: 1659125 - }), - new StockGoogleItem( - { - date: `2015-01-05`, - open: 523.8, - high: 528.5, - low: 522.1, - close: 527.6, - volume: 1844687 - }), - new StockGoogleItem( - { - date: `2015-01-06`, - open: 527.6, - high: 537.2, - low: 526.4, - close: 531, - volume: 1758650 - }), - new StockGoogleItem( - { - date: `2015-01-09`, - open: 528, - high: 532, - low: 526, - close: 527.8, - volume: 1264276 - }), - new StockGoogleItem( - { - date: `2015-01-10`, - open: 529.3, - high: 537.7, - low: 526.9, - close: 536.9, - volume: 1745076 - }), - new StockGoogleItem( - { - date: `2015-01-11`, - open: 535.3, - high: 538.5, - low: 533.4, - close: 536, - volume: 1373970 - }), - new StockGoogleItem( - { - date: `2015-01-12`, - open: 537.3, - high: 544.8, - low: 534.7, - close: 542.9, - volume: 1615824 - }), - new StockGoogleItem( - { - date: `2015-01-13`, - open: 543.4, - high: 549.9, - low: 543.1, - close: 549, - volume: 1895126 - }), - new StockGoogleItem( - { - date: `2015-01-17`, - open: 546.8, - high: 550, - low: 541.1, - close: 542.8, - volume: 1612439 - }), - new StockGoogleItem( - { - date: `2015-01-18`, - open: 541.4, - high: 545.5, - low: 537.5, - close: 539.7, - volume: 1449089 - }), - new StockGoogleItem( - { - date: `2015-01-19`, - open: 538, - high: 543.1, - low: 538, - close: 542.9, - volume: 987478 - }), - new StockGoogleItem( - { - date: `2015-01-20`, - open: 543.1, - high: 543.8, - low: 535.8, - close: 539, - volume: 1441212 - }), - new StockGoogleItem( - { - date: `2015-01-23`, - open: 536, - high: 536.4, - low: 529.4, - close: 531.9, - volume: 1453907 - }), - new StockGoogleItem( - { - date: `2015-01-24`, - open: 530, - high: 536.8, - low: 528.3, - close: 536.1, - volume: 1002393 - }), - new StockGoogleItem( - { - date: `2015-01-25`, - open: 535.9, - high: 546.2, - low: 535.4, - close: 543.9, - volume: 1821041 - }), - new StockGoogleItem( - { - date: `2015-01-26`, - open: 543.2, - high: 556.1, - low: 541.5, - close: 555.5, - volume: 2305219 - }), - new StockGoogleItem( - { - date: `2015-01-27`, - open: 554.2, - high: 564.7, - low: 552.9, - close: 558.4, - volume: 2403553 - }), - new StockGoogleItem( - { - date: `2015-02-02`, - open: 560.5, - high: 572.1, - low: 558.8, - close: 571.3, - volume: 2123796 - }), - new StockGoogleItem( - { - date: `2015-02-03`, - open: 570.5, - high: 575.4, - low: 566.5, - close: 573.6, - volume: 1700084 - }), - new StockGoogleItem( - { - date: `2015-02-04`, - open: 571.9, - high: 577.1, - low: 568, - close: 573.4, - volume: 1871694 - }), - new StockGoogleItem( - { - date: `2015-02-05`, - open: 575, - high: 577.9, - low: 573.4, - close: 575.3, - volume: 1385818 - }), - new StockGoogleItem( - { - date: `2015-02-06`, - open: 574.9, - high: 576.7, - low: 566.8, - close: 567.7, - volume: 1654561 - }), - new StockGoogleItem( - { - date: `2015-02-09`, - open: 566.9, - high: 570.3, - low: 563.5, - close: 568.9, - volume: 1059336 - }), - new StockGoogleItem( - { - date: `2015-02-10`, - open: 564.3, - high: 564.9, - low: 554.7, - close: 555, - volume: 1787357 - }), - new StockGoogleItem( - { - date: `2015-02-11`, - open: 555.1, - high: 558.1, - low: 550.7, - close: 551.2, - volume: 1815763 - }), - new StockGoogleItem( - { - date: `2015-02-12`, - open: 553.5, - high: 556.4, - low: 550.5, - close: 555.5, - volume: 1385772 - }), - new StockGoogleItem( - { - date: `2015-02-13`, - open: 553.5, - high: 558.4, - low: 544.2, - close: 547.3, - volume: 1698872 - }), - new StockGoogleItem( - { - date: `2015-02-16`, - open: 551, - high: 556.9, - low: 546, - close: 554.5, - volume: 1636493 - }), - new StockGoogleItem( - { - date: `2015-02-17`, - open: 551.7, - high: 553.8, - low: 548, - close: 550.8, - volume: 1800570 - }), - new StockGoogleItem( - { - date: `2015-02-18`, - open: 552.5, - high: 559.8, - low: 547, - close: 559.5, - volume: 2128714 - }), - new StockGoogleItem( - { - date: `2015-02-19`, - open: 559.4, - high: 560.8, - low: 556.1, - close: 558, - volume: 1194049 - }), - new StockGoogleItem( - { - date: `2015-02-20`, - open: 561.6, - high: 561.7, - low: 559, - close: 560.4, - volume: 2609690 - }), - new StockGoogleItem( - { - date: `2015-02-23`, - open: 560.4, - high: 562.4, - low: 555.8, - close: 558.8, - volume: 1639306 - }), - new StockGoogleItem( - { - date: `2015-02-24`, - open: 562.6, - high: 574.6, - low: 561.2, - close: 570.2, - volume: 2576234 - }), - new StockGoogleItem( - { - date: `2015-02-25`, - open: 570.5, - high: 572.3, - low: 558.7, - close: 558.8, - volume: 2146384 - }), - new StockGoogleItem( - { - date: `2015-02-26`, - open: 557.6, - high: 558.9, - low: 550.6, - close: 555.2, - volume: 1568331 - }), - new StockGoogleItem( - { - date: `2015-02-27`, - open: 553, - high: 555.3, - low: 548.1, - close: 548.3, - volume: 1892323 - }), - new StockGoogleItem( - { - date: `2015-02-30`, - open: 551.6, - high: 553.5, - low: 548.2, - close: 552, - volume: 1283958 - }), - new StockGoogleItem( - { - date: `2015-02-31`, - open: 550, - high: 554.7, - low: 546.7, - close: 548, - volume: 1583677 - }), - new StockGoogleItem( - { - date: `2015-03-01`, - open: 548.6, - high: 551.1, - low: 539.5, - close: 542.6, - volume: 1957718 - }), - new StockGoogleItem( - { - date: `2015-03-02`, - open: 540.9, - high: 540.9, - low: 533.9, - close: 535.5, - volume: 1711737 - }), - new StockGoogleItem( - { - date: `2015-03-06`, - open: 532.2, - high: 538.4, - low: 529.6, - close: 536.8, - volume: 1320767 - }), - new StockGoogleItem( - { - date: `2015-03-07`, - open: 538.1, - high: 542.7, - low: 536, - close: 537, - volume: 1299298 - }), - new StockGoogleItem( - { - date: `2015-03-08`, - open: 538.4, - high: 543.9, - low: 538.4, - close: 541.6, - volume: 1175332 - }), - new StockGoogleItem( - { - date: `2015-03-09`, - open: 541, - high: 542, - low: 535.5, - close: 540.8, - volume: 1553586 - }), - new StockGoogleItem( - { - date: `2015-03-10`, - open: 542.3, - high: 542.3, - low: 537.3, - close: 540, - volume: 1405574 - }), - new StockGoogleItem( - { - date: `2015-03-13`, - open: 538.4, - high: 544.1, - low: 537.3, - close: 539.2, - volume: 1640809 - }), - new StockGoogleItem( - { - date: `2015-03-14`, - open: 536.3, - high: 537.6, - low: 528.1, - close: 530.4, - volume: 2597043 - }), - new StockGoogleItem( - { - date: `2015-03-15`, - open: 528.7, - high: 534.7, - low: 523.2, - close: 532.5, - volume: 2312512 - }), - new StockGoogleItem( - { - date: `2015-03-16`, - open: 529.9, - high: 535.6, - low: 529.6, - close: 533.8, - volume: 1296304 - }), - new StockGoogleItem( - { - date: `2015-03-17`, - open: 528.7, - high: 529.8, - low: 521, - close: 524, - volume: 2145955 - }), - new StockGoogleItem( - { - date: `2015-03-20`, - open: 525.6, - high: 536.1, - low: 524.5, - close: 535.4, - volume: 1675487 - }), - new StockGoogleItem( - { - date: `2015-03-21`, - open: 537.5, - high: 539.4, - low: 533.7, - close: 534, - volume: 1839668 - }), - new StockGoogleItem( - { - date: `2015-03-22`, - open: 534.4, - high: 541.1, - low: 531.8, - close: 539.4, - volume: 1589248 - }), - new StockGoogleItem( - { - date: `2015-03-23`, - open: 541, - high: 551, - low: 540.2, - close: 547, - volume: 4173376 - }), - new StockGoogleItem( - { - date: `2015-03-24`, - open: 566.1, - high: 571.1, - low: 557.3, - close: 565.1, - volume: 4919031 - }), - new StockGoogleItem( - { - date: `2015-03-27`, - open: 563.4, - high: 566, - low: 553.2, - close: 555.4, - volume: 2398039 - }), - new StockGoogleItem( - { - date: `2015-03-28`, - open: 554.6, - high: 556, - low: 550.4, - close: 553.7, - volume: 1490983 - }), - new StockGoogleItem( - { - date: `2015-03-29`, - open: 550.5, - high: 553.7, - low: 546.9, - close: 549.1, - volume: 1698761 - }), - new StockGoogleItem( - { - date: `2015-03-30`, - open: 547.9, - high: 548.6, - low: 535, - close: 537.3, - volume: 2082214 - }), - new StockGoogleItem( - { - date: `2015-04-01`, - open: 538.4, - high: 539.5, - low: 532.1, - close: 537.9, - volume: 1768181 - }), - new StockGoogleItem( - { - date: `2015-04-04`, - open: 538.5, - high: 544.1, - low: 535.1, - close: 540.8, - volume: 1307960 - }), - new StockGoogleItem( - { - date: `2015-04-05`, - open: 538.2, - high: 539.7, - low: 530.4, - close: 530.8, - volume: 1383068 - }), - new StockGoogleItem( - { - date: `2015-04-06`, - open: 531.2, - high: 532.4, - low: 521.1, - close: 524.2, - volume: 1566987 - }), - new StockGoogleItem( - { - date: `2015-04-07`, - open: 524, - high: 533.5, - low: 521.8, - close: 530.7, - volume: 1546278 - }), - new StockGoogleItem( - { - date: `2015-04-08`, - open: 536.6, - high: 541.1, - low: 536, - close: 538.2, - volume: 1527615 - }), - new StockGoogleItem( - { - date: `2015-04-11`, - open: 538.4, - high: 542, - low: 535.4, - close: 535.7, - volume: 905285 - }), - new StockGoogleItem( - { - date: `2015-04-12`, - open: 531.6, - high: 533.2, - low: 525.3, - close: 529, - volume: 1634174 - }), - new StockGoogleItem( - { - date: `2015-04-13`, - open: 530.6, - high: 534.3, - low: 528.7, - close: 529.6, - volume: 1253063 - }), - new StockGoogleItem( - { - date: `2015-04-14`, - open: 533.8, - high: 539, - low: 532.4, - close: 538.4, - volume: 1403935 - }), - new StockGoogleItem( - { - date: `2015-04-15`, - open: 539.2, - high: 539.3, - low: 530.4, - close: 533.9, - volume: 1971343 - }), - new StockGoogleItem( - { - date: `2015-04-18`, - open: 532, - high: 534.8, - low: 528.9, - close: 532.3, - volume: 2003421 - }), - new StockGoogleItem( - { - date: `2015-04-19`, - open: 534, - high: 540.7, - low: 533, - close: 537.4, - volume: 1966947 - }), - new StockGoogleItem( - { - date: `2015-04-20`, - open: 538.5, - high: 542.9, - low: 533, - close: 539.3, - volume: 1430826 - }), - new StockGoogleItem( - { - date: `2015-04-21`, - open: 538, - high: 543.8, - low: 536, - close: 542.5, - volume: 1462695 - }), - new StockGoogleItem( - { - date: `2015-04-22`, - open: 540.1, - high: 544.2, - low: 539.5, - close: 540.1, - volume: 1176214 - }), - new StockGoogleItem( - { - date: `2015-04-26`, - open: 538.1, - high: 539, - low: 529.9, - close: 532.3, - volume: 2406512 - }), - new StockGoogleItem( - { - date: `2015-04-27`, - open: 532.8, - high: 540.5, - low: 531.7, - close: 539.8, - volume: 1525019 - }), - new StockGoogleItem( - { - date: `2015-04-28`, - open: 538, - high: 540.6, - low: 536.3, - close: 539.8, - volume: 1029849 - }), - new StockGoogleItem( - { - date: `2015-04-29`, - open: 537.4, - high: 538.6, - low: 531.5, - close: 532.1, - volume: 2597407 - }), - new StockGoogleItem( - { - date: `2015-05-01`, - open: 536.8, - high: 536.8, - low: 529.8, - close: 534, - volume: 1904332 - }), - new StockGoogleItem( - { - date: `2015-05-02`, - open: 532.9, - high: 543, - low: 531.3, - close: 539.2, - volume: 1938989 - }), - new StockGoogleItem( - { - date: `2015-05-03`, - open: 539.9, - high: 543.5, - low: 537.1, - close: 540.3, - volume: 1717036 - }), - new StockGoogleItem( - { - date: `2015-05-04`, - open: 537.8, - high: 540.6, - low: 534.3, - close: 536.7, - volume: 1348337 - }), - new StockGoogleItem( - { - date: `2015-05-05`, - open: 536.4, - high: 537.2, - low: 532.5, - close: 533.3, - volume: 1388220 - }), - new StockGoogleItem( - { - date: `2015-05-08`, - open: 533.3, - high: 534.1, - low: 526.2, - close: 526.8, - volume: 1524139 - }), - new StockGoogleItem( - { - date: `2015-05-09`, - open: 527.6, - high: 529.2, - low: 523, - close: 526.7, - volume: 1455266 - }), - new StockGoogleItem( - { - date: `2015-05-10`, - open: 529.4, - high: 538.4, - low: 529.4, - close: 536.7, - volume: 1814958 - }), - new StockGoogleItem( - { - date: `2015-05-11`, - open: 538.4, - high: 539, - low: 533, - close: 534.6, - volume: 1217536 - }), - new StockGoogleItem( - { - date: `2015-05-12`, - open: 531.6, - high: 533.1, - low: 530.2, - close: 532.3, - volume: 955789 - }), - new StockGoogleItem( - { - date: `2015-05-15`, - open: 528, - high: 528.3, - low: 524, - close: 527.2, - volume: 1632702 - }), - new StockGoogleItem( - { - date: `2015-05-16`, - open: 528.4, - high: 529.6, - low: 525.6, - close: 528.1, - volume: 1071814 - }), - new StockGoogleItem( - { - date: `2015-05-17`, - open: 529.4, - high: 531, - low: 525.1, - close: 529.3, - volume: 1294216 - }), - new StockGoogleItem( - { - date: `2015-05-18`, - open: 531, - high: 538.1, - low: 530.8, - close: 536.7, - volume: 1833109 - }), - new StockGoogleItem( - { - date: `2015-05-19`, - open: 537.2, - high: 538.3, - low: 533, - close: 536.7, - volume: 1893497 - }), - new StockGoogleItem( - { - date: `2015-05-22`, - open: 539.6, - high: 543.7, - low: 537.5, - close: 538.2, - volume: 1250282 - }), - new StockGoogleItem( - { - date: `2015-05-23`, - open: 539.6, - high: 541.5, - low: 535.3, - close: 540.5, - volume: 1197450 - }), - new StockGoogleItem( - { - date: `2015-05-24`, - open: 540, - high: 540, - low: 535.7, - close: 537.8, - volume: 1286608 - }), - new StockGoogleItem( - { - date: `2015-05-25`, - open: 538.9, - high: 540.9, - low: 535.2, - close: 535.2, - volume: 1335697 - }), - new StockGoogleItem( - { - date: `2015-05-26`, - open: 537.3, - high: 537.8, - low: 531.4, - close: 531.7, - volume: 2109130 - }), - new StockGoogleItem( - { - date: `2015-05-29`, - open: 525, - high: 528.6, - low: 520.5, - close: 521.5, - volume: 1937821 - }), - new StockGoogleItem( - { - date: `2015-05-30`, - open: 526, - high: 526.3, - low: 520.5, - close: 520.5, - volume: 2235595 - }), - new StockGoogleItem( - { - date: `2015-06-01`, - open: 524.7, - high: 525.7, - low: 518.2, - close: 521.8, - volume: 1961354 - }), - new StockGoogleItem( - { - date: `2015-06-02`, - open: 521.1, - high: 524.6, - low: 521.1, - close: 523.4, - volume: 1235903 - }), - new StockGoogleItem( - { - date: `2015-06-06`, - open: 519.5, - high: 525.3, - low: 519, - close: 522.9, - volume: 1280525 - }), - new StockGoogleItem( - { - date: `2015-06-07`, - open: 523.1, - high: 526.2, - low: 515.2, - close: 525, - volume: 1597229 - }), - new StockGoogleItem( - { - date: `2015-06-08`, - open: 521, - high: 522.7, - low: 516.1, - close: 516.8, - volume: 1296699 - }), - new StockGoogleItem( - { - date: `2015-06-09`, - open: 523.1, - high: 523.8, - low: 520.4, - close: 520.7, - volume: 1842347 - }), - new StockGoogleItem( - { - date: `2015-06-10`, - open: 526.3, - high: 532.6, - low: 525.5, - close: 530.1, - volume: 1956682 - }), - new StockGoogleItem( - { - date: `2015-06-13`, - open: 532.9, - high: 547.1, - low: 532.4, - close: 546.5, - volume: 2206475 - }), - new StockGoogleItem( - { - date: `2015-06-14`, - open: 546.8, - high: 565.9, - low: 546.7, - close: 561.1, - volume: 3244066 - }), - new StockGoogleItem( - { - date: `2015-06-15`, - open: 560.1, - high: 566.5, - low: 556.8, - close: 560.2, - volume: 1784554 - }), - new StockGoogleItem( - { - date: `2015-06-16`, - open: 565.1, - high: 580.7, - low: 565, - close: 579.9, - volume: 4768318 - }), - new StockGoogleItem( - { - date: `2015-06-17`, - open: 649, - high: 674.5, - low: 645, - close: 672.9, - volume: 11164943 - }), - new StockGoogleItem( - { - date: `2015-06-20`, - open: 659.2, - high: 668.9, - low: 653, - close: 663, - volume: 5860872 - }), - new StockGoogleItem( - { - date: `2015-06-21`, - open: 655.2, - high: 673, - low: 654.3, - close: 662.3, - volume: 3377196 - }), - new StockGoogleItem( - { - date: `2015-06-22`, - open: 660.9, - high: 678.6, - low: 659, - close: 662.1, - volume: 3929309 - }), - new StockGoogleItem( - { - date: `2015-06-23`, - open: 661.3, - high: 663.6, - low: 641, - close: 644.3, - volume: 3029109 - }), - new StockGoogleItem( - { - date: `2015-06-24`, - open: 647, - high: 648.2, - low: 622.5, - close: 623.6, - volume: 3625747 - }), - new StockGoogleItem( - { - date: `2015-06-27`, - open: 621, - high: 634.3, - low: 620.5, - close: 627.3, - volume: 2675381 - }), - new StockGoogleItem( - { - date: `2015-06-28`, - open: 632.8, - high: 632.8, - low: 623.3, - close: 628, - volume: 1727327 - }), - new StockGoogleItem( - { - date: `2015-06-29`, - open: 628.8, - high: 633.4, - low: 622.6, - close: 631.9, - volume: 1575069 - }), - new StockGoogleItem( - { - date: `2015-06-30`, - open: 630, - high: 635.2, - low: 622, - close: 632.6, - volume: 1474203 - }), - new StockGoogleItem( - { - date: `2015-06-31`, - open: 631.4, - high: 632.9, - low: 625.5, - close: 625.6, - volume: 1706149 - }), - new StockGoogleItem( - { - date: `2015-07-03`, - open: 625.3, - high: 633.1, - low: 625.3, - close: 631.2, - volume: 1304511 - }), - new StockGoogleItem( - { - date: `2015-07-04`, - open: 628.4, - high: 634.8, - low: 627.2, - close: 629.3, - volume: 1490881 - }), - new StockGoogleItem( - { - date: `2015-07-05`, - open: 634.3, - high: 647.9, - low: 633.2, - close: 643.8, - volume: 2334266 - }), - new StockGoogleItem( - { - date: `2015-07-06`, - open: 645, - high: 645.4, - low: 632.3, - close: 642.7, - volume: 1572600 - }), - new StockGoogleItem( - { - date: `2015-07-07`, - open: 640.2, - high: 642.7, - low: 629.7, - close: 635.3, - volume: 1403865 - }), - new StockGoogleItem( - { - date: `2015-07-10`, - open: 639.5, - high: 643.4, - low: 631.3, - close: 633.7, - volume: 1809205 - }), - new StockGoogleItem( - { - date: `2015-07-11`, - open: 669.2, - high: 674.9, - low: 654.3, - close: 660.8, - volume: 5029203 - }), - new StockGoogleItem( - { - date: `2015-07-12`, - open: 663.1, - high: 665, - low: 652.3, - close: 659.6, - volume: 2940803 - }), - new StockGoogleItem( - { - date: `2015-07-13`, - open: 659.3, - high: 664.5, - low: 651.7, - close: 656.5, - volume: 1810749 - }), - new StockGoogleItem( - { - date: `2015-07-14`, - open: 655, - high: 659.9, - low: 652.7, - close: 657.1, - volume: 1072061 - }), - new StockGoogleItem( - { - date: `2015-07-17`, - open: 656.8, - high: 661.4, - low: 651.2, - close: 660.9, - volume: 1051699 - }), - new StockGoogleItem( - { - date: `2015-07-18`, - open: 661.9, - high: 664, - low: 653.5, - close: 656.1, - volume: 1456059 - }), - new StockGoogleItem( - { - date: `2015-07-19`, - open: 656.6, - high: 667, - low: 654.2, - close: 660.9, - volume: 2134098 - }), - new StockGoogleItem( - { - date: `2015-07-20`, - open: 655.5, - high: 663, - low: 642.9, - close: 646.8, - volume: 2855299 - }), - new StockGoogleItem( - { - date: `2015-07-21`, - open: 639.8, - high: 640, - low: 612.3, - close: 612.5, - volume: 4265183 - }), - new StockGoogleItem( - { - date: `2015-07-24`, - open: 573, - high: 614, - low: 565, - close: 589.6, - volume: 5770302 - }), - new StockGoogleItem( - { - date: `2015-07-25`, - open: 614.9, - high: 617.5, - low: 581.1, - close: 582.1, - volume: 3537966 - }), - new StockGoogleItem( - { - date: `2015-07-26`, - open: 610.4, - high: 631.7, - low: 599, - close: 628.6, - volume: 4235891 - }), - new StockGoogleItem( - { - date: `2015-07-27`, - open: 639.4, - high: 643.6, - low: 622, - close: 637.6, - volume: 3491336 - }), - new StockGoogleItem( - { - date: `2015-07-28`, - open: 632.8, - high: 636.9, - low: 624.6, - close: 630.4, - volume: 1978733 - }), - new StockGoogleItem( - { - date: `2015-07-31`, - open: 627.5, - high: 635.8, - low: 617.7, - close: 618.3, - volume: 2176737 - }), - new StockGoogleItem( - { - date: `2015-08-01`, - open: 602.4, - high: 612.9, - low: 594.1, - close: 597.8, - volume: 3702105 - }), - new StockGoogleItem( - { - date: `2015-08-02`, - open: 605.6, - high: 614.3, - low: 599.7, - close: 614.3, - volume: 2575620 - }), - new StockGoogleItem( - { - date: `2015-08-03`, - open: 617, - high: 619.7, - low: 602.8, - close: 606.3, - volume: 1759572 - }), - new StockGoogleItem( - { - date: `2015-08-04`, - open: 600, - high: 603.5, - low: 595.3, - close: 600.7, - volume: 2089453 - }), - new StockGoogleItem( - { - date: `2015-08-08`, - open: 612.5, - high: 616.3, - low: 604.1, - close: 614.7, - volume: 2279538 - }), - new StockGoogleItem( - { - date: `2015-08-09`, - open: 621.2, - high: 626.5, - low: 609.6, - close: 612.7, - volume: 1702094 - }), - new StockGoogleItem( - { - date: `2015-08-10`, - open: 613.1, - high: 624.2, - low: 611.4, - close: 621.4, - volume: 1900526 - }), - new StockGoogleItem( - { - date: `2015-08-11`, - open: 619.8, - high: 625.8, - low: 617.4, - close: 625.8, - volume: 1373545 - }), - new StockGoogleItem( - { - date: `2015-08-14`, - open: 625.7, - high: 625.9, - low: 619.4, - close: 623.2, - volume: 1702271 - }), - new StockGoogleItem( - { - date: `2015-08-15`, - open: 626.7, - high: 638.7, - low: 623.8, - close: 635.1, - volume: 2084397 - }), - new StockGoogleItem( - { - date: `2015-08-16`, - open: 635.5, - high: 638, - low: 632.3, - close: 636, - volume: 1286454 - }), - new StockGoogleItem( - { - date: `2015-08-17`, - open: 637.8, - high: 650.9, - low: 635, - close: 642.9, - volume: 2274690 - }), - new StockGoogleItem( - { - date: `2015-08-18`, - open: 636.8, - high: 640, - low: 627, - close: 629.3, - volume: 5133386 - }), - new StockGoogleItem( - { - date: `2015-08-21`, - open: 634.4, - high: 636.5, - low: 625.9, - close: 635.4, - volume: 1788506 - }), - new StockGoogleItem( - { - date: `2015-08-22`, - open: 627, - high: 627.5, - low: 615.4, - close: 622.7, - volume: 2562869 - }), - new StockGoogleItem( - { - date: `2015-08-23`, - open: 622, - high: 628.9, - low: 620, - close: 622.4, - volume: 1470949 - }), - new StockGoogleItem( - { - date: `2015-08-24`, - open: 616.6, - high: 627.3, - low: 612.4, - close: 625.8, - volume: 2240098 - }), - new StockGoogleItem( - { - date: `2015-08-25`, - open: 629.8, - high: 629.8, - low: 611, - close: 612, - volume: 2174009 - }), - new StockGoogleItem( - { - date: `2015-08-28`, - open: 610.3, - high: 614.6, - low: 589.4, - close: 594.9, - volume: 3127667 - }), - new StockGoogleItem( - { - date: `2015-08-29`, - open: 597.3, - high: 605, - low: 590.2, - close: 595, - volume: 2310284 - }), - new StockGoogleItem( - { - date: `2015-08-30`, - open: 603.3, - high: 608.8, - low: 600.7, - close: 608.4, - volume: 2413441 - }), - new StockGoogleItem( - { - date: `2015-09-01`, - open: 608.4, - high: 612.1, - low: 599.9, - close: 611.3, - volume: 1867601 - }), - new StockGoogleItem( - { - date: `2015-09-02`, - open: 607.2, - high: 627.3, - low: 603.1, - close: 626.9, - volume: 2684805 - }), - new StockGoogleItem( - { - date: `2015-09-05`, - open: 632, - high: 643, - low: 627, - close: 641.5, - volume: 1787880 - }), - new StockGoogleItem( - { - date: `2015-09-06`, - open: 638.8, - high: 649.3, - low: 636.5, - close: 645.4, - volume: 2166264 - }), - new StockGoogleItem( - { - date: `2015-09-07`, - open: 649.2, - high: 650.6, - low: 632.1, - close: 642.4, - volume: 2089776 - }), - new StockGoogleItem( - { - date: `2015-09-08`, - open: 641.4, - high: 644.5, - low: 625.6, - close: 639.2, - volume: 2180441 - }), - new StockGoogleItem( - { - date: `2015-09-09`, - open: 640, - high: 646, - low: 635.3, - close: 643.6, - volume: 1645844 - }), - new StockGoogleItem( - { - date: `2015-09-12`, - open: 642.1, - high: 648.5, - low: 639, - close: 646.7, - volume: 1275206 - }), - new StockGoogleItem( - { - date: `2015-09-13`, - open: 643.1, - high: 657.8, - low: 643.1, - close: 652.3, - volume: 1790704 - }), - new StockGoogleItem( - { - date: `2015-09-14`, - open: 653.2, - high: 659.4, - low: 648.9, - close: 651.2, - volume: 1412040 - }), - new StockGoogleItem( - { - date: `2015-09-15`, - open: 654.7, - high: 663.1, - low: 654.5, - close: 661.7, - volume: 1830524 - }), - new StockGoogleItem( - { - date: `2015-09-16`, - open: 664.1, - high: 665, - low: 657.2, - close: 662.2, - volume: 1606138 - }), - new StockGoogleItem( - { - date: `2015-09-19`, - open: 661.2, - high: 666.8, - low: 659.6, - close: 666.1, - volume: 1465339 - }), - new StockGoogleItem( - { - date: `2015-09-20`, - open: 664, - high: 664.7, - low: 644.2, - close: 650.3, - volume: 2490016 - }), - new StockGoogleItem( - { - date: `2015-09-21`, - open: 654.1, - high: 655.9, - low: 641.7, - close: 642.6, - volume: 1791099 - }), - new StockGoogleItem( - { - date: `2015-09-22`, - open: 646.7, - high: 657.8, - low: 644, - close: 651.8, - volume: 3782103 - }), - new StockGoogleItem( - { - date: `2015-09-23`, - open: 727.5, - high: 730, - low: 701.5, - close: 702, - volume: 6642504 - }), - new StockGoogleItem( - { - date: `2015-09-26`, - open: 701.5, - high: 719.1, - low: 701.3, - close: 712.8, - volume: 2701629 - }), - new StockGoogleItem( - { - date: `2015-09-27`, - open: 707.4, - high: 713.6, - low: 704.5, - close: 708.5, - volume: 2224309 - }), - new StockGoogleItem( - { - date: `2015-09-28`, - open: 707.3, - high: 713, - low: 703.1, - close: 713, - volume: 2176623 - }), - new StockGoogleItem( - { - date: `2015-09-29`, - open: 710.5, - high: 718.3, - low: 710, - close: 716.9, - volume: 1454128 - }), - new StockGoogleItem( - { - date: `2015-09-30`, - open: 715.7, - high: 718, - low: 710, - close: 710.8, - volume: 1903980 - }), - new StockGoogleItem( - { - date: `2015-10-02`, - open: 711.1, - high: 721.6, - low: 705.9, - close: 721.1, - volume: 1871073 - }), - new StockGoogleItem( - { - date: `2015-10-03`, - open: 718.9, - high: 724.6, - low: 714.7, - close: 722.2, - volume: 1560770 - }), - new StockGoogleItem( - { - date: `2015-10-04`, - open: 722, - high: 733.1, - low: 721.9, - close: 728.1, - volume: 1704575 - }), - new StockGoogleItem( - { - date: `2015-10-05`, - open: 729.5, - high: 739.5, - low: 729.5, - close: 731.3, - volume: 1860367 - }), - new StockGoogleItem( - { - date: `2015-10-06`, - open: 731.5, - high: 735.4, - low: 727, - close: 733.8, - volume: 1509656 - }), - new StockGoogleItem( - { - date: `2015-10-09`, - open: 730.2, - high: 734.7, - low: 719.4, - close: 724.9, - volume: 2065619 - }), - new StockGoogleItem( - { - date: `2015-10-10`, - open: 724.4, - high: 730.6, - low: 718.5, - close: 728.3, - volume: 1603937 - }), - new StockGoogleItem( - { - date: `2015-10-11`, - open: 732.5, - high: 741, - low: 730.2, - close: 735.4, - volume: 1366375 - }), - new StockGoogleItem( - { - date: `2015-10-12`, - open: 731, - high: 737.8, - low: 728.6, - close: 731.2, - volume: 1668048 - }), - new StockGoogleItem( - { - date: `2015-10-13`, - open: 729.2, - high: 731.1, - low: 716.7, - close: 717, - volume: 2062982 - }), - new StockGoogleItem( - { - date: `2015-10-16`, - open: 715.6, - high: 729.5, - low: 711.3, - close: 729, - volume: 1891074 - }), - new StockGoogleItem( - { - date: `2015-10-17`, - open: 729.3, - high: 731.8, - low: 723, - close: 725.3, - volume: 1491709 - }), - new StockGoogleItem( - { - date: `2015-10-18`, - open: 727.6, - high: 741.4, - low: 727, - close: 740, - volume: 1671588 - }), - new StockGoogleItem( - { - date: `2015-10-19`, - open: 738.7, - high: 742, - low: 737.4, - close: 738.4, - volume: 1327109 - }), - new StockGoogleItem( - { - date: `2015-10-20`, - open: 746.5, - high: 757.9, - low: 743, - close: 756.6, - volume: 2212302 - }), - new StockGoogleItem( - { - date: `2015-10-23`, - open: 757.5, - high: 762.7, - low: 751.8, - close: 756, - volume: 1414487 - }), - new StockGoogleItem( - { - date: `2015-10-24`, - open: 752, - high: 755.3, - low: 737.6, - close: 748.3, - volume: 2333130 - }), - new StockGoogleItem( - { - date: `2015-10-25`, - open: 748.1, - high: 752, - low: 746.1, - close: 748.1, - volume: 1122224 - }), - new StockGoogleItem( - { - date: `2015-10-27`, - open: 748.5, - high: 753.4, - low: 747.5, - close: 750.3, - volume: 838518 - }), - new StockGoogleItem( - { - date: `2015-10-30`, - open: 748.8, - high: 754.9, - low: 741.3, - close: 742.6, - volume: 2035261 - }), - new StockGoogleItem( - { - date: `2015-11-01`, - open: 747.1, - high: 769, - low: 746.7, - close: 767, - volume: 2129940 - }), - new StockGoogleItem( - { - date: `2015-11-02`, - open: 768.9, - high: 776, - low: 759, - close: 762.4, - volume: 2195686 - }), - new StockGoogleItem( - { - date: `2015-11-03`, - open: 766, - high: 769, - low: 745.6, - close: 752.5, - volume: 2590641 - }), - new StockGoogleItem( - { - date: `2015-11-04`, - open: 753.1, - high: 768.5, - low: 750, - close: 766.8, - volume: 2757283 - }), - new StockGoogleItem( - { - date: `2015-11-07`, - open: 767.8, - high: 768.7, - low: 755.1, - close: 763.3, - volume: 1812314 - }), - new StockGoogleItem( - { - date: `2015-11-08`, - open: 757.9, - high: 764.8, - low: 754.2, - close: 762.4, - volume: 1829475 - }), - new StockGoogleItem( - { - date: `2015-11-09`, - open: 759.2, - high: 764.2, - low: 737, - close: 751.6, - volume: 2699990 - }), - new StockGoogleItem( - { - date: `2015-11-10`, - open: 752.9, - high: 755.9, - low: 743.8, - close: 749.5, - volume: 1988380 - }), - new StockGoogleItem( - { - date: `2015-11-11`, - open: 741.2, - high: 745.7, - low: 736.8, - close: 738.9, - volume: 2224410 - }), - new StockGoogleItem( - { - date: `2015-11-14`, - open: 741.8, - high: 748.7, - low: 724.2, - close: 747.8, - volume: 2412497 - }), - new StockGoogleItem( - { - date: `2015-11-15`, - open: 753, - high: 758.1, - low: 743, - close: 743.4, - volume: 2666229 - }), - new StockGoogleItem( - { - date: `2015-11-16`, - open: 750, - high: 760.6, - low: 739.4, - close: 758.1, - volume: 1993251 - }), - new StockGoogleItem( - { - date: `2015-11-17`, - open: 762.4, - high: 762.7, - low: 749, - close: 749.4, - volume: 1553418 - }), - new StockGoogleItem( - { - date: `2015-11-18`, - open: 746.5, - high: 754.1, - low: 738.1, - close: 739.3, - volume: 3148743 - }), - new StockGoogleItem( - { - date: `2015-11-21`, - open: 746.1, - high: 750, - low: 740, - close: 747.8, - volume: 1525703 - }), - new StockGoogleItem( - { - date: `2015-11-22`, - open: 751.6, - high: 754.9, - low: 745.5, - close: 750, - volume: 1365520 - }), - new StockGoogleItem( - { - date: `2015-11-23`, - open: 753.5, - high: 754.2, - low: 744, - close: 750.3, - volume: 1566726 - }), - new StockGoogleItem( - { - date: `2015-11-24`, - open: 749.5, - high: 751.4, - low: 746.6, - close: 748.4, - volume: 527223 - }), - new StockGoogleItem( - { - date: `2015-11-28`, - open: 752.9, - high: 763, - low: 749.5, - close: 762.5, - volume: 1515716 - }), - new StockGoogleItem( - { - date: `2015-11-29`, - open: 766.7, - high: 780, - low: 766.4, - close: 776.6, - volume: 1765012 - }), - new StockGoogleItem( - { - date: `2015-11-30`, - open: 776.6, - high: 777.6, - low: 766.9, - close: 771, - volume: 1293521 - }), - new StockGoogleItem( - { - date: `2015-11-31`, - open: 769.5, - high: 769.5, - low: 758.3, - close: 758.9, - volume: 1500923 - }), - new StockGoogleItem( - { - date: `2016-00-04`, - open: 743, - high: 744.1, - low: 731.3, - close: 741.8, - volume: 3258199 - }), - new StockGoogleItem( - { - date: `2016-00-05`, - open: 746.5, - high: 752, - low: 738.6, - close: 742.6, - volume: 1950691 - }), - new StockGoogleItem( - { - date: `2016-00-06`, - open: 730, - high: 747.2, - low: 728.9, - close: 743.6, - volume: 1947034 - }), - new StockGoogleItem( - { - date: `2016-00-07`, - open: 730.3, - high: 738.5, - low: 719.1, - close: 726.4, - volume: 2963741 - }), - new StockGoogleItem( - { - date: `2016-00-08`, - open: 731.5, - high: 733.2, - low: 713, - close: 714.5, - volume: 2450857 - }), - new StockGoogleItem( - { - date: `2016-00-11`, - open: 716.6, - high: 718.9, - low: 703.5, - close: 716, - volume: 2090621 - }), - new StockGoogleItem( - { - date: `2016-00-12`, - open: 721.7, - high: 728.8, - low: 717.3, - close: 726.1, - volume: 2024509 - }), - new StockGoogleItem( - { - date: `2016-00-13`, - open: 730.9, - high: 734.7, - low: 698.6, - close: 700.6, - volume: 2468295 - }), - new StockGoogleItem( - { - date: `2016-00-14`, - open: 705.4, - high: 721.9, - low: 689.1, - close: 714.7, - volume: 2211853 - }), - new StockGoogleItem( - { - date: `2016-00-15`, - open: 692.3, - high: 706.7, - low: 685.4, - close: 694.5, - volume: 3592449 - }), - new StockGoogleItem( - { - date: `2016-00-19`, - open: 703.3, - high: 710, - low: 693.4, - close: 701.8, - volume: 2258479 - }), - new StockGoogleItem( - { - date: `2016-00-20`, - open: 688.6, - high: 706.9, - low: 673.3, - close: 698.5, - volume: 3439386 - }), - new StockGoogleItem( - { - date: `2016-00-21`, - open: 702.2, - high: 719.2, - low: 694.5, - close: 706.6, - volume: 2410263 - }), - new StockGoogleItem( - { - date: `2016-00-22`, - open: 723.6, - high: 728.1, - low: 720.1, - close: 725.3, - volume: 2006528 - }), - new StockGoogleItem( - { - date: `2016-00-25`, - open: 723.6, - high: 729.7, - low: 710, - close: 711.7, - volume: 1704641 - }), - new StockGoogleItem( - { - date: `2016-00-26`, - open: 713.9, - high: 718.3, - low: 706.5, - close: 713, - volume: 1324300 - }), - new StockGoogleItem( - { - date: `2016-00-27`, - open: 713.7, - high: 718.2, - low: 694.4, - close: 700, - volume: 2139970 - }), - new StockGoogleItem( - { - date: `2016-00-28`, - open: 722.2, - high: 733.7, - low: 712.4, - close: 731, - volume: 2658016 - }), - new StockGoogleItem( - { - date: `2016-00-29`, - open: 731.5, - high: 745, - low: 726.8, - close: 743, - volume: 3394935 - }), - new StockGoogleItem( - { - date: `2016-01-01`, - open: 750.5, - high: 757.9, - low: 743.3, - close: 752, - volume: 4801816 - }), - new StockGoogleItem( - { - date: `2016-01-02`, - open: 784.5, - high: 789.9, - low: 764.6, - close: 764.6, - volume: 6332431 - }), - new StockGoogleItem( - { - date: `2016-01-03`, - open: 770.2, - high: 774.5, - low: 720.5, - close: 727, - volume: 6162333 - }), - new StockGoogleItem( - { - date: `2016-01-04`, - open: 722.8, - high: 727, - low: 701.9, - close: 708, - volume: 5145855 - }), - new StockGoogleItem( - { - date: `2016-01-05`, - open: 703.9, - high: 704, - low: 680.1, - close: 683.6, - volume: 5069985 - }), - new StockGoogleItem( - { - date: `2016-01-08`, - open: 667.9, - high: 684, - low: 663.1, - close: 682.7, - volume: 4212541 - }), - new StockGoogleItem( - { - date: `2016-01-09`, - open: 672.3, - high: 699.9, - low: 668.8, - close: 678.1, - volume: 3604335 - }), - new StockGoogleItem( - { - date: `2016-01-10`, - open: 686.9, - high: 701.3, - low: 682.1, - close: 684.1, - volume: 2627379 - }), - new StockGoogleItem( - { - date: `2016-01-11`, - open: 675, - high: 689.4, - low: 668.9, - close: 683.1, - volume: 3007223 - }), - new StockGoogleItem( - { - date: `2016-01-12`, - open: 690.3, - high: 693.8, - low: 678.6, - close: 682.4, - volume: 2129831 - }), - new StockGoogleItem( - { - date: `2016-01-16`, - open: 693, - high: 698, - low: 685, - close: 691, - volume: 2497024 - }), - new StockGoogleItem( - { - date: `2016-01-17`, - open: 699, - high: 709.8, - low: 691.4, - close: 708.4, - volume: 2466808 - }), - new StockGoogleItem( - { - date: `2016-01-18`, - open: 710, - high: 712.4, - low: 696, - close: 697.4, - volume: 1859130 - }), - new StockGoogleItem( - { - date: `2016-01-19`, - open: 695, - high: 703.1, - low: 694, - close: 700.9, - volume: 1582260 - }), - new StockGoogleItem( - { - date: `2016-01-22`, - open: 707.5, - high: 713.2, - low: 702.5, - close: 706.5, - volume: 1946067 - }), - new StockGoogleItem( - { - date: `2016-01-23`, - open: 701.5, - high: 708.4, - low: 693.6, - close: 695.9, - volume: 1999699 - }), - new StockGoogleItem( - { - date: `2016-01-24`, - open: 688.9, - high: 700, - low: 680.8, - close: 699.6, - volume: 1958611 - }), - new StockGoogleItem( - { - date: `2016-01-25`, - open: 700, - high: 706, - low: 690.6, - close: 705.8, - volume: 1631855 - }), - new StockGoogleItem( - { - date: `2016-01-26`, - open: 708.6, - high: 713.4, - low: 700.9, - close: 705.1, - volume: 2239978 - }), - new StockGoogleItem( - { - date: `2016-01-29`, - open: 700.3, - high: 710.9, - low: 697.7, - close: 697.8, - volume: 2280280 - }), - new StockGoogleItem( - { - date: `2016-02-01`, - open: 703.6, - high: 718.8, - low: 699.8, - close: 718.8, - volume: 2147442 - }), - new StockGoogleItem( - { - date: `2016-02-02`, - open: 719, - high: 720, - low: 712, - close: 718.9, - volume: 1627753 - }), - new StockGoogleItem( - { - date: `2016-02-03`, - open: 718.7, - high: 719.5, - low: 706, - close: 712.4, - volume: 1956761 - }), - new StockGoogleItem( - { - date: `2016-02-04`, - open: 715, - high: 716.5, - low: 706, - close: 710.9, - volume: 1967873 - }), - new StockGoogleItem( - { - date: `2016-02-07`, - open: 706.9, - high: 708.1, - low: 686.9, - close: 695.2, - volume: 2985094 - }), - new StockGoogleItem( - { - date: `2016-02-08`, - open: 688.6, - high: 703.8, - low: 685.3, - close: 694, - volume: 2063357 - }), - new StockGoogleItem( - { - date: `2016-02-09`, - open: 698.5, - high: 705.7, - low: 694, - close: 705.2, - volume: 1418704 - }), - new StockGoogleItem( - { - date: `2016-02-10`, - open: 708.1, - high: 716.4, - low: 703.4, - close: 712.8, - volume: 2829412 - }), - new StockGoogleItem( - { - date: `2016-02-11`, - open: 720, - high: 726.9, - low: 717.1, - close: 726.8, - volume: 1963907 - }), - new StockGoogleItem( - { - date: `2016-02-14`, - open: 726.8, - high: 735.5, - low: 725.1, - close: 730.5, - volume: 1716910 - }), - new StockGoogleItem( - { - date: `2016-02-15`, - open: 726.9, - high: 732.3, - low: 724.8, - close: 728.3, - volume: 1720965 - }), - new StockGoogleItem( - { - date: `2016-02-16`, - open: 726.4, - high: 737.5, - low: 724.5, - close: 736.1, - volume: 1572329 - }), - new StockGoogleItem( - { - date: `2016-02-17`, - open: 736.5, - high: 743.1, - low: 736, - close: 737.8, - volume: 1856800 - }), - new StockGoogleItem( - { - date: `2016-02-18`, - open: 741.9, - high: 742, - low: 731.8, - close: 737.6, - volume: 2796376 - }), - new StockGoogleItem( - { - date: `2016-02-21`, - open: 736.5, - high: 742.5, - low: 733.5, - close: 742.1, - volume: 1831839 - }), - new StockGoogleItem( - { - date: `2016-02-22`, - open: 737.5, - high: 745, - low: 737.5, - close: 740.8, - volume: 1264396 - }), - new StockGoogleItem( - { - date: `2016-02-23`, - open: 742.4, - high: 745.7, - low: 736.1, - close: 738.1, - volume: 1421861 - }), - new StockGoogleItem( - { - date: `2016-02-24`, - open: 732, - high: 737.8, - low: 731, - close: 735.3, - volume: 1564782 - }), - new StockGoogleItem( - { - date: `2016-02-28`, - open: 736.8, - high: 739, - low: 732.5, - close: 733.5, - volume: 1299812 - }), - new StockGoogleItem( - { - date: `2016-02-29`, - open: 734.6, - high: 747.3, - low: 728.8, - close: 744.8, - volume: 1902128 - }), - new StockGoogleItem( - { - date: `2016-02-30`, - open: 750.1, - high: 757.9, - low: 748.7, - close: 750.5, - volume: 1780998 - }), - new StockGoogleItem( - { - date: `2016-02-31`, - open: 749.3, - high: 750.9, - low: 740.9, - close: 745, - volume: 1712375 - }), - new StockGoogleItem( - { - date: `2016-03-01`, - open: 738.6, - high: 750.3, - low: 737, - close: 749.9, - volume: 1574870 - }), - new StockGoogleItem( - { - date: `2016-03-04`, - open: 750.1, - high: 752.8, - low: 742.4, - close: 745.3, - volume: 1131843 - }), - new StockGoogleItem( - { - date: `2016-03-05`, - open: 738, - high: 742.8, - low: 735.4, - close: 737.8, - volume: 1129829 - }), - new StockGoogleItem( - { - date: `2016-03-06`, - open: 735.8, - high: 746.2, - low: 735.6, - close: 745.7, - volume: 1050193 - }), - new StockGoogleItem( - { - date: `2016-03-07`, - open: 745.4, - high: 747, - low: 736.3, - close: 740.3, - volume: 1429504 - }), - new StockGoogleItem( - { - date: `2016-03-08`, - open: 744, - high: 745.5, - low: 735.5, - close: 739.1, - volume: 1285755 - }), - new StockGoogleItem( - { - date: `2016-03-11`, - open: 743, - high: 745, - low: 736, - close: 736.1, - volume: 1211762 - }), - new StockGoogleItem( - { - date: `2016-03-12`, - open: 738, - high: 743.8, - low: 731, - close: 743.1, - volume: 1349734 - }), - new StockGoogleItem( - { - date: `2016-03-13`, - open: 749.2, - high: 754.4, - low: 744.3, - close: 751.7, - volume: 1707095 - }), - new StockGoogleItem( - { - date: `2016-03-14`, - open: 754, - high: 757.3, - low: 752.7, - close: 753.2, - volume: 1130971 - }), - new StockGoogleItem( - { - date: `2016-03-15`, - open: 754, - high: 761, - low: 752.7, - close: 759, - volume: 1800413 - }), - new StockGoogleItem( - { - date: `2016-03-18`, - open: 760.5, - high: 768, - low: 757.3, - close: 766.6, - volume: 1555953 - }), - new StockGoogleItem( - { - date: `2016-03-19`, - open: 769.5, - high: 769.9, - low: 749.3, - close: 753.9, - volume: 2027642 - }), - new StockGoogleItem( - { - date: `2016-03-20`, - open: 758, - high: 758.1, - low: 750, - close: 752.7, - volume: 1525591 - }), - new StockGoogleItem( - { - date: `2016-03-21`, - open: 755.4, - high: 760.5, - low: 749.5, - close: 759.1, - volume: 2743620 - }), - new StockGoogleItem( - { - date: `2016-03-22`, - open: 726.3, - high: 736.1, - low: 713.6, - close: 718.8, - volume: 5939199 - }), - new StockGoogleItem( - { - date: `2016-03-25`, - open: 716.1, - high: 723.9, - low: 715.6, - close: 723.1, - volume: 1955567 - }), - new StockGoogleItem( - { - date: `2016-03-26`, - open: 725.4, - high: 725.8, - low: 703, - close: 708.1, - volume: 2727185 - }), - new StockGoogleItem( - { - date: `2016-03-27`, - open: 707.3, - high: 709, - low: 692.4, - close: 705.8, - volume: 3086722 - }), - new StockGoogleItem( - { - date: `2016-03-28`, - open: 708.3, - high: 714.2, - low: 689.5, - close: 691, - volume: 2851108 - }), - new StockGoogleItem( - { - date: `2016-03-29`, - open: 690.7, - high: 697.6, - low: 689, - close: 693, - volume: 2484273 - }), - new StockGoogleItem( - { - date: `2016-04-02`, - open: 697.6, - high: 700.6, - low: 691, - close: 698.2, - volume: 1644126 - }), - new StockGoogleItem( - { - date: `2016-04-03`, - open: 696.9, - high: 697.8, - low: 692, - close: 692.4, - volume: 1530993 - }), - new StockGoogleItem( - { - date: `2016-04-04`, - open: 690.5, - high: 699.8, - low: 689, - close: 695.7, - volume: 1688569 - }), - new StockGoogleItem( - { - date: `2016-04-05`, - open: 697.7, - high: 702.3, - low: 695.7, - close: 701.4, - volume: 1677405 - }), - new StockGoogleItem( - { - date: `2016-04-06`, - open: 698.4, - high: 711.9, - low: 698.1, - close: 711.1, - volume: 1826146 - }), - new StockGoogleItem( - { - date: `2016-04-09`, - open: 712, - high: 718.7, - low: 710, - close: 712.9, - volume: 1508423 - }), - new StockGoogleItem( - { - date: `2016-04-10`, - open: 716.8, - high: 723.5, - low: 715.7, - close: 723.2, - volume: 1563105 - }), - new StockGoogleItem( - { - date: `2016-04-11`, - open: 723.4, - high: 724.5, - low: 712.8, - close: 715.3, - volume: 1686823 - }), - new StockGoogleItem( - { - date: `2016-04-12`, - open: 717.1, - high: 719.3, - low: 709, - close: 713.3, - volume: 1360732 - }), - new StockGoogleItem( - { - date: `2016-04-13`, - open: 711.9, - high: 716.7, - low: 709.3, - close: 710.8, - volume: 1307338 - }), - new StockGoogleItem( - { - date: `2016-04-16`, - open: 709.1, - high: 718.5, - low: 705.6, - close: 716.5, - volume: 1316177 - }), - new StockGoogleItem( - { - date: `2016-04-17`, - open: 716, - high: 721.5, - low: 704.1, - close: 706.2, - volume: 1999456 - }), - new StockGoogleItem( - { - date: `2016-04-18`, - open: 703.7, - high: 711.6, - low: 700.6, - close: 706.6, - volume: 1763394 - }), - new StockGoogleItem( - { - date: `2016-04-19`, - open: 702.4, - high: 706, - low: 696.8, - close: 700.3, - volume: 1656321 - }), - new StockGoogleItem( - { - date: `2016-04-20`, - open: 701.6, - high: 714.6, - low: 700.5, - close: 709.7, - volume: 1816027 - }), - new StockGoogleItem( - { - date: `2016-04-23`, - open: 706.5, - high: 711.5, - low: 704.2, - close: 704.2, - volume: 1320927 - }), - new StockGoogleItem( - { - date: `2016-04-24`, - open: 706.9, - high: 721, - low: 706.9, - close: 720.1, - volume: 1920411 - }), - new StockGoogleItem( - { - date: `2016-04-25`, - open: 720.8, - high: 727.5, - low: 719.7, - close: 725.3, - volume: 1629198 - }), - new StockGoogleItem( - { - date: `2016-04-26`, - open: 722.9, - high: 728.3, - low: 720.3, - close: 724.1, - volume: 1542866 - }), - new StockGoogleItem( - { - date: `2016-04-27`, - open: 724, - high: 733.9, - low: 724, - close: 732.7, - volume: 1974026 - }), - new StockGoogleItem( - { - date: `2016-04-31`, - open: 731.7, - high: 739.7, - low: 731.3, - close: 735.7, - volume: 2129545 - }), - new StockGoogleItem( - { - date: `2016-05-01`, - open: 734.5, - high: 737.2, - low: 730.7, - close: 734.1, - volume: 1253593 - }), - new StockGoogleItem( - { - date: `2016-05-02`, - open: 732.5, - high: 733, - low: 724.2, - close: 730.4, - volume: 1341807 - }), - new StockGoogleItem( - { - date: `2016-05-03`, - open: 729.3, - high: 729.5, - low: 720.6, - close: 722.3, - volume: 1226253 - }), - new StockGoogleItem( - { - date: `2016-05-06`, - open: 724.9, - high: 724.9, - low: 714.6, - close: 716.5, - volume: 1566059 - }), - new StockGoogleItem( - { - date: `2016-05-07`, - open: 719.8, - high: 722, - low: 716.5, - close: 716.6, - volume: 1336754 - }), - new StockGoogleItem( - { - date: `2016-05-08`, - open: 724, - high: 728.6, - low: 720.6, - close: 728.3, - volume: 1583701 - }), - new StockGoogleItem( - { - date: `2016-05-09`, - open: 722.9, - high: 729.5, - low: 722.3, - close: 728.6, - volume: 988914 - }), - new StockGoogleItem( - { - date: `2016-05-10`, - open: 719.5, - high: 725.9, - low: 716.4, - close: 719.4, - volume: 1216443 - }), - new StockGoogleItem( - { - date: `2016-05-13`, - open: 716.5, - high: 725.4, - low: 716.5, - close: 718.4, - volume: 1258930 - }), - new StockGoogleItem( - { - date: `2016-05-14`, - open: 716.5, - high: 722.5, - low: 713.1, - close: 718.3, - volume: 1306065 - }), - new StockGoogleItem( - { - date: `2016-05-15`, - open: 719, - high: 723, - low: 717.3, - close: 718.9, - volume: 1214517 - }), - new StockGoogleItem( - { - date: `2016-05-16`, - open: 714.9, - high: 716.6, - low: 703.3, - close: 710.4, - volume: 1982471 - }), - new StockGoogleItem( - { - date: `2016-05-17`, - open: 708.6, - high: 708.8, - low: 688.5, - close: 691.7, - volume: 3402357 - }), - new StockGoogleItem( - { - date: `2016-05-20`, - open: 698.8, - high: 702.5, - low: 693.4, - close: 693.7, - volume: 2082538 - }), - new StockGoogleItem( - { - date: `2016-05-21`, - open: 698.4, - high: 702.8, - low: 692, - close: 695.9, - volume: 1465634 - }), - new StockGoogleItem( - { - date: `2016-05-22`, - open: 699.1, - high: 700.9, - low: 693.1, - close: 697.5, - volume: 1184318 - }), - new StockGoogleItem( - { - date: `2016-05-23`, - open: 697.5, - high: 702, - low: 687, - close: 701.9, - volume: 2171415 - }), - new StockGoogleItem( - { - date: `2016-05-24`, - open: 675.2, - high: 689.4, - low: 673.5, - close: 675.2, - volume: 4449022 - }), - new StockGoogleItem( - { - date: `2016-05-27`, - open: 671, - high: 672.3, - low: 663.3, - close: 668.3, - volume: 2641085 - }), - new StockGoogleItem( - { - date: `2016-05-28`, - open: 679, - high: 680.3, - low: 673, - close: 680, - volume: 2173762 - }), - new StockGoogleItem( - { - date: `2016-05-29`, - open: 683, - high: 687.4, - low: 681.4, - close: 684.1, - volume: 1932561 - }), - new StockGoogleItem( - { - date: `2016-05-30`, - open: 685.5, - high: 692.3, - low: 683.6, - close: 692.1, - volume: 1597714 - }), - new StockGoogleItem( - { - date: `2016-06-01`, - open: 692.2, - high: 700.6, - low: 692.1, - close: 699.2, - volume: 1344710 - }), - new StockGoogleItem( - { - date: `2016-06-05`, - open: 696.1, - high: 696.9, - low: 688.9, - close: 694.5, - volume: 1462616 - }), - new StockGoogleItem( - { - date: `2016-06-06`, - open: 690, - high: 701.7, - low: 689.1, - close: 697.8, - volume: 1411925 - }), - new StockGoogleItem( - { - date: `2016-06-07`, - open: 698.1, - high: 698.2, - low: 688.2, - close: 695.4, - volume: 1304200 - }), - new StockGoogleItem( - { - date: `2016-06-08`, - open: 699.5, - high: 705.7, - low: 696.4, - close: 705.6, - volume: 1575166 - }), - new StockGoogleItem( - { - date: `2016-06-11`, - open: 708, - high: 716.5, - low: 707.2, - close: 715.1, - volume: 1111762 - }), - new StockGoogleItem( - { - date: `2016-06-12`, - open: 719.1, - high: 722.9, - low: 715.9, - close: 720.6, - volume: 1336921 - }), - new StockGoogleItem( - { - date: `2016-06-13`, - open: 723.6, - high: 724, - low: 716.9, - close: 717, - volume: 935876 - }), - new StockGoogleItem( - { - date: `2016-06-14`, - open: 721.6, - high: 722.2, - low: 718, - close: 721, - volume: 950193 - }), - new StockGoogleItem( - { - date: `2016-06-15`, - open: 725.7, - high: 725.7, - low: 719.1, - close: 719.9, - volume: 1279339 - }), - new StockGoogleItem( - { - date: `2016-06-18`, - open: 722.7, - high: 736.1, - low: 721.2, - close: 733.8, - volume: 1295476 - }), - new StockGoogleItem( - { - date: `2016-06-19`, - open: 729.9, - high: 737, - low: 729, - close: 737, - volume: 1227486 - }), - new StockGoogleItem( - { - date: `2016-06-20`, - open: 737.3, - high: 742.1, - low: 737.1, - close: 741.2, - volume: 1289671 - }), - new StockGoogleItem( - { - date: `2016-06-21`, - open: 740.4, - high: 741.7, - low: 735.8, - close: 738.6, - volume: 1026306 - }), - new StockGoogleItem( - { - date: `2016-06-22`, - open: 741.9, - high: 743.2, - low: 736.6, - close: 742.7, - volume: 1259823 - }), - new StockGoogleItem( - { - date: `2016-06-25`, - open: 740.7, - high: 742.6, - low: 737.5, - close: 739.8, - volume: 1032432 - }), - new StockGoogleItem( - { - date: `2016-06-26`, - open: 739, - high: 741.7, - low: 734.3, - close: 738.4, - volume: 1186738 - }), - new StockGoogleItem( - { - date: `2016-06-27`, - open: 738.3, - high: 744.5, - low: 737, - close: 741.8, - volume: 1512517 - }), - new StockGoogleItem( - { - date: `2016-06-28`, - open: 747, - high: 748.6, - low: 739.3, - close: 745.9, - volume: 3530169 - }), - new StockGoogleItem( - { - date: `2016-06-29`, - open: 772.7, - high: 778.5, - low: 766.8, - close: 768.8, - volume: 3841482 - }), - new StockGoogleItem( - { - date: `2016-07-01`, - open: 761.1, - high: 780.4, - low: 761.1, - close: 772.9, - volume: 2700470 - }), - new StockGoogleItem( - { - date: `2016-07-02`, - open: 768.7, - high: 775.8, - low: 767.9, - close: 771.1, - volume: 1784525 - }), - new StockGoogleItem( - { - date: `2016-07-03`, - open: 767.2, - high: 773.2, - low: 766.8, - close: 773.2, - volume: 1287421 - }), - new StockGoogleItem( - { - date: `2016-07-04`, - open: 772.2, - high: 774.1, - low: 768.8, - close: 771.6, - volume: 1140254 - }), - new StockGoogleItem( - { - date: `2016-07-05`, - open: 773.8, - high: 783, - low: 772.3, - close: 782.2, - volume: 1801205 - }), - new StockGoogleItem( - { - date: `2016-07-08`, - open: 782, - high: 782.6, - low: 778.1, - close: 781.8, - volume: 1107857 - }), - new StockGoogleItem( - { - date: `2016-07-09`, - open: 781.1, - high: 788.9, - low: 780.6, - close: 784.3, - volume: 1318894 - }), - new StockGoogleItem( - { - date: `2016-07-10`, - open: 783.8, - high: 786.8, - low: 782.8, - close: 784.7, - volume: 786363 - }), - new StockGoogleItem( - { - date: `2016-07-11`, - open: 785, - high: 789.8, - low: 783, - close: 784.9, - volume: 975113 - }), - new StockGoogleItem( - { - date: `2016-07-12`, - open: 781.5, - high: 783.4, - low: 780.4, - close: 783.2, - volume: 740498 - }), - new StockGoogleItem( - { - date: `2016-07-15`, - open: 783.8, - high: 787.5, - low: 780.1, - close: 782.4, - volume: 938186 - }), - new StockGoogleItem( - { - date: `2016-07-16`, - open: 780.3, - high: 781, - low: 773.4, - close: 777.1, - volume: 1028047 - }), - new StockGoogleItem( - { - date: `2016-07-17`, - open: 777.3, - high: 780.8, - low: 773.5, - close: 779.9, - volume: 924226 - }), - new StockGoogleItem( - { - date: `2016-07-18`, - open: 780, - high: 782.9, - low: 777, - close: 777.5, - volume: 719429 - }), - new StockGoogleItem( - { - date: `2016-07-19`, - open: 775, - high: 777.1, - low: 773.1, - close: 775.4, - volume: 861546 - }), - new StockGoogleItem( - { - date: `2016-07-22`, - open: 773.3, - high: 774.5, - low: 770, - close: 772.1, - volume: 951362 - }), - new StockGoogleItem( - { - date: `2016-07-23`, - open: 775.5, - high: 776.4, - low: 771.8, - close: 772.1, - volume: 928232 - }), - new StockGoogleItem( - { - date: `2016-07-24`, - open: 770.6, - high: 774.5, - low: 767.1, - close: 769.6, - volume: 1071999 - }), - new StockGoogleItem( - { - date: `2016-07-25`, - open: 767, - high: 771.9, - low: 763.2, - close: 769.4, - volume: 926883 - }), - new StockGoogleItem( - { - date: `2016-07-26`, - open: 769, - high: 776.1, - low: 765.9, - close: 769.5, - volume: 1166681 - }), - new StockGoogleItem( - { - date: `2016-07-29`, - open: 768.7, - high: 775, - low: 766.6, - close: 772.1, - volume: 847565 - }), - new StockGoogleItem( - { - date: `2016-07-30`, - open: 769.3, - high: 774.5, - low: 766.8, - close: 769.1, - volume: 1130029 - }), - new StockGoogleItem( - { - date: `2016-07-31`, - open: 767, - high: 769.1, - low: 765.4, - close: 767, - volume: 1248556 - }), - new StockGoogleItem( - { - date: `2016-08-01`, - open: 769.3, - high: 771, - low: 764.3, - close: 768.8, - volume: 925131 - }), - new StockGoogleItem( - { - date: `2016-08-02`, - open: 773, - high: 773.9, - low: 768.4, - close: 771.5, - volume: 1072658 - }), - new StockGoogleItem( - { - date: `2016-08-06`, - open: 773.5, - high: 782, - low: 771, - close: 780.1, - volume: 1442822 - }), - new StockGoogleItem( - { - date: `2016-08-07`, - open: 780, - high: 782.7, - low: 776.2, - close: 780.4, - volume: 894021 - }), - new StockGoogleItem( - { - date: `2016-08-08`, - open: 778.6, - high: 780.4, - low: 773.6, - close: 775.3, - volume: 1270264 - }), - new StockGoogleItem( - { - date: `2016-08-09`, - open: 770.1, - high: 773.2, - low: 759.7, - close: 759.7, - volume: 1885496 - }), - new StockGoogleItem( - { - date: `2016-08-12`, - open: 755.1, - high: 770.3, - low: 754, - close: 769, - volume: 1310986 - }), - new StockGoogleItem( - { - date: `2016-08-13`, - open: 764.5, - high: 766.2, - low: 755.8, - close: 759.7, - volume: 1395046 - }), - new StockGoogleItem( - { - date: `2016-08-14`, - open: 759.6, - high: 767.7, - low: 759.1, - close: 762.5, - volume: 1094490 - }), - new StockGoogleItem( - { - date: `2016-08-15`, - open: 762.9, - high: 773.8, - low: 760, - close: 771.8, - volume: 1346751 - }), - new StockGoogleItem( - { - date: `2016-08-16`, - open: 769.8, - high: 769.8, - low: 764.7, - close: 768.9, - volume: 2049338 - }), - new StockGoogleItem( - { - date: `2016-08-19`, - open: 772.4, - high: 774, - low: 764.4, - close: 765.7, - volume: 1172824 - }), - new StockGoogleItem( - { - date: `2016-08-20`, - open: 769, - high: 773.3, - low: 768.5, - close: 771.4, - volume: 978631 - }), - new StockGoogleItem( - { - date: `2016-08-21`, - open: 772.7, - high: 777.2, - low: 768.3, - close: 776.2, - volume: 1167810 - }), - new StockGoogleItem( - { - date: `2016-08-22`, - open: 780, - high: 789.9, - low: 778.4, - close: 787.2, - volume: 1486223 - }), - new StockGoogleItem( - { - date: `2016-08-23`, - open: 786.6, - high: 788.9, - low: 784.1, - close: 786.9, - volume: 1411937 - }), - new StockGoogleItem( - { - date: `2016-08-26`, - open: 782.7, - high: 782.7, - low: 773.1, - close: 774.2, - volume: 1533206 - }), - new StockGoogleItem( - { - date: `2016-08-27`, - open: 775.5, - high: 786, - low: 774.3, - close: 783, - volume: 1153247 - }), - new StockGoogleItem( - { - date: `2016-08-28`, - open: 777.9, - high: 781.8, - low: 775, - close: 781.6, - volume: 1109834 - }), - new StockGoogleItem( - { - date: `2016-08-29`, - open: 781.4, - high: 785.8, - low: 774.2, - close: 775, - volume: 1314746 - }), - new StockGoogleItem( - { - date: `2016-08-30`, - open: 776.3, - high: 780.9, - low: 774.1, - close: 777.3, - volume: 1585333 - }), - new StockGoogleItem( - { - date: `2016-09-03`, - open: 774.3, - high: 776.1, - low: 769.5, - close: 772.6, - volume: 1278821 - }), - new StockGoogleItem( - { - date: `2016-09-04`, - open: 776, - high: 778.7, - low: 772.9, - close: 776.4, - volume: 1201350 - }), - new StockGoogleItem( - { - date: `2016-09-05`, - open: 779.3, - high: 782.1, - low: 775.6, - close: 776.5, - volume: 1461151 - }), - new StockGoogleItem( - { - date: `2016-09-06`, - open: 779, - high: 780.5, - low: 775.5, - close: 776.9, - volume: 1070692 - }), - new StockGoogleItem( - { - date: `2016-09-07`, - open: 779.7, - high: 779.7, - low: 770.8, - close: 775.1, - volume: 933158 - }), - new StockGoogleItem( - { - date: `2016-09-10`, - open: 777.7, - high: 789.4, - low: 775.9, - close: 785.9, - volume: 1174923 - }), - new StockGoogleItem( - { - date: `2016-09-11`, - open: 786.7, - high: 792.3, - low: 780.6, - close: 783.1, - volume: 1372461 - }), - new StockGoogleItem( - { - date: `2016-09-12`, - open: 783.8, - high: 788.1, - low: 782.1, - close: 786.1, - volume: 937435 - }), - new StockGoogleItem( - { - date: `2016-09-13`, - open: 781.2, - high: 781.2, - low: 773, - close: 778.2, - volume: 1365277 - }), - new StockGoogleItem( - { - date: `2016-09-14`, - open: 781.6, - high: 784, - low: 776, - close: 778.5, - volume: 852487 - }), - new StockGoogleItem( - { - date: `2016-09-17`, - open: 779.8, - high: 785.9, - low: 777.5, - close: 780, - volume: 1092973 - }), - new StockGoogleItem( - { - date: `2016-09-18`, - open: 787.9, - high: 801.6, - low: 785.6, - close: 795.3, - volume: 2056903 - }), - new StockGoogleItem( - { - date: `2016-09-19`, - open: 798.9, - high: 804.6, - low: 797.6, - close: 801.6, - volume: 1766798 - }), - new StockGoogleItem( - { - date: `2016-09-20`, - open: 803.3, - high: 804, - low: 796, - close: 797, - volume: 1757528 - }), - new StockGoogleItem( - { - date: `2016-09-21`, - open: 795, - high: 799.5, - low: 794, - close: 799.4, - volume: 1266181 - }), - new StockGoogleItem( - { - date: `2016-09-24`, - open: 804.9, - high: 815.2, - low: 804.8, - close: 813.1, - volume: 1697514 - }), - new StockGoogleItem( - { - date: `2016-09-25`, - open: 816.7, - high: 816.7, - low: 805.1, - close: 807.7, - volume: 1576404 - }), - new StockGoogleItem( - { - date: `2016-09-26`, - open: 806.3, - high: 807, - low: 796.3, - close: 799.1, - volume: 1647733 - }), - new StockGoogleItem( - { - date: `2016-09-27`, - open: 801, - high: 803.5, - low: 791.5, - close: 795.4, - volume: 2749221 - }), - new StockGoogleItem( - { - date: `2016-09-28`, - open: 808.4, - high: 815.5, - low: 793.6, - close: 795.4, - volume: 4269902 - }), - new StockGoogleItem( - { - date: `2016-09-31`, - open: 795.5, - high: 796.9, - low: 784, - close: 784.5, - volume: 2427284 - }), - new StockGoogleItem( - { - date: `2016-10-01`, - open: 782.9, - high: 789.5, - low: 775.5, - close: 783.6, - volume: 2406356 - }), - new StockGoogleItem( - { - date: `2016-10-02`, - open: 778.2, - high: 781.6, - low: 763.5, - close: 768.7, - volume: 1918414 - }), - new StockGoogleItem( - { - date: `2016-10-03`, - open: 767.3, - high: 770, - low: 759, - close: 762.1, - volume: 1943175 - }), - new StockGoogleItem( - { - date: `2016-10-04`, - open: 750.7, - high: 770.4, - low: 750.6, - close: 762, - volume: 2134812 - }), - new StockGoogleItem( - { - date: `2016-10-07`, - open: 774.5, - high: 785.2, - low: 772.5, - close: 782.5, - volume: 1585070 - }), - new StockGoogleItem( - { - date: `2016-10-08`, - open: 783.4, - high: 795.6, - low: 780.2, - close: 790.5, - volume: 1366873 - }), - new StockGoogleItem( - { - date: `2016-10-09`, - open: 779.9, - high: 791.2, - low: 771.7, - close: 785.3, - volume: 2607121 - }), - new StockGoogleItem( - { - date: `2016-10-10`, - open: 791.2, - high: 791.2, - low: 752.2, - close: 762.6, - volume: 4745183 - }), - new StockGoogleItem( - { - date: `2016-10-11`, - open: 756.5, - high: 760.8, - low: 750.4, - close: 754, - volume: 2431815 - }), - new StockGoogleItem( - { - date: `2016-10-14`, - open: 755.6, - high: 757.9, - low: 727.5, - close: 736.1, - volume: 3654385 - }), - new StockGoogleItem( - { - date: `2016-10-15`, - open: 747, - high: 764.4, - low: 747, - close: 758.5, - volume: 2384001 - }), - new StockGoogleItem( - { - date: `2016-10-16`, - open: 755.2, - high: 766.4, - low: 750.5, - close: 764.5, - volume: 1472594 - }), - new StockGoogleItem( - { - date: `2016-10-17`, - open: 766.9, - high: 772.7, - low: 764.2, - close: 771.2, - volume: 1286961 - }), - new StockGoogleItem( - { - date: `2016-10-18`, - open: 771.4, - high: 775, - low: 760, - close: 760.5, - volume: 1547145 - }), - new StockGoogleItem( - { - date: `2016-10-21`, - open: 762.6, - high: 769.7, - low: 760.6, - close: 769.2, - volume: 1330639 - }), - new StockGoogleItem( - { - date: `2016-10-22`, - open: 772.6, - high: 777, - low: 767, - close: 768.3, - volume: 1593108 - }), - new StockGoogleItem( - { - date: `2016-10-23`, - open: 767.7, - high: 768.3, - low: 755.3, - close: 761, - volume: 1478417 - }), - new StockGoogleItem( - { - date: `2016-10-25`, - open: 764.3, - high: 765, - low: 760.5, - close: 761.7, - volume: 587421 - }), - new StockGoogleItem( - { - date: `2016-10-28`, - open: 760, - high: 779.5, - low: 759.8, - close: 768.2, - volume: 2188151 - }), - new StockGoogleItem( - { - date: `2016-10-29`, - open: 771.5, - high: 778.5, - low: 768.2, - close: 770.8, - volume: 1616618 - }), - new StockGoogleItem( - { - date: `2016-10-30`, - open: 770.1, - high: 773, - low: 754.8, - close: 758, - volume: 2392890 - }), - new StockGoogleItem( - { - date: `2016-11-01`, - open: 757.4, - high: 759.9, - low: 737, - close: 747.9, - volume: 3017947 - }), - new StockGoogleItem( - { - date: `2016-11-02`, - open: 744.6, - high: 754, - low: 743.1, - close: 750.5, - volume: 1452484 - }), - new StockGoogleItem( - { - date: `2016-11-05`, - open: 757.7, - high: 763.9, - low: 752.9, - close: 762.5, - volume: 1394223 - }), - new StockGoogleItem( - { - date: `2016-11-06`, - open: 764.7, - high: 768.8, - low: 757.3, - close: 759.1, - volume: 1690689 - }), - new StockGoogleItem( - { - date: `2016-11-07`, - open: 761, - high: 771.4, - low: 755.8, - close: 771.2, - volume: 1760966 - }), - new StockGoogleItem( - { - date: `2016-11-08`, - open: 772.5, - high: 778.2, - low: 767.2, - close: 776.4, - volume: 1488059 - }), - new StockGoogleItem( - { - date: `2016-11-09`, - open: 780, - high: 789.4, - low: 779, - close: 789.3, - volume: 1821914 - }), - new StockGoogleItem( - { - date: `2016-11-12`, - open: 785, - high: 791.3, - low: 784.4, - close: 789.3, - volume: 2104117 - }), - new StockGoogleItem( - { - date: `2016-11-13`, - open: 793.9, - high: 804.4, - low: 793.3, - close: 796.1, - volume: 2145209 - }), - new StockGoogleItem( - { - date: `2016-11-14`, - open: 797.4, - high: 804, - low: 794, - close: 797.1, - volume: 1704150 - }), - new StockGoogleItem( - { - date: `2016-11-15`, - open: 797.3, - high: 803, - low: 792.9, - close: 797.9, - volume: 1626499 - }), - new StockGoogleItem( - { - date: `2016-11-16`, - open: 800.4, - high: 800.9, - low: 790.3, - close: 790.8, - volume: 2443796 - }), - new StockGoogleItem( - { - date: `2016-11-19`, - open: 790.2, - high: 797.7, - low: 786.3, - close: 794.2, - volume: 1232087 - }), - new StockGoogleItem( - { - date: `2016-11-20`, - open: 796.8, - high: 798.6, - low: 793.3, - close: 796.4, - volume: 951014 - }), - new StockGoogleItem( - { - date: `2016-11-21`, - open: 795.8, - high: 796.7, - low: 787.1, - close: 794.6, - volume: 1211346 - }), - new StockGoogleItem( - { - date: `2016-11-22`, - open: 792.4, - high: 793.3, - low: 788.6, - close: 791.3, - volume: 972169 - }), - new StockGoogleItem( - { - date: `2016-11-23`, - open: 790.9, - high: 792.7, - low: 787.3, - close: 789.9, - volume: 623944 - }), - new StockGoogleItem( - { - date: `2016-11-27`, - open: 790.7, - high: 797.9, - low: 787.7, - close: 791.5, - volume: 789321 - }), - new StockGoogleItem( - { - date: `2016-11-28`, - open: 793.7, - high: 794.2, - low: 783.2, - close: 785, - volume: 1153824 - }), - new StockGoogleItem( - { - date: `2016-11-29`, - open: 783.3, - high: 785.9, - low: 778.9, - close: 782.8, - volume: 744272 - }), - new StockGoogleItem( - { - date: `2016-11-30`, - open: 782.8, - high: 782.8, - low: 770.4, - close: 771.8, - volume: 1769950 - }), - new StockGoogleItem( - { - date: `2017-00-03`, - open: 778.8, - high: 789.6, - low: 775.8, - close: 786.1, - volume: 1657268 - }), - new StockGoogleItem( - { - date: `2017-00-04`, - open: 788.4, - high: 791.3, - low: 783.2, - close: 786.9, - volume: 1072958 - }), - new StockGoogleItem( - { - date: `2017-00-05`, - open: 786.1, - high: 794.5, - low: 785, - close: 794, - volume: 1335167 - }), - new StockGoogleItem( - { - date: `2017-00-06`, - open: 795.3, - high: 807.9, - low: 792.2, - close: 806.1, - volume: 1640170 - }), - new StockGoogleItem( - { - date: `2017-00-09`, - open: 806.4, - high: 810, - low: 802.8, - close: 806.6, - volume: 1274645 - }), - new StockGoogleItem( - { - date: `2017-00-10`, - open: 807.9, - high: 809.1, - low: 803.5, - close: 804.8, - volume: 1176780 - }), - new StockGoogleItem( - { - date: `2017-00-11`, - open: 805, - high: 808.1, - low: 801.4, - close: 807.9, - volume: 1065936 - }), - new StockGoogleItem( - { - date: `2017-00-12`, - open: 807.1, - high: 807.4, - low: 799.2, - close: 806.4, - volume: 1353057 - }), - new StockGoogleItem( - { - date: `2017-00-13`, - open: 807.5, - high: 811.2, - low: 806.7, - close: 807.9, - volume: 1099215 - }), - new StockGoogleItem( - { - date: `2017-00-17`, - open: 807.1, - high: 807.1, - low: 800.4, - close: 804.6, - volume: 1362115 - }), - new StockGoogleItem( - { - date: `2017-00-18`, - open: 805.8, - high: 806.2, - low: 801, - close: 806.1, - volume: 1294407 - }), - new StockGoogleItem( - { - date: `2017-00-19`, - open: 805.1, - high: 809.5, - low: 801.8, - close: 802.2, - volume: 919325 - }), - new StockGoogleItem( - { - date: `2017-00-20`, - open: 806.9, - high: 806.9, - low: 801.7, - close: 805, - volume: 1670045 - }), - new StockGoogleItem( - { - date: `2017-00-23`, - open: 807.3, - high: 820.9, - low: 803.7, - close: 819.3, - volume: 1963628 - }), - new StockGoogleItem( - { - date: `2017-00-24`, - open: 822.3, - high: 825.9, - low: 817.8, - close: 823.9, - volume: 1474010 - }), - new StockGoogleItem( - { - date: `2017-00-25`, - open: 829.6, - high: 835.8, - low: 825.1, - close: 835.7, - volume: 1627304 - }), - new StockGoogleItem( - { - date: `2017-00-26`, - open: 837.8, - high: 838, - low: 827, - close: 832.1, - volume: 2973891 - }), - new StockGoogleItem( - { - date: `2017-00-27`, - open: 834.7, - high: 842, - low: 820.4, - close: 823.3, - volume: 2965771 - }), - new StockGoogleItem( - { - date: `2017-00-30`, - open: 814.7, - high: 815.8, - low: 799.8, - close: 802.3, - volume: 3246573 - }), - new StockGoogleItem( - { - date: `2017-00-31`, - open: 796.9, - high: 801.3, - low: 790.5, - close: 796.8, - volume: 2160556 - }), - new StockGoogleItem( - { - date: `2017-01-01`, - open: 799.7, - high: 801.2, - low: 791.2, - close: 795.7, - volume: 2029744 - }), - new StockGoogleItem( - { - date: `2017-01-02`, - open: 793.8, - high: 802.7, - low: 792, - close: 798.5, - volume: 1532138 - }), - new StockGoogleItem( - { - date: `2017-01-03`, - open: 803, - high: 806, - low: 800.4, - close: 801.5, - volume: 1463448 - }), - new StockGoogleItem( - { - date: `2017-01-06`, - open: 799.7, - high: 801.7, - low: 795.3, - close: 801.3, - volume: 1184483 - }), - new StockGoogleItem( - { - date: `2017-01-07`, - open: 804, - high: 810.5, - low: 801.8, - close: 807, - volume: 1241221 - }), - new StockGoogleItem( - { - date: `2017-01-08`, - open: 807, - high: 811.8, - low: 803.2, - close: 808.4, - volume: 1155990 - }), - new StockGoogleItem( - { - date: `2017-01-09`, - open: 809.5, - high: 810.7, - low: 804.5, - close: 809.6, - volume: 990391 - }), - new StockGoogleItem( - { - date: `2017-01-10`, - open: 811.7, - high: 815.3, - low: 809.8, - close: 813.7, - volume: 1134976 - }), - new StockGoogleItem( - { - date: `2017-01-13`, - open: 816, - high: 821, - low: 815.5, - close: 819.2, - volume: 1213324 - }), - new StockGoogleItem( - { - date: `2017-01-14`, - open: 819, - high: 823, - low: 816, - close: 820.5, - volume: 1054732 - }), - new StockGoogleItem( - { - date: `2017-01-15`, - open: 819.4, - high: 823, - low: 818.5, - close: 819, - volume: 1313617 - }), - new StockGoogleItem( - { - date: `2017-01-16`, - open: 819.9, - high: 824.4, - low: 819, - close: 824.2, - volume: 1287626 - }), - new StockGoogleItem( - { - date: `2017-01-17`, - open: 823, - high: 828.1, - low: 821.7, - close: 828.1, - volume: 1611039 - }), - new StockGoogleItem( - { - date: `2017-01-21`, - open: 828.7, - high: 833.5, - low: 828.4, - close: 831.7, - volume: 1262337 - }), - new StockGoogleItem( - { - date: `2017-01-22`, - open: 828.7, - high: 833.3, - low: 828.6, - close: 830.8, - volume: 987248 - }), - new StockGoogleItem( - { - date: `2017-01-23`, - open: 830.1, - high: 832.5, - low: 822.9, - close: 831.3, - volume: 1472771 - }), - new StockGoogleItem( - { - date: `2017-01-24`, - open: 827.7, - high: 829, - low: 824.2, - close: 828.6, - volume: 1392202 - }), - new StockGoogleItem( - { - date: `2017-01-27`, - open: 824.5, - high: 830.5, - low: 824, - close: 829.3, - volume: 1101466 - }), - new StockGoogleItem( - { - date: `2017-01-28`, - open: 825.6, - high: 828.5, - low: 820.2, - close: 823.2, - volume: 2260769 - }), - new StockGoogleItem( - { - date: `2017-02-01`, - open: 828.9, - high: 836.3, - low: 827.3, - close: 835.2, - volume: 1496540 - }), - new StockGoogleItem( - { - date: `2017-02-02`, - open: 833.9, - high: 834.5, - low: 829.6, - close: 830.6, - volume: 942476 - }), - new StockGoogleItem( - { - date: `2017-02-03`, - open: 830.6, - high: 831.4, - low: 825.8, - close: 829.1, - volume: 896378 - }), - new StockGoogleItem( - { - date: `2017-02-06`, - open: 827, - high: 828.9, - low: 822.4, - close: 827.8, - volume: 1109037 - }), - new StockGoogleItem( - { - date: `2017-02-07`, - open: 827.4, - high: 833.4, - low: 826.5, - close: 831.9, - volume: 1037630 - }), - new StockGoogleItem( - { - date: `2017-02-08`, - open: 833.5, - high: 838.1, - low: 831.8, - close: 835.4, - volume: 989773 - }), - new StockGoogleItem( - { - date: `2017-02-09`, - open: 836, - high: 842, - low: 834.2, - close: 838.7, - volume: 1261517 - }), - new StockGoogleItem( - { - date: `2017-02-10`, - open: 843.3, - high: 844.9, - low: 839.5, - close: 843.3, - volume: 1704024 - }), - new StockGoogleItem( - { - date: `2017-02-13`, - open: 844, - high: 848.7, - low: 843.3, - close: 845.5, - volume: 1223647 - }), - new StockGoogleItem( - { - date: `2017-02-14`, - open: 843.6, - high: 847.2, - low: 840.8, - close: 845.6, - volume: 780198 - }), - new StockGoogleItem( - { - date: `2017-02-15`, - open: 847.6, - high: 848.6, - low: 840.8, - close: 847.2, - volume: 1381474 - }), - new StockGoogleItem( - { - date: `2017-02-16`, - open: 849, - high: 850.9, - low: 846.1, - close: 848.8, - volume: 977560 - }), - new StockGoogleItem( - { - date: `2017-02-17`, - open: 851.6, - high: 853.4, - low: 847.1, - close: 852.1, - volume: 1716471 - }), - new StockGoogleItem( - { - date: `2017-02-20`, - open: 850, - high: 850.2, - low: 845.1, - close: 848.4, - volume: 1231521 - }), - new StockGoogleItem( - { - date: `2017-02-21`, - open: 851.4, - high: 853.5, - low: 829, - close: 830.5, - volume: 2463484 - }), - new StockGoogleItem( - { - date: `2017-02-22`, - open: 831.9, - high: 835.5, - low: 827.2, - close: 829.6, - volume: 1401465 - }), - new StockGoogleItem( - { - date: `2017-02-23`, - open: 821, - high: 822.6, - low: 812.3, - close: 817.6, - volume: 3487056 - }), - new StockGoogleItem( - { - date: `2017-02-24`, - open: 820.1, - high: 821.9, - low: 808.9, - close: 814.4, - volume: 1981006 - }), - new StockGoogleItem( - { - date: `2017-02-27`, - open: 807, - high: 821.6, - low: 803.4, - close: 819.5, - volume: 1894990 - }), - new StockGoogleItem( - { - date: `2017-02-28`, - open: 820.4, - high: 826, - low: 814, - close: 820.9, - volume: 1620542 - }), - new StockGoogleItem( - { - date: `2017-02-29`, - open: 825, - high: 832.8, - low: 822.4, - close: 831.4, - volume: 1786321 - }), - new StockGoogleItem( - { - date: `2017-02-30`, - open: 833.5, - high: 833.7, - low: 829, - close: 831.5, - volume: 1055339 - }), - new StockGoogleItem( - { - date: `2017-02-31`, - open: 829, - high: 831.6, - low: 827.4, - close: 829.6, - volume: 1401893 - }), - new StockGoogleItem( - { - date: `2017-03-03`, - open: 829.2, - high: 840.9, - low: 829.2, - close: 838.5, - volume: 1671503 - }), - new StockGoogleItem( - { - date: `2017-03-04`, - open: 831.4, - high: 835.2, - low: 829, - close: 834.6, - volume: 1045363 - }), - new StockGoogleItem( - { - date: `2017-03-05`, - open: 835.5, - high: 842.5, - low: 830.7, - close: 831.4, - volume: 1555328 - }), - new StockGoogleItem( - { - date: `2017-03-06`, - open: 832.4, - high: 836.4, - low: 826.5, - close: 827.9, - volume: 1254433 - }), - new StockGoogleItem( - { - date: `2017-03-07`, - open: 828, - high: 828.5, - low: 820.5, - close: 824.7, - volume: 1057253 - }), - new StockGoogleItem( - { - date: `2017-03-10`, - open: 825.4, - high: 829.4, - low: 823.8, - close: 824.7, - volume: 978905 - }), - new StockGoogleItem( - { - date: `2017-03-11`, - open: 824.7, - high: 827.4, - low: 817, - close: 823.4, - volume: 1079732 - }), - new StockGoogleItem( - { - date: `2017-03-12`, - open: 821.9, - high: 826.7, - low: 821, - close: 824.3, - volume: 900480 - }), - new StockGoogleItem( - { - date: `2017-03-13`, - open: 822.1, - high: 826.4, - low: 821.4, - close: 823.6, - volume: 1122362 - }), - new StockGoogleItem( - { - date: `2017-03-17`, - open: 825, - high: 837.8, - low: 824.5, - close: 837.2, - volume: 895015 - }), - new StockGoogleItem( - { - date: `2017-03-18`, - open: 834.2, - high: 838.9, - low: 832.7, - close: 836.8, - volume: 836722 - }), - new StockGoogleItem( - { - date: `2017-03-19`, - open: 839.8, - high: 842.2, - low: 836.3, - close: 838.2, - volume: 954330 - }), - new StockGoogleItem( - { - date: `2017-03-20`, - open: 841.4, - high: 845.2, - low: 839.3, - close: 841.6, - volume: 959031 - }), - new StockGoogleItem( - { - date: `2017-03-21`, - open: 842.9, - high: 843.9, - low: 840.6, - close: 843.2, - volume: 1323583 - }), - new StockGoogleItem( - { - date: `2017-03-24`, - open: 851.2, - high: 863.5, - low: 849.9, - close: 862.8, - volume: 1372541 - }), - new StockGoogleItem( - { - date: `2017-03-25`, - open: 865, - high: 875, - low: 862.8, - close: 872.3, - volume: 1671972 - }), - new StockGoogleItem( - { - date: `2017-03-26`, - open: 874.2, - high: 876, - low: 867.8, - close: 871.7, - volume: 1237167 - }), - new StockGoogleItem( - { - date: `2017-03-27`, - open: 873.6, - high: 875.4, - low: 870.4, - close: 874.3, - volume: 2026816 - }), - new StockGoogleItem( - { - date: `2017-03-28`, - open: 910.7, - high: 916.9, - low: 905.8, - close: 906, - volume: 3276255 - }), - new StockGoogleItem( - { - date: `2017-04-01`, - open: 901.9, - high: 915.7, - low: 901.5, - close: 912.6, - volume: 2115993 - }), - new StockGoogleItem( - { - date: `2017-04-02`, - open: 909.6, - high: 920.8, - low: 909.5, - close: 916.4, - volume: 1587219 - }), - new StockGoogleItem( - { - date: `2017-04-03`, - open: 914.9, - high: 928.1, - low: 912.5, - close: 927, - volume: 1499532 - }), - new StockGoogleItem( - { - date: `2017-04-04`, - open: 926.1, - high: 935.9, - low: 924.6, - close: 931.7, - volume: 1422144 - }), - new StockGoogleItem( - { - date: `2017-04-05`, - open: 933.5, - high: 934.9, - low: 925.2, - close: 927.1, - volume: 1911275 - }), - new StockGoogleItem( - { - date: `2017-04-08`, - open: 926.1, - high: 936.9, - low: 925.3, - close: 934.3, - volume: 1329825 - }), - new StockGoogleItem( - { - date: `2017-04-09`, - open: 937, - high: 937.5, - low: 929.5, - close: 932.2, - volume: 1581809 - }), - new StockGoogleItem( - { - date: `2017-04-10`, - open: 932, - high: 932, - low: 925.2, - close: 928.8, - volume: 1173925 - }), - new StockGoogleItem( - { - date: `2017-04-11`, - open: 925.3, - high: 932.5, - low: 923, - close: 930.6, - volume: 835386 - }), - new StockGoogleItem( - { - date: `2017-04-12`, - open: 931.5, - high: 933.4, - low: 927.9, - close: 932.2, - volume: 1050601 - }), - new StockGoogleItem( - { - date: `2017-04-15`, - open: 933, - high: 938.3, - low: 929.3, - close: 937.1, - volume: 1108496 - }), - new StockGoogleItem( - { - date: `2017-04-16`, - open: 940, - high: 943.1, - low: 937.6, - close: 943, - volume: 969479 - }), - new StockGoogleItem( - { - date: `2017-04-17`, - open: 935.7, - high: 939.3, - low: 918.1, - close: 919.6, - volume: 2362072 - }), - new StockGoogleItem( - { - date: `2017-04-18`, - open: 921, - high: 933.2, - low: 918.8, - close: 930.2, - volume: 1596897 - }), - new StockGoogleItem( - { - date: `2017-04-19`, - open: 931.5, - high: 937.8, - low: 931, - close: 934, - volume: 1393024 - }), - new StockGoogleItem( - { - date: `2017-04-22`, - open: 935, - high: 941.9, - low: 935, - close: 941.9, - volume: 1120385 - }), - new StockGoogleItem( - { - date: `2017-04-23`, - open: 947.9, - high: 951.5, - low: 942.6, - close: 948.8, - volume: 1270817 - }), - new StockGoogleItem( - { - date: `2017-04-24`, - open: 953, - high: 955.1, - low: 949.5, - close: 955, - volume: 1034199 - }), - new StockGoogleItem( - { - date: `2017-04-25`, - open: 957.3, - high: 972.6, - low: 955.5, - close: 969.5, - volume: 1660474 - }), - new StockGoogleItem( - { - date: `2017-04-26`, - open: 969.7, - high: 975, - low: 965, - close: 971.5, - volume: 1252010 - }), - new StockGoogleItem( - { - date: `2017-04-30`, - open: 970.3, - high: 976.2, - low: 969.5, - close: 975.9, - volume: 1466654 - }), - new StockGoogleItem( - { - date: `2017-04-31`, - open: 975, - high: 979.3, - low: 960.2, - close: 964.9, - volume: 2448067 - }), - new StockGoogleItem( - { - date: `2017-05-01`, - open: 969, - high: 971.5, - low: 960, - close: 967, - volume: 1410458 - }), - new StockGoogleItem( - { - date: `2017-05-02`, - open: 969.5, - high: 975.9, - low: 966, - close: 975.6, - volume: 1750955 - }), - new StockGoogleItem( - { - date: `2017-05-05`, - open: 976.5, - high: 986.9, - low: 975.1, - close: 983.7, - volume: 1252106 - }), - new StockGoogleItem( - { - date: `2017-05-06`, - open: 983.2, - high: 988.3, - low: 975.1, - close: 976.6, - volume: 1814624 - }), - new StockGoogleItem( - { - date: `2017-05-07`, - open: 979.6, - high: 984.1, - low: 975.8, - close: 981.1, - volume: 1453874 - }), - new StockGoogleItem( - { - date: `2017-05-08`, - open: 982.4, - high: 984.6, - low: 977.2, - close: 983.4, - volume: 1481916 - }), - new StockGoogleItem( - { - date: `2017-05-09`, - open: 984.5, - high: 984.5, - low: 935.6, - close: 949.8, - volume: 3309389 - }), - new StockGoogleItem( - { - date: `2017-05-12`, - open: 939.6, - high: 949.4, - low: 915.2, - close: 942.9, - volume: 3763529 - }), - new StockGoogleItem( - { - date: `2017-05-13`, - open: 951.9, - high: 960, - low: 944.1, - close: 953.4, - volume: 2013337 - }), - new StockGoogleItem( - { - date: `2017-05-14`, - open: 959.9, - high: 961.1, - low: 942.3, - close: 950.8, - volume: 1489715 - }), - new StockGoogleItem( - { - date: `2017-05-15`, - open: 934, - high: 943.3, - low: 924.4, - close: 942.3, - volume: 2133050 - }), - new StockGoogleItem( - { - date: `2017-05-16`, - open: 940, - high: 942, - low: 931.6, - close: 939.8, - volume: 3094711 - }), - new StockGoogleItem( - { - date: `2017-05-19`, - open: 950, - high: 960, - low: 949, - close: 957.4, - volume: 1533336 - }), - new StockGoogleItem( - { - date: `2017-05-20`, - open: 957.5, - high: 961.6, - low: 950, - close: 950.6, - volume: 1125990 - }), - new StockGoogleItem( - { - date: `2017-05-21`, - open: 953.6, - high: 960.1, - low: 950.8, - close: 959.5, - volume: 1202233 - }), - new StockGoogleItem( - { - date: `2017-05-22`, - open: 958.7, - high: 960.7, - low: 954.5, - close: 957.1, - volume: 941958 - }), - new StockGoogleItem( - { - date: `2017-05-23`, - open: 956.8, - high: 966, - low: 954.2, - close: 965.6, - volume: 1527856 - }), - new StockGoogleItem( - { - date: `2017-05-26`, - open: 969.9, - high: 973.3, - low: 950.8, - close: 952.3, - volume: 1598355 - }), - new StockGoogleItem( - { - date: `2017-05-27`, - open: 942.5, - high: 948.3, - low: 926.9, - close: 927.3, - volume: 2579930 - }), - new StockGoogleItem( - { - date: `2017-05-28`, - open: 929, - high: 942.8, - low: 916, - close: 940.5, - volume: 2721406 - }), - new StockGoogleItem( - { - date: `2017-05-29`, - open: 929.9, - high: 931.3, - low: 910.6, - close: 917.8, - volume: 3299176 - }), - new StockGoogleItem( - { - date: `2017-05-30`, - open: 926, - high: 926, - low: 908.3, - close: 908.7, - volume: 2090226 - }), - new StockGoogleItem( - { - date: `2017-06-03`, - open: 912.2, - high: 913.9, - low: 894.8, - close: 898.7, - volume: 1710373 - }), - new StockGoogleItem( - { - date: `2017-06-05`, - open: 901.8, - high: 914.5, - low: 898.5, - close: 911.7, - volume: 1813884 - }), - new StockGoogleItem( - { - date: `2017-06-06`, - open: 904.1, - high: 914.9, - low: 899.7, - close: 906.7, - volume: 1424503 - }), - new StockGoogleItem( - { - date: `2017-06-07`, - open: 908.9, - high: 921.5, - low: 908.9, - close: 918.6, - volume: 1637785 - }), - new StockGoogleItem( - { - date: `2017-06-10`, - open: 921.8, - high: 930.4, - low: 919.6, - close: 928.8, - volume: 1192825 - }), - new StockGoogleItem( - { - date: `2017-06-11`, - open: 929.5, - high: 931.4, - low: 922, - close: 930.1, - volume: 1113235 - }), - new StockGoogleItem( - { - date: `2017-06-12`, - open: 938.7, - high: 946.3, - low: 934.5, - close: 943.8, - volume: 1532144 - }), - new StockGoogleItem( - { - date: `2017-06-13`, - open: 946.3, - high: 954.5, - low: 943, - close: 947.2, - volume: 1294687 - }), - new StockGoogleItem( - { - date: `2017-06-14`, - open: 952, - high: 956.9, - low: 948, - close: 956, - volume: 1053774 - }), - new StockGoogleItem( - { - date: `2017-06-17`, - open: 957, - high: 960.7, - low: 949.2, - close: 953.4, - volume: 1165537 - }), - new StockGoogleItem( - { - date: `2017-06-18`, - open: 953, - high: 968, - low: 950.6, - close: 965.4, - volume: 1153964 - }), - new StockGoogleItem( - { - date: `2017-06-19`, - open: 967.8, - high: 973, - low: 964, - close: 970.9, - volume: 1224540 - }), - new StockGoogleItem( - { - date: `2017-06-20`, - open: 975, - high: 975.9, - low: 961.5, - close: 968.1, - volume: 1624463 - }), - new StockGoogleItem( - { - date: `2017-06-21`, - open: 962.3, - high: 973.2, - low: 960.1, - close: 972.9, - volume: 1711000 - }), - new StockGoogleItem( - { - date: `2017-06-24`, - open: 972.2, - high: 986.2, - low: 970.8, - close: 980.3, - volume: 3248347 - }), - new StockGoogleItem( - { - date: `2017-06-25`, - open: 953.8, - high: 959.7, - low: 945.4, - close: 950.7, - volume: 4660979 - }), - new StockGoogleItem( - { - date: `2017-06-26`, - open: 954.7, - high: 955, - low: 942.3, - close: 947.8, - volume: 2088256 - }), - new StockGoogleItem( - { - date: `2017-06-27`, - open: 951.8, - high: 951.8, - low: 920, - close: 934.1, - volume: 3212996 - }), - new StockGoogleItem( - { - date: `2017-06-28`, - open: 929.4, - high: 943.8, - low: 927.5, - close: 941.5, - volume: 1846351 - }), - new StockGoogleItem( - { - date: `2017-06-31`, - open: 941.9, - high: 943.6, - low: 926, - close: 930.5, - volume: 1970095 - }), - new StockGoogleItem( - { - date: `2017-07-01`, - open: 932.4, - high: 937.5, - low: 929.3, - close: 930.8, - volume: 1277734 - }), - new StockGoogleItem( - { - date: `2017-07-02`, - open: 928.6, - high: 932.6, - low: 916.7, - close: 930.4, - volume: 1824448 - }), - new StockGoogleItem( - { - date: `2017-07-03`, - open: 930.3, - high: 932.2, - low: 922.2, - close: 923.6, - volume: 1202512 - }), - new StockGoogleItem( - { - date: `2017-07-04`, - open: 926.8, - high: 930.3, - low: 923, - close: 928, - volume: 1082267 - }), - new StockGoogleItem( - { - date: `2017-07-07`, - open: 929.1, - high: 931.7, - low: 926.5, - close: 929.4, - volume: 1032239 - }), - new StockGoogleItem( - { - date: `2017-07-08`, - open: 927.1, - high: 935.8, - low: 925.6, - close: 926.8, - volume: 1061579 - }), - new StockGoogleItem( - { - date: `2017-07-09`, - open: 920.6, - high: 926, - low: 917.3, - close: 922.9, - volume: 1192081 - }), - new StockGoogleItem( - { - date: `2017-07-10`, - open: 917.5, - high: 919.3, - low: 906.1, - close: 907.2, - volume: 1823967 - }), - new StockGoogleItem( - { - date: `2017-07-11`, - open: 908, - high: 917.8, - low: 905.6, - close: 914.4, - volume: 1206782 - }), - new StockGoogleItem( - { - date: `2017-07-14`, - open: 922.5, - high: 924.7, - low: 918.2, - close: 922.7, - volume: 1064530 - }), - new StockGoogleItem( - { - date: `2017-07-15`, - open: 924.2, - high: 926.5, - low: 919.8, - close: 922.2, - volume: 883369 - }), - new StockGoogleItem( - { - date: `2017-07-16`, - open: 925.3, - high: 932.7, - low: 923.4, - close: 927, - volume: 1006711 - }), - new StockGoogleItem( - { - date: `2017-07-17`, - open: 925.8, - high: 926.9, - low: 911, - close: 911, - volume: 1277238 - }), - new StockGoogleItem( - { - date: `2017-07-18`, - open: 910.3, - high: 915.3, - low: 907.1, - close: 910.7, - volume: 1342689 - }), - new StockGoogleItem( - { - date: `2017-07-21`, - open: 910, - high: 913, - low: 903.4, - close: 906.7, - volume: 943441 - }), - new StockGoogleItem( - { - date: `2017-07-22`, - open: 912.7, - high: 925.9, - low: 911.5, - close: 924.7, - volume: 1166737 - }), - new StockGoogleItem( - { - date: `2017-07-23`, - open: 921.9, - high: 929.9, - low: 919.4, - close: 927, - volume: 1090248 - }), - new StockGoogleItem( - { - date: `2017-07-24`, - open: 928.7, - high: 930.8, - low: 915.5, - close: 921.3, - volume: 1270306 - }), - new StockGoogleItem( - { - date: `2017-07-25`, - open: 923.5, - high: 925.6, - low: 915.5, - close: 915.9, - volume: 1053376 - }), - new StockGoogleItem( - { - date: `2017-07-28`, - open: 916, - high: 919.2, - low: 911.9, - close: 913.8, - volume: 1086484 - }), - new StockGoogleItem( - { - date: `2017-07-29`, - open: 905.1, - high: 923.3, - low: 905, - close: 921.3, - volume: 1185564 - }), - new StockGoogleItem( - { - date: `2017-07-30`, - open: 920, - high: 930.8, - low: 919.6, - close: 929.6, - volume: 1301225 - }), - new StockGoogleItem( - { - date: `2017-07-31`, - open: 931.8, - high: 942, - low: 931.8, - close: 939.3, - volume: 1582579 - }), - new StockGoogleItem( - { - date: `2017-08-01`, - open: 941.1, - high: 942.5, - low: 935.1, - close: 937.3, - volume: 947374 - }), - new StockGoogleItem( - { - date: `2017-08-05`, - open: 933.1, - high: 937, - low: 922, - close: 928.5, - volume: 1348292 - }), - new StockGoogleItem( - { - date: `2017-08-06`, - open: 930.1, - high: 930.9, - low: 919.3, - close: 927.8, - volume: 1527650 - }), - new StockGoogleItem( - { - date: `2017-08-07`, - open: 931.7, - high: 936.4, - low: 923.6, - close: 936, - volume: 1212743 - }), - new StockGoogleItem( - { - date: `2017-08-08`, - open: 936.5, - high: 937, - low: 924.9, - close: 926.5, - volume: 1011538 - }), - new StockGoogleItem( - { - date: `2017-08-11`, - open: 934.3, - high: 938.4, - low: 926.9, - close: 929.1, - volume: 1266991 - }), - new StockGoogleItem( - { - date: `2017-08-12`, - open: 932.6, - high: 933.5, - low: 923.9, - close: 932.1, - volume: 1134397 - }), - new StockGoogleItem( - { - date: `2017-08-13`, - open: 930.7, - high: 937.3, - low: 929.9, - close: 935.1, - volume: 1102631 - }), - new StockGoogleItem( - { - date: `2017-08-14`, - open: 931.3, - high: 932.8, - low: 924, - close: 925.1, - volume: 1397644 - }), - new StockGoogleItem( - { - date: `2017-08-15`, - open: 924.7, - high: 926.5, - low: 916.4, - close: 920.3, - volume: 2505430 - }), - new StockGoogleItem( - { - date: `2017-08-18`, - open: 920, - high: 922.1, - low: 910.6, - close: 915, - volume: 1306922 - }), - new StockGoogleItem( - { - date: `2017-08-19`, - open: 917.4, - high: 922.4, - low: 912.5, - close: 921.8, - volume: 936654 - }), - new StockGoogleItem( - { - date: `2017-08-20`, - open: 923, - high: 933.9, - low: 922, - close: 931.6, - volume: 1669763 - }), - new StockGoogleItem( - { - date: `2017-08-21`, - open: 933, - high: 936.5, - low: 923.8, - close: 932.5, - volume: 1290607 - }), - new StockGoogleItem( - { - date: `2017-08-22`, - open: 927.8, - high: 934.7, - low: 926.5, - close: 928.5, - volume: 1052704 - }), - new StockGoogleItem( - { - date: `2017-08-25`, - open: 925.5, - high: 926.4, - low: 909.7, - close: 921, - volume: 1856822 - }), - new StockGoogleItem( - { - date: `2017-08-26`, - open: 923.7, - high: 930.8, - low: 921.1, - close: 924.9, - volume: 1666861 - }), - new StockGoogleItem( - { - date: `2017-08-27`, - open: 927.7, - high: 949.9, - low: 927.7, - close: 944.5, - volume: 2212600 - }), - new StockGoogleItem( - { - date: `2017-08-28`, - open: 941.4, - high: 950.7, - low: 940.5, - close: 949.5, - volume: 1020312 - }), - new StockGoogleItem( - { - date: `2017-08-29`, - open: 952, - high: 959.8, - low: 951.5, - close: 959.1, - volume: 1580994 - }), - new StockGoogleItem( - { - date: `2017-09-02`, - open: 960, - high: 962.5, - low: 947.8, - close: 953.3, - volume: 1283444 - }), - new StockGoogleItem( - { - date: `2017-09-03`, - open: 954, - high: 958, - low: 949.1, - close: 957.8, - volume: 888346 - }), - new StockGoogleItem( - { - date: `2017-09-04`, - open: 957, - high: 960.4, - low: 950.7, - close: 951.7, - volume: 952391 - }), - new StockGoogleItem( - { - date: `2017-09-05`, - open: 955.5, - high: 970.9, - low: 955.2, - close: 970, - volume: 1213816 - }), - new StockGoogleItem( - { - date: `2017-09-06`, - open: 966.7, - high: 979.5, - low: 963.4, - close: 978.9, - volume: 1173882 - }), - new StockGoogleItem( - { - date: `2017-09-09`, - open: 980, - high: 985.4, - low: 976.1, - close: 977, - volume: 891355 - }), - new StockGoogleItem( - { - date: `2017-09-10`, - open: 980, - high: 981.6, - low: 966.1, - close: 972.6, - volume: 968362 - }), - new StockGoogleItem( - { - date: `2017-09-11`, - open: 973.7, - high: 990.7, - low: 972.3, - close: 989.3, - volume: 1693274 - }), - new StockGoogleItem( - { - date: `2017-09-12`, - open: 987.5, - high: 994.1, - low: 985, - close: 987.8, - volume: 1262793 - }), - new StockGoogleItem( - { - date: `2017-09-13`, - open: 992, - high: 997.2, - low: 989, - close: 989.7, - volume: 1169777 - }), - new StockGoogleItem( - { - date: `2017-09-16`, - open: 992.1, - high: 993.9, - low: 984, - close: 992, - volume: 910543 - }), - new StockGoogleItem( - { - date: `2017-09-17`, - open: 990.3, - high: 996.4, - low: 988.6, - close: 992.2, - volume: 1290186 - }), - new StockGoogleItem( - { - date: `2017-09-18`, - open: 991.8, - high: 996.7, - low: 987, - close: 992.8, - volume: 1057581 - }), - new StockGoogleItem( - { - date: `2017-09-19`, - open: 986, - high: 988.9, - low: 978.4, - close: 984.5, - volume: 1313575 - }), - new StockGoogleItem( - { - date: `2017-09-20`, - open: 989.4, - high: 991, - low: 984.6, - close: 988.2, - volume: 1183186 - }), - new StockGoogleItem( - { - date: `2017-09-23`, - open: 989.5, - high: 989.5, - low: 966.1, - close: 968.5, - volume: 1478448 - }), - new StockGoogleItem( - { - date: `2017-09-24`, - open: 970, - high: 972.2, - low: 961, - close: 970.5, - volume: 1212153 - }), - new StockGoogleItem( - { - date: `2017-09-25`, - open: 968.4, - high: 976.1, - low: 960.5, - close: 973.3, - volume: 1211262 - }), - new StockGoogleItem( - { - date: `2017-09-26`, - open: 980, - high: 987.6, - low: 972.2, - close: 972.6, - volume: 2042149 - }), - new StockGoogleItem( - { - date: `2017-09-27`, - open: 1009.2, - high: 1048.4, - low: 1008.2, - close: 1019.3, - volume: 5167689 - }), - new StockGoogleItem( - { - date: `2017-09-30`, - open: 1014, - high: 1025, - low: 1007.5, - close: 1017.1, - volume: 2085062 - }), - new StockGoogleItem( - { - date: `2017-09-31`, - open: 1015.2, - high: 1024, - low: 1010.4, - close: 1016.6, - volume: 1331391 - }), - new StockGoogleItem( - { - date: `2017-10-01`, - open: 1017.2, - high: 1029.7, - low: 1017, - close: 1025.5, - volume: 1373444 - }), - new StockGoogleItem( - { - date: `2017-10-02`, - open: 1021.8, - high: 1028.1, - low: 1013, - close: 1025.6, - volume: 1048970 - }), - new StockGoogleItem( - { - date: `2017-10-03`, - open: 1022.1, - high: 1032.7, - low: 1020.3, - close: 1032.5, - volume: 1076350 - }), - new StockGoogleItem( - { - date: `2017-10-06`, - open: 1029, - high: 1034.9, - low: 1025, - close: 1025.9, - volume: 1125185 - }), - new StockGoogleItem( - { - date: `2017-10-07`, - open: 1027.3, - high: 1034, - low: 1025.1, - close: 1033.3, - volume: 1112331 - }), - new StockGoogleItem( - { - date: `2017-10-08`, - open: 1030.5, - high: 1043.5, - low: 1028.5, - close: 1039.8, - volume: 1088716 - }), - new StockGoogleItem( - { - date: `2017-10-09`, - open: 1034, - high: 1034, - low: 1019.7, - close: 1031.3, - volume: 1245246 - }), - new StockGoogleItem( - { - date: `2017-10-10`, - open: 1026.5, - high: 1030.8, - low: 1025.3, - close: 1028.1, - volume: 720676 - }), - new StockGoogleItem( - { - date: `2017-10-13`, - open: 1023.4, - high: 1031.6, - low: 1022.6, - close: 1025.8, - volume: 885779 - }), - new StockGoogleItem( - { - date: `2017-10-14`, - open: 1022.6, - high: 1026.8, - low: 1014.1, - close: 1026, - volume: 959222 - }), - new StockGoogleItem( - { - date: `2017-10-15`, - open: 1019.2, - high: 1024.1, - low: 1015.4, - close: 1020.9, - volume: 853992 - }), - new StockGoogleItem( - { - date: `2017-10-16`, - open: 1022.5, - high: 1035.9, - low: 1022.5, - close: 1032.5, - volume: 1129688 - }), - new StockGoogleItem( - { - date: `2017-10-17`, - open: 1034, - high: 1034.4, - low: 1017.8, - close: 1019.1, - volume: 1397064 - }), - new StockGoogleItem( - { - date: `2017-10-20`, - open: 1020.3, - high: 1022.6, - low: 1017.5, - close: 1018.4, - volume: 953470 - }), - new StockGoogleItem( - { - date: `2017-10-21`, - open: 1023.3, - high: 1035.1, - low: 1022.7, - close: 1034.5, - volume: 1096999 - }), - new StockGoogleItem( - { - date: `2017-10-22`, - open: 1035, - high: 1039.7, - low: 1031.4, - close: 1036, - volume: 746878 - }), - new StockGoogleItem( - { - date: `2017-10-24`, - open: 1035.9, - high: 1043.2, - low: 1035, - close: 1040.6, - volume: 536996 - }), - new StockGoogleItem( - { - date: `2017-10-27`, - open: 1040, - high: 1055.5, - low: 1038.4, - close: 1054.2, - volume: 1307881 - }), - new StockGoogleItem( - { - date: `2017-10-28`, - open: 1055.1, - high: 1062.4, - low: 1040, - close: 1047.4, - volume: 1424394 - }), - new StockGoogleItem( - { - date: `2017-10-29`, - open: 1042.7, - high: 1044.1, - low: 1015.6, - close: 1021.7, - volume: 2459426 - }), - new StockGoogleItem( - { - date: `2017-10-30`, - open: 1022.4, - high: 1028.5, - low: 1015, - close: 1021.4, - volume: 1724031 - }), - new StockGoogleItem( - { - date: `2017-11-01`, - open: 1015.8, - high: 1022.5, - low: 1002, - close: 1010.2, - volume: 1909566 - }), - new StockGoogleItem( - { - date: `2017-11-04`, - open: 1012.7, - high: 1016.1, - low: 995.6, - close: 998.7, - volume: 1906439 - }), - new StockGoogleItem( - { - date: `2017-11-05`, - open: 995.9, - high: 1020.6, - low: 988.3, - close: 1005.1, - volume: 2067318 - }), - new StockGoogleItem( - { - date: `2017-11-06`, - open: 1001.5, - high: 1025, - low: 1001.1, - close: 1018.4, - volume: 1271964 - }), - new StockGoogleItem( - { - date: `2017-11-07`, - open: 1020.4, - high: 1034.2, - low: 1018.1, - close: 1030.9, - volume: 1458242 - }), - new StockGoogleItem( - { - date: `2017-11-08`, - open: 1037.5, - high: 1042, - low: 1032.5, - close: 1037, - volume: 1290774 - }), - new StockGoogleItem( - { - date: `2017-11-11`, - open: 1035.5, - high: 1043.8, - low: 1032, - close: 1041.1, - volume: 1192838 - }), - new StockGoogleItem( - { - date: `2017-11-12`, - open: 1039.6, - high: 1050.3, - low: 1033.7, - close: 1040.5, - volume: 1279659 - }), - new StockGoogleItem( - { - date: `2017-11-13`, - open: 1046.1, - high: 1046.7, - low: 1038.4, - close: 1040.6, - volume: 1282677 - }), - new StockGoogleItem( - { - date: `2017-11-14`, - open: 1045, - high: 1058.5, - low: 1043.1, - close: 1049.2, - volume: 1558835 - }), - new StockGoogleItem( - { - date: `2017-11-15`, - open: 1054.6, - high: 1067.6, - low: 1049.5, - close: 1064.2, - volume: 3275931 - }), - new StockGoogleItem( - { - date: `2017-11-18`, - open: 1066.1, - high: 1078.5, - low: 1062, - close: 1077.1, - volume: 1554552 - }), - new StockGoogleItem( - { - date: `2017-11-19`, - open: 1075.2, - high: 1076.8, - low: 1063.5, - close: 1070.7, - volume: 1338725 - }), - new StockGoogleItem( - { - date: `2017-11-20`, - open: 1071.8, - high: 1073.4, - low: 1061.5, - close: 1065, - volume: 1268582 - }), - new StockGoogleItem( - { - date: `2017-11-21`, - open: 1065, - high: 1069.3, - low: 1061.8, - close: 1063.6, - volume: 995703 - }), - new StockGoogleItem( - { - date: `2017-11-22`, - open: 1061.1, - high: 1064.2, - low: 1059.4, - close: 1060.1, - volume: 755095 - }), - new StockGoogleItem( - { - date: `2017-11-26`, - open: 1058.1, - high: 1060.1, - low: 1050.2, - close: 1056.7, - volume: 761237 - }), - new StockGoogleItem( - { - date: `2017-11-27`, - open: 1057.4, - high: 1058.4, - low: 1048, - close: 1049.4, - volume: 1271911 - }), - new StockGoogleItem( - { - date: `2017-11-28`, - open: 1051.6, - high: 1054.8, - low: 1044.8, - close: 1048.1, - volume: 837121 - }), - new StockGoogleItem( - { - date: `2017-11-29`, - open: 1046.7, - high: 1049.7, - low: 1044.9, - close: 1046.4, - volume: 887511 - }), - new StockGoogleItem( - { - date: `2018-00-02`, - open: 1048.3, - high: 1066.9, - low: 1045.2, - close: 1065, - volume: 1237564 - }), - new StockGoogleItem( - { - date: `2018-00-03`, - open: 1064.3, - high: 1086.3, - low: 1063.2, - close: 1082.5, - volume: 1430170 - }), - new StockGoogleItem( - { - date: `2018-00-04`, - open: 1088, - high: 1093.6, - low: 1084, - close: 1086.4, - volume: 1004605 - }), - new StockGoogleItem( - { - date: `2018-00-05`, - open: 1094, - high: 1104.3, - low: 1092, - close: 1102.2, - volume: 1279123 - }), - new StockGoogleItem( - { - date: `2018-00-08`, - open: 1102.2, - high: 1111.3, - low: 1101.6, - close: 1106.9, - volume: 1047603 - }), - new StockGoogleItem( - { - date: `2018-00-09`, - open: 1109.4, - high: 1110.6, - low: 1101.2, - close: 1106.3, - volume: 902541 - }), - new StockGoogleItem( - { - date: `2018-00-10`, - open: 1097.1, - high: 1104.6, - low: 1096.1, - close: 1102.6, - volume: 1042793 - }), - new StockGoogleItem( - { - date: `2018-00-11`, - open: 1106.3, - high: 1106.5, - low: 1099.6, - close: 1105.5, - volume: 978292 - }), - new StockGoogleItem( - { - date: `2018-00-12`, - open: 1102.4, - high: 1124.3, - low: 1101.2, - close: 1122.3, - volume: 1720533 - }), - new StockGoogleItem( - { - date: `2018-00-16`, - open: 1132.5, - high: 1139.9, - low: 1117.8, - close: 1121.8, - volume: 1575261 - }), - new StockGoogleItem( - { - date: `2018-00-17`, - open: 1126.2, - high: 1132.6, - low: 1117, - close: 1132, - volume: 1202639 - }), - new StockGoogleItem( - { - date: `2018-00-18`, - open: 1131.4, - high: 1132.5, - low: 1117.5, - close: 1129.8, - volume: 1198234 - }), - new StockGoogleItem( - { - date: `2018-00-19`, - open: 1131.8, - high: 1137.9, - low: 1128.3, - close: 1137.5, - volume: 1778229 - }), - new StockGoogleItem( - { - date: `2018-00-22`, - open: 1137.5, - high: 1159.9, - low: 1135.1, - close: 1155.8, - volume: 1617975 - }), - new StockGoogleItem( - { - date: `2018-00-23`, - open: 1159.8, - high: 1171.6, - low: 1158.8, - close: 1170, - volume: 1333056 - }), - new StockGoogleItem( - { - date: `2018-00-24`, - open: 1177.3, - high: 1179.9, - low: 1161, - close: 1164.2, - volume: 1416625 - }), - new StockGoogleItem( - { - date: `2018-00-25`, - open: 1172.5, - high: 1175.9, - low: 1162.8, - close: 1170.4, - volume: 1480540 - }), - new StockGoogleItem( - { - date: `2018-00-26`, - open: 1175.1, - high: 1175.8, - low: 1158.1, - close: 1175.8, - volume: 2018755 - }), - new StockGoogleItem( - { - date: `2018-00-29`, - open: 1176.5, - high: 1186.9, - low: 1172, - close: 1175.6, - volume: 1378913 - }), - new StockGoogleItem( - { - date: `2018-00-30`, - open: 1167.8, - high: 1176.5, - low: 1163.5, - close: 1163.7, - volume: 1556346 - }), - new StockGoogleItem( - { - date: `2018-00-31`, - open: 1170.6, - high: 1173, - low: 1159.1, - close: 1169.9, - volume: 1538688 - }), - ]; - super(...newItems.slice(0)); - } - } -} +export class StockItem { + public open?: number; + public close?: number; + public high?: number; + public low?: number; + public volume?: number; + + public date?: Date; + + } + //end data \ No newline at end of file diff --git a/samples/charts/financial-chart/data-legend-styling-props/src/index.ts b/samples/charts/financial-chart/data-legend-styling-props/src/index.ts index 920e2b95fd..0bff69c922 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,6 +1,6 @@ import { IgcFinancialChartModule, IgcDataChartInteractivityModule, IgcDataLegendModule } from 'igniteui-webcomponents-charts'; import { IgcDataLegendComponent, IgcFinancialChartComponent } from 'igniteui-webcomponents-charts'; -import { StockGoogleItem, StockGoogle } from './StockGoogle'; +import { StockGoogle } from './StockGoogle'; import { ModuleManager } from 'igniteui-webcomponents-core'; diff --git a/samples/charts/financial-chart/data-legend/src/MultipleStocks.ts b/samples/charts/financial-chart/data-legend/src/MultipleStocks.ts index 3688676b43..ca994ac344 100644 --- a/samples/charts/financial-chart/data-legend/src/MultipleStocks.ts +++ b/samples/charts/financial-chart/data-legend/src/MultipleStocks.ts @@ -80,7 +80,7 @@ export class MultipleStocks extends Array> { for (let json of jsonData) { let parts = json.date.split("-"); // "2020-01-01" let item = new StockItem(); - item.date = new Date(parts[0], parts[1], parts[2]); + item.date = new Date(parts[0], parts[1], parts[2],13,0,0); item.open = json.open; item.high = json.high; item.low = json.low; diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/MultipleStocks.ts b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/MultipleStocks.ts index 3688676b43..ca994ac344 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/src/MultipleStocks.ts +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/src/MultipleStocks.ts @@ -80,7 +80,7 @@ export class MultipleStocks extends Array> { for (let json of jsonData) { let parts = json.date.split("-"); // "2020-01-01" let item = new StockItem(); - item.date = new Date(parts[0], parts[1], parts[2]); + item.date = new Date(parts[0], parts[1], parts[2],13,0,0); item.open = json.open; item.high = json.high; item.low = json.low; diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts b/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts index efd806727a..f482695fe8 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts +++ b/samples/charts/financial-chart/data-tooltip-styling-props/src/StockGoogle.ts @@ -1,8727 +1,1000 @@ -export class StockGoogleItem { - public constructor(init: Partial) { - Object.assign(this, init); - } +//begin data +export class StockGoogle extends Array { - public date: string; - public open: number; - public high: number; - public low: number; - public close: number; - public volume: number; + constructor(){ + super(); + let jsonData = [ + { "Date": "2014-03-01", "Open": 559.6, "High": 568.2, "Low": 558.4, "Close": 566.9, "Volume": 2182626 }, + { "Date": "2014-03-02", "Open": 562.4, "High": 571.8, "Low": 561.4, "Close": 567.0, "Volume": 2088804 }, + { "Date": "2014-03-03", "Open": 569.9, "High": 587.3, "Low": 564.1, "Close": 569.7, "Volume": 5087530 }, + { "Date": "2014-03-04", "Open": 574.6, "High": 577.8, "Low": 543.0, "Close": 543.1, "Volume": 6377658 }, + { "Date": "2014-03-07", "Open": 540.7, "High": 548.5, "Low": 527.1, "Close": 538.1, "Volume": 4389569 }, + { "Date": "2014-03-08", "Open": 542.6, "High": 555.0, "Low": 541.6, "Close": 554.9, "Volume": 3152406 }, + { "Date": "2014-03-09", "Open": 559.6, "High": 565.4, "Low": 553.0, "Close": 564.1, "Volume": 3324742 }, + { "Date": "2014-03-10", "Open": 565.0, "High": 565.0, "Low": 539.9, "Close": 541.0, "Volume": 4027743 }, + { "Date": "2014-03-11", "Open": 532.5, "High": 540.0, "Low": 526.5, "Close": 530.6, "Volume": 3916171 }, + { "Date": "2014-03-14", "Open": 538.3, "High": 544.1, "Low": 529.6, "Close": 532.5, "Volume": 2568020 }, + { "Date": "2014-03-15", "Open": 536.8, "High": 538.5, "Low": 518.5, "Close": 536.4, "Volume": 3847453 }, + { "Date": "2014-03-16", "Open": 543.0, "High": 557.0, "Low": 540.0, "Close": 556.5, "Volume": 4879889 }, + { "Date": "2014-03-17", "Open": 548.8, "High": 549.5, "Low": 531.1, "Close": 536.1, "Volume": 6795393 }, + { "Date": "2014-03-21", "Open": 536.1, "High": 536.7, "Low": 525.6, "Close": 528.6, "Volume": 2561214 }, + { "Date": "2014-03-22", "Open": 528.6, "High": 537.2, "Low": 527.5, "Close": 534.8, "Volume": 2359421 }, + { "Date": "2014-03-23", "Open": 533.8, "High": 533.9, "Low": 526.3, "Close": 526.9, "Volume": 2051066 }, + { "Date": "2014-03-24", "Open": 530.1, "High": 531.6, "Low": 522.1, "Close": 525.2, "Volume": 1881965 }, + { "Date": "2014-03-25", "Open": 522.5, "High": 524.7, "Low": 515.4, "Close": 516.2, "Volume": 2097264 }, + { "Date": "2014-03-28", "Open": 517.2, "High": 518.6, "Low": 502.8, "Close": 517.1, "Volume": 3326429 }, + { "Date": "2014-03-29", "Open": 516.9, "High": 529.5, "Low": 516.3, "Close": 527.7, "Volume": 2692489 }, + { "Date": "2014-03-30", "Open": 527.6, "High": 528.0, "Low": 522.5, "Close": 526.7, "Volume": 1746904 }, + { "Date": "2014-04-01", "Open": 527.1, "High": 532.9, "Low": 523.9, "Close": 531.4, "Volume": 1900432 }, + { "Date": "2014-04-02", "Open": 533.8, "High": 534.0, "Low": 525.6, "Close": 527.9, "Volume": 1685042 }, + { "Date": "2014-04-05", "Open": 524.8, "High": 528.9, "Low": 521.3, "Close": 527.8, "Volume": 1021408 }, + { "Date": "2014-04-06", "Open": 525.2, "High": 526.8, "Low": 515.1, "Close": 515.1, "Volume": 1684381 }, + { "Date": "2014-04-07", "Open": 515.8, "High": 516.7, "Low": 503.3, "Close": 510.0, "Volume": 3216077 }, + { "Date": "2014-04-08", "Open": 508.5, "High": 517.2, "Low": 506.4, "Close": 511.0, "Volume": 2016131 }, + { "Date": "2014-04-09", "Open": 510.8, "High": 519.9, "Low": 504.2, "Close": 518.7, "Volume": 2432783 }, + { "Date": "2014-04-12", "Open": 523.5, "High": 530.2, "Low": 519.0, "Close": 529.9, "Volume": 1908392 }, + { "Date": "2014-04-13", "Open": 530.9, "High": 536.1, "Low": 529.5, "Close": 533.1, "Volume": 1648907 }, + { "Date": "2014-04-14", "Open": 533.0, "High": 533.0, "Low": 525.3, "Close": 526.6, "Volume": 1191863 }, + { "Date": "2014-04-15", "Open": 525.7, "High": 525.9, "Low": 517.4, "Close": 520.0, "Volume": 1703758 }, + { "Date": "2014-04-16", "Open": 521.4, "High": 521.8, "Low": 515.4, "Close": 520.6, "Volume": 1481688 }, + { "Date": "2014-04-19", "Open": 519.7, "High": 529.8, "Low": 517.6, "Close": 528.9, "Volume": 1276362 }, + { "Date": "2014-04-20", "Open": 529.7, "High": 536.2, "Low": 526.3, "Close": 529.8, "Volume": 1780113 }, + { "Date": "2014-04-21", "Open": 532.9, "High": 539.2, "Low": 531.9, "Close": 538.9, "Volume": 1193389 }, + { "Date": "2014-04-22", "Open": 541.1, "High": 547.6, "Low": 540.8, "Close": 545.1, "Volume": 1611837 }, + { "Date": "2014-04-23", "Open": 547.3, "High": 553.6, "Low": 543.7, "Close": 552.7, "Volume": 1929632 }, + { "Date": "2014-04-27", "Open": 556.0, "High": 566.0, "Low": 554.4, "Close": 566.0, "Volume": 2100298 }, + { "Date": "2014-04-28", "Open": 564.6, "High": 567.8, "Low": 561.0, "Close": 561.7, "Volume": 1647717 }, + { "Date": "2014-04-29", "Open": 563.4, "High": 564.0, "Low": 558.7, "Close": 560.1, "Volume": 1350657 }, + { "Date": "2014-04-30", "Open": 560.8, "High": 561.4, "Low": 555.9, "Close": 559.9, "Volume": 1766794 }, + { "Date": "2014-05-02", "Open": 560.7, "High": 560.9, "Low": 545.7, "Close": 553.9, "Volume": 1434989 }, + { "Date": "2014-05-03", "Open": 551.0, "High": 552.3, "Low": 542.5, "Close": 544.9, "Volume": 1861921 }, + { "Date": "2014-05-04", "Open": 541.5, "High": 548.6, "Low": 538.8, "Close": 544.7, "Volume": 1812084 }, + { "Date": "2014-05-05", "Open": 546.4, "High": 555.0, "Low": 544.5, "Close": 553.9, "Volume": 1684886 }, + { "Date": "2014-05-06", "Open": 558.1, "High": 558.1, "Low": 548.9, "Close": 556.3, "Volume": 1732592 }, + { "Date": "2014-05-09", "Open": 557.1, "High": 562.9, "Low": 556.0, "Close": 562.1, "Volume": 1463676 }, + { "Date": "2014-05-10", "Open": 560.5, "High": 563.6, "Low": 557.9, "Close": 560.5, "Volume": 1349444 }, + { "Date": "2014-05-11", "Open": 558.0, "High": 559.9, "Low": 555.0, "Close": 558.8, "Volume": 1097380 }, + { "Date": "2014-05-12", "Open": 557.3, "High": 558.0, "Low": 548.5, "Close": 551.4, "Volume": 1457104 }, + { "Date": "2014-05-13", "Open": 552.3, "High": 552.3, "Low": 545.6, "Close": 551.8, "Volume": 1217176 }, + { "Date": "2014-05-16", "Open": 549.3, "High": 549.6, "Low": 541.5, "Close": 544.3, "Volume": 1704027 }, + { "Date": "2014-05-17", "Open": 544.2, "High": 545.3, "Low": 539.3, "Close": 543.0, "Volume": 1445878 }, + { "Date": "2014-05-18", "Open": 544.9, "High": 553.6, "Low": 544.0, "Close": 553.4, "Volume": 1737343 }, + { "Date": "2014-05-19", "Open": 554.2, "High": 555.0, "Low": 548.5, "Close": 554.9, "Volume": 2451341 }, + { "Date": "2014-05-20", "Open": 556.9, "High": 557.6, "Low": 550.4, "Close": 556.4, "Volume": 4496962 }, + { "Date": "2014-05-23", "Open": 555.1, "High": 565.0, "Low": 554.3, "Close": 565.0, "Volume": 1534659 }, + { "Date": "2014-05-24", "Open": 565.2, "High": 572.6, "Low": 561.0, "Close": 564.6, "Volume": 2201789 }, + { "Date": "2014-05-25", "Open": 565.3, "High": 580.0, "Low": 565.2, "Close": 578.6, "Volume": 1964447 }, + { "Date": "2014-05-26", "Open": 581.0, "High": 582.5, "Low": 571.9, "Close": 576.0, "Volume": 1737210 }, + { "Date": "2014-05-27", "Open": 577.2, "High": 579.9, "Low": 573.8, "Close": 577.2, "Volume": 2231174 }, + { "Date": "2014-05-30", "Open": 578.7, "High": 579.6, "Low": 574.8, "Close": 575.3, "Volume": 1310909 }, + { "Date": "2014-06-01", "Open": 578.3, "High": 584.4, "Low": 576.6, "Close": 582.7, "Volume": 1446309 }, + { "Date": "2014-06-02", "Open": 583.4, "High": 585.4, "Low": 580.4, "Close": 582.3, "Volume": 1054936 }, + { "Date": "2014-06-03", "Open": 583.4, "High": 585.0, "Low": 580.9, "Close": 584.7, "Volume": 712210 }, + { "Date": "2014-06-07", "Open": 583.8, "High": 586.4, "Low": 579.6, "Close": 582.3, "Volume": 1061833 }, + { "Date": "2014-06-08", "Open": 577.7, "High": 579.5, "Low": 566.1, "Close": 571.1, "Volume": 1908647 }, + { "Date": "2014-06-09", "Open": 571.6, "High": 576.7, "Low": 569.4, "Close": 576.1, "Volume": 1113907 }, + { "Date": "2014-06-10", "Open": 565.9, "High": 576.6, "Low": 565.0, "Close": 571.1, "Volume": 1353317 }, + { "Date": "2014-06-11", "Open": 571.9, "High": 580.9, "Low": 571.4, "Close": 579.2, "Volume": 1617569 }, + { "Date": "2014-06-14", "Open": 582.6, "High": 585.2, "Low": 578.0, "Close": 584.9, "Volume": 1852290 }, + { "Date": "2014-06-15", "Open": 585.7, "High": 585.8, "Low": 576.6, "Close": 584.8, "Volume": 1618815 }, + { "Date": "2014-06-16", "Open": 588.0, "High": 588.4, "Low": 582.2, "Close": 582.7, "Volume": 1394560 }, + { "Date": "2014-06-17", "Open": 579.5, "High": 581.0, "Low": 568.6, "Close": 573.7, "Volume": 3015475 }, + { "Date": "2014-06-18", "Open": 593.0, "High": 596.8, "Low": 582.0, "Close": 595.1, "Volume": 4006389 }, + { "Date": "2014-06-21", "Open": 591.8, "High": 594.4, "Low": 585.2, "Close": 589.5, "Volume": 2060334 }, + { "Date": "2014-06-22", "Open": 590.7, "High": 599.6, "Low": 590.6, "Close": 594.7, "Volume": 1694787 }, + { "Date": "2014-06-23", "Open": 593.2, "High": 597.9, "Low": 592.5, "Close": 596.0, "Volume": 1229846 }, + { "Date": "2014-06-24", "Open": 596.5, "High": 599.5, "Low": 591.8, "Close": 593.4, "Volume": 1033341 }, + { "Date": "2014-06-25", "Open": 590.4, "High": 591.9, "Low": 587.0, "Close": 589.0, "Volume": 932724 }, + { "Date": "2014-06-28", "Open": 588.1, "High": 592.5, "Low": 584.8, "Close": 590.6, "Volume": 984161 }, + { "Date": "2014-06-29", "Open": 588.8, "High": 589.7, "Low": 583.5, "Close": 585.6, "Volume": 1346647 }, + { "Date": "2014-06-30", "Open": 586.5, "High": 589.5, "Low": 584.0, "Close": 587.4, "Volume": 1013932 }, + { "Date": "2014-06-31", "Open": 580.6, "High": 583.6, "Low": 570.0, "Close": 571.6, "Volume": 2099516 }, + { "Date": "2014-07-01", "Open": 570.4, "High": 576.0, "Low": 562.9, "Close": 566.1, "Volume": 1950171 }, + { "Date": "2014-07-04", "Open": 569.0, "High": 575.4, "Low": 564.1, "Close": 573.1, "Volume": 1427169 }, + { "Date": "2014-07-05", "Open": 570.0, "High": 572.0, "Low": 562.6, "Close": 565.1, "Volume": 1556685 }, + { "Date": "2014-07-06", "Open": 561.8, "High": 570.7, "Low": 560.0, "Close": 566.4, "Volume": 1330877 }, + { "Date": "2014-07-07", "Open": 568.0, "High": 569.9, "Low": 561.1, "Close": 563.4, "Volume": 1108900 }, + { "Date": "2014-07-08", "Open": 563.6, "High": 570.3, "Low": 560.4, "Close": 568.8, "Volume": 1492491 }, + { "Date": "2014-07-11", "Open": 570.0, "High": 570.5, "Low": 566.0, "Close": 567.9, "Volume": 1215968 }, + { "Date": "2014-07-12", "Open": 564.5, "High": 565.9, "Low": 560.9, "Close": 562.7, "Volume": 1537758 }, + { "Date": "2014-07-13", "Open": 567.3, "High": 575.0, "Low": 565.8, "Close": 574.8, "Volume": 1437922 }, + { "Date": "2014-07-14", "Open": 576.2, "High": 577.9, "Low": 570.9, "Close": 574.6, "Volume": 982926 }, + { "Date": "2014-07-15", "Open": 577.9, "High": 579.4, "Low": 570.5, "Close": 573.5, "Volume": 1517056 }, + { "Date": "2014-07-18", "Open": 576.1, "High": 584.5, "Low": 576.0, "Close": 582.2, "Volume": 1282531 }, + { "Date": "2014-07-19", "Open": 585.0, "High": 587.3, "Low": 584.0, "Close": 586.9, "Volume": 979298 }, + { "Date": "2014-07-20", "Open": 585.9, "High": 586.7, "Low": 582.6, "Close": 584.5, "Volume": 1034779 }, + { "Date": "2014-07-21", "Open": 583.8, "High": 584.5, "Low": 581.1, "Close": 583.4, "Volume": 912854 }, + { "Date": "2014-07-22", "Open": 583.6, "High": 585.2, "Low": 580.6, "Close": 582.6, "Volume": 789484 }, + { "Date": "2014-07-25", "Open": 584.7, "High": 585.0, "Low": 579.0, "Close": 580.2, "Volume": 1358810 }, + { "Date": "2014-07-26", "Open": 581.3, "High": 581.8, "Low": 576.6, "Close": 577.9, "Volume": 1635465 }, + { "Date": "2014-07-27", "Open": 577.3, "High": 578.5, "Low": 570.1, "Close": 571.0, "Volume": 1700161 }, + { "Date": "2014-07-28", "Open": 569.6, "High": 573.3, "Low": 567.1, "Close": 569.2, "Volume": 1295963 }, + { "Date": "2014-07-29", "Open": 571.3, "High": 572.0, "Low": 567.1, "Close": 571.6, "Volume": 1081231 }, + { "Date": "2014-08-02", "Open": 571.9, "High": 577.8, "Low": 571.2, "Close": 577.3, "Volume": 1576830 }, + { "Date": "2014-08-03", "Open": 580.0, "High": 583.0, "Low": 575.0, "Close": 577.9, "Volume": 1214586 }, + { "Date": "2014-08-04", "Open": 580.0, "High": 586.0, "Low": 579.2, "Close": 582.0, "Volume": 1459956 }, + { "Date": "2014-08-05", "Open": 584.0, "High": 586.5, "Low": 582.0, "Close": 586.1, "Volume": 1629477 }, + { "Date": "2014-08-08", "Open": 586.6, "High": 591.8, "Low": 586.3, "Close": 589.7, "Volume": 1429101 }, + { "Date": "2014-08-09", "Open": 588.9, "High": 589.0, "Low": 580.0, "Close": 581.0, "Volume": 1286722 }, + { "Date": "2014-08-10", "Open": 581.5, "High": 583.5, "Low": 576.9, "Close": 583.1, "Volume": 975145 }, + { "Date": "2014-08-11", "Open": 580.4, "High": 581.8, "Low": 576.3, "Close": 581.4, "Volume": 1217721 }, + { "Date": "2014-08-12", "Open": 581.0, "High": 581.6, "Low": 574.5, "Close": 575.6, "Volume": 1597677 }, + { "Date": "2014-08-15", "Open": 572.9, "High": 575.0, "Low": 568.2, "Close": 573.1, "Volume": 1596224 }, + { "Date": "2014-08-16", "Open": 572.8, "High": 581.5, "Low": 572.7, "Close": 580.0, "Volume": 1478306 }, + { "Date": "2014-08-17", "Open": 580.0, "High": 587.5, "Low": 578.8, "Close": 584.8, "Volume": 1690994 }, + { "Date": "2014-08-18", "Open": 587.0, "High": 589.5, "Low": 585.0, "Close": 589.3, "Volume": 1442012 }, + { "Date": "2014-08-19", "Open": 591.5, "High": 596.5, "Low": 589.5, "Close": 596.1, "Volume": 3727045 }, + { "Date": "2014-08-22", "Open": 593.8, "High": 594.0, "Low": 583.5, "Close": 587.4, "Volume": 1687710 }, + { "Date": "2014-08-23", "Open": 586.9, "High": 586.9, "Low": 581.0, "Close": 581.1, "Volume": 1467703 }, + { "Date": "2014-08-24", "Open": 581.5, "High": 589.6, "Low": 580.5, "Close": 588.0, "Volume": 1724537 }, + { "Date": "2014-08-25", "Open": 587.5, "High": 588.0, "Low": 574.2, "Close": 575.1, "Volume": 1925350 }, + { "Date": "2014-08-26", "Open": 576.1, "High": 579.3, "Low": 574.7, "Close": 577.1, "Volume": 1439807 }, + { "Date": "2014-08-29", "Open": 571.8, "High": 578.2, "Low": 571.2, "Close": 576.4, "Volume": 1281204 }, + { "Date": "2014-08-30", "Open": 576.9, "High": 579.9, "Low": 572.9, "Close": 577.4, "Volume": 1618437 }, + { "Date": "2014-09-01", "Open": 576.0, "High": 577.6, "Low": 567.0, "Close": 568.3, "Volume": 1445027 }, + { "Date": "2014-09-02", "Open": 567.3, "High": 571.9, "Low": 563.3, "Close": 570.1, "Volume": 1175307 }, + { "Date": "2014-09-03", "Open": 573.0, "High": 577.2, "Low": 572.5, "Close": 575.3, "Volume": 1138636 }, + { "Date": "2014-09-06", "Open": 578.8, "High": 581.0, "Low": 574.4, "Close": 577.4, "Volume": 1211320 }, + { "Date": "2014-09-07", "Open": 574.4, "High": 575.3, "Low": 563.7, "Close": 563.7, "Volume": 1906427 }, + { "Date": "2014-09-08", "Open": 565.6, "High": 573.9, "Low": 557.5, "Close": 572.5, "Volume": 1987888 }, + { "Date": "2014-09-09", "Open": 571.2, "High": 571.5, "Low": 559.1, "Close": 560.9, "Volume": 2519693 }, + { "Date": "2014-09-10", "Open": 557.7, "High": 565.1, "Low": 544.0, "Close": 544.5, "Volume": 3078634 }, + { "Date": "2014-09-13", "Open": 545.0, "High": 549.5, "Low": 533.1, "Close": 533.2, "Volume": 2578676 }, + { "Date": "2014-09-14", "Open": 538.9, "High": 547.2, "Low": 533.2, "Close": 537.9, "Volume": 2217230 }, + { "Date": "2014-09-15", "Open": 531.0, "High": 532.8, "Low": 518.3, "Close": 530.0, "Volume": 3712536 }, + { "Date": "2014-09-16", "Open": 519.0, "High": 529.4, "Low": 515.0, "Close": 524.5, "Volume": 3698423 }, + { "Date": "2014-09-17", "Open": 527.3, "High": 531.0, "Low": 508.5, "Close": 511.2, "Volume": 5530674 }, + { "Date": "2014-09-20", "Open": 509.4, "High": 521.8, "Low": 508.1, "Close": 520.8, "Volume": 2605505 }, + { "Date": "2014-09-21", "Open": 525.2, "High": 526.8, "Low": 519.1, "Close": 526.5, "Volume": 2332531 }, + { "Date": "2014-09-22", "Open": 529.9, "High": 539.8, "Low": 528.8, "Close": 532.7, "Volume": 2917183 }, + { "Date": "2014-09-23", "Open": 539.3, "High": 547.2, "Low": 535.9, "Close": 544.0, "Volume": 2345296 }, + { "Date": "2014-09-24", "Open": 544.4, "High": 544.9, "Low": 535.8, "Close": 539.8, "Volume": 1972047 }, + { "Date": "2014-09-27", "Open": 537.0, "High": 544.4, "Low": 537.0, "Close": 540.8, "Volume": 1184973 }, + { "Date": "2014-09-28", "Open": 543.0, "High": 549.0, "Low": 541.6, "Close": 548.9, "Volume": 1273372 }, + { "Date": "2014-09-29", "Open": 550.0, "High": 554.2, "Low": 547.0, "Close": 549.3, "Volume": 1767107 }, + { "Date": "2014-09-30", "Open": 549.0, "High": 552.8, "Low": 543.5, "Close": 550.3, "Volume": 1451667 }, + { "Date": "2014-09-31", "Open": 559.4, "High": 559.6, "Low": 554.8, "Close": 559.1, "Volume": 2032887 }, + { "Date": "2014-10-03", "Open": 555.5, "High": 557.9, "Low": 553.2, "Close": 555.2, "Volume": 1378511 }, + { "Date": "2014-10-04", "Open": 553.0, "High": 555.5, "Low": 549.3, "Close": 554.1, "Volume": 1240761 }, + { "Date": "2014-10-05", "Open": 556.8, "High": 556.8, "Low": 544.0, "Close": 545.9, "Volume": 2026740 }, + { "Date": "2014-10-06", "Open": 545.5, "High": 546.9, "Low": 541.0, "Close": 542.0, "Volume": 1329604 }, + { "Date": "2014-10-07", "Open": 546.2, "High": 546.2, "Low": 538.7, "Close": 541.0, "Volume": 1629259 }, + { "Date": "2014-10-10", "Open": 541.5, "High": 549.6, "Low": 541.0, "Close": 547.5, "Volume": 1131546 }, + { "Date": "2014-10-11", "Open": 548.5, "High": 551.9, "Low": 546.3, "Close": 550.3, "Volume": 964866 }, + { "Date": "2014-10-12", "Open": 550.4, "High": 550.5, "Low": 545.2, "Close": 547.3, "Volume": 1126594 }, + { "Date": "2014-10-13", "Open": 549.8, "High": 549.8, "Low": 543.5, "Close": 545.4, "Volume": 1335719 }, + { "Date": "2014-10-14", "Open": 546.7, "High": 546.7, "Low": 542.1, "Close": 544.4, "Volume": 1285991 }, + { "Date": "2014-10-17", "Open": 543.6, "High": 543.8, "Low": 534.1, "Close": 536.5, "Volume": 1721282 }, + { "Date": "2014-10-18", "Open": 537.5, "High": 541.9, "Low": 534.2, "Close": 535.0, "Volume": 1957664 }, + { "Date": "2014-10-19", "Open": 535.0, "High": 538.2, "Low": 530.1, "Close": 537.0, "Volume": 1388440 }, + { "Date": "2014-10-20", "Open": 531.3, "High": 535.1, "Low": 531.1, "Close": 534.8, "Volume": 1559131 }, + { "Date": "2014-10-21", "Open": 541.6, "High": 542.1, "Low": 536.6, "Close": 537.5, "Volume": 2218249 }, + { "Date": "2014-10-24", "Open": 537.6, "High": 542.7, "Low": 535.6, "Close": 539.3, "Volume": 1701682 }, + { "Date": "2014-10-25", "Open": 539.0, "High": 544.0, "Low": 538.6, "Close": 541.1, "Volume": 1784967 }, + { "Date": "2014-10-26", "Open": 540.9, "High": 541.5, "Low": 537.0, "Close": 540.4, "Volume": 1519503 }, + { "Date": "2014-10-28", "Open": 540.6, "High": 542.0, "Low": 536.6, "Close": 541.8, "Volume": 1145231 }, + { "Date": "2014-11-01", "Open": 538.9, "High": 541.4, "Low": 531.9, "Close": 533.8, "Volume": 2109599 }, + { "Date": "2014-11-02", "Open": 533.5, "High": 535.5, "Low": 529.8, "Close": 533.8, "Volume": 1522481 }, + { "Date": "2014-11-03", "Open": 531.4, "High": 536.0, "Low": 529.3, "Close": 531.3, "Volume": 1279288 }, + { "Date": "2014-11-04", "Open": 531.2, "High": 537.3, "Low": 528.6, "Close": 537.3, "Volume": 1392208 }, + { "Date": "2014-11-05", "Open": 531.0, "High": 532.9, "Low": 524.3, "Close": 525.3, "Volume": 2558649 }, + { "Date": "2014-11-08", "Open": 527.1, "High": 531.0, "Low": 523.8, "Close": 527.0, "Volume": 2327127 }, + { "Date": "2014-11-09", "Open": 522.1, "High": 534.2, "Low": 520.5, "Close": 533.4, "Volume": 1871268 }, + { "Date": "2014-11-10", "Open": 533.1, "High": 536.3, "Low": 525.6, "Close": 526.1, "Volume": 1716835 }, + { "Date": "2014-11-11", "Open": 527.8, "High": 533.9, "Low": 527.1, "Close": 528.3, "Volume": 1610964 }, + { "Date": "2014-11-12", "Open": 523.5, "High": 528.5, "Low": 518.7, "Close": 518.7, "Volume": 1989117 }, + { "Date": "2014-11-15", "Open": 522.7, "High": 523.1, "Low": 513.3, "Close": 513.8, "Volume": 2812786 }, + { "Date": "2014-11-16", "Open": 511.6, "High": 513.0, "Low": 489.0, "Close": 495.4, "Volume": 3953371 }, + { "Date": "2014-11-17", "Open": 497.0, "High": 507.0, "Low": 496.8, "Close": 504.9, "Volume": 2875281 }, + { "Date": "2014-11-18", "Open": 513.0, "High": 513.9, "Low": 504.7, "Close": 511.1, "Volume": 2918730 }, + { "Date": "2014-11-19", "Open": 511.5, "High": 517.7, "Low": 506.9, "Close": 516.4, "Volume": 3680148 }, + { "Date": "2014-11-22", "Open": 516.1, "High": 526.5, "Low": 516.1, "Close": 524.9, "Volume": 2723599 }, + { "Date": "2014-11-23", "Open": 527.0, "High": 534.6, "Low": 526.3, "Close": 530.6, "Volume": 2191567 }, + { "Date": "2014-11-24", "Open": 530.5, "High": 531.8, "Low": 527.0, "Close": 528.8, "Volume": 704035 }, + { "Date": "2014-11-26", "Open": 528.8, "High": 534.3, "Low": 527.3, "Close": 534.0, "Volume": 1037727 }, + { "Date": "2014-11-29", "Open": 532.2, "High": 535.5, "Low": 530.0, "Close": 530.3, "Volume": 2276104 }, + { "Date": "2014-11-30", "Open": 528.1, "High": 531.1, "Low": 527.1, "Close": 530.4, "Volume": 873923 }, + { "Date": "2014-11-31", "Open": 531.3, "High": 532.6, "Low": 525.8, "Close": 526.4, "Volume": 1371819 }, + { "Date": "2015-00-02", "Open": 529.0, "High": 531.3, "Low": 524.1, "Close": 524.8, "Volume": 1446662 }, + { "Date": "2015-00-05", "Open": 523.3, "High": 524.3, "Low": 513.1, "Close": 513.9, "Volume": 2054238 }, + { "Date": "2015-00-06", "Open": 515.0, "High": 516.2, "Low": 501.1, "Close": 502.0, "Volume": 2891950 }, + { "Date": "2015-00-07", "Open": 507.0, "High": 507.2, "Low": 499.6, "Close": 501.1, "Volume": 2059366 }, + { "Date": "2015-00-08", "Open": 498.0, "High": 503.5, "Low": 491.0, "Close": 502.7, "Volume": 3344395 }, + { "Date": "2015-00-09", "Open": 504.8, "High": 504.9, "Low": 494.8, "Close": 496.2, "Volume": 2065715 }, + { "Date": "2015-00-12", "Open": 494.9, "High": 496.0, "Low": 487.6, "Close": 492.6, "Volume": 2320446 }, + { "Date": "2015-00-13", "Open": 498.8, "High": 503.0, "Low": 492.4, "Close": 496.2, "Volume": 2365687 }, + { "Date": "2015-00-14", "Open": 494.6, "High": 503.2, "Low": 493.0, "Close": 500.9, "Volume": 2229638 }, + { "Date": "2015-00-15", "Open": 505.6, "High": 505.7, "Low": 497.8, "Close": 501.8, "Volume": 2711355 }, + { "Date": "2015-00-16", "Open": 500.0, "High": 508.2, "Low": 500.0, "Close": 508.1, "Volume": 2292043 }, + { "Date": "2015-00-20", "Open": 511.0, "High": 512.5, "Low": 506.0, "Close": 506.9, "Volume": 2225922 }, + { "Date": "2015-00-21", "Open": 507.3, "High": 519.3, "Low": 506.2, "Close": 518.0, "Volume": 2262455 }, + { "Date": "2015-00-22", "Open": 521.5, "High": 536.3, "Low": 519.7, "Close": 534.4, "Volume": 2669558 }, + { "Date": "2015-00-23", "Open": 535.6, "High": 542.2, "Low": 533.0, "Close": 540.0, "Volume": 2275485 }, + { "Date": "2015-00-26", "Open": 538.5, "High": 539.0, "Low": 529.7, "Close": 535.2, "Volume": 1539524 }, + { "Date": "2015-00-27", "Open": 530.0, "High": 530.7, "Low": 518.2, "Close": 518.6, "Volume": 1898844 }, + { "Date": "2015-00-28", "Open": 522.8, "High": 523.0, "Low": 510.0, "Close": 510.0, "Volume": 1679230 }, + { "Date": "2015-00-29", "Open": 511.0, "High": 511.1, "Low": 501.2, "Close": 510.7, "Volume": 4174924 }, + { "Date": "2015-00-30", "Open": 515.9, "High": 539.9, "Low": 515.5, "Close": 534.5, "Volume": 5590977 }, + { "Date": "2015-01-02", "Open": 531.7, "High": 533.0, "Low": 518.5, "Close": 528.5, "Volume": 2841976 }, + { "Date": "2015-01-03", "Open": 528.0, "High": 533.4, "Low": 523.3, "Close": 529.2, "Volume": 2033085 }, + { "Date": "2015-01-04", "Open": 529.2, "High": 532.7, "Low": 521.3, "Close": 522.8, "Volume": 1659125 }, + { "Date": "2015-01-05", "Open": 523.8, "High": 528.5, "Low": 522.1, "Close": 527.6, "Volume": 1844687 }, + { "Date": "2015-01-06", "Open": 527.6, "High": 537.2, "Low": 526.4, "Close": 531.0, "Volume": 1758650 }, + { "Date": "2015-01-09", "Open": 528.0, "High": 532.0, "Low": 526.0, "Close": 527.8, "Volume": 1264276 }, + { "Date": "2015-01-10", "Open": 529.3, "High": 537.7, "Low": 526.9, "Close": 536.9, "Volume": 1745076 }, + { "Date": "2015-01-11", "Open": 535.3, "High": 538.5, "Low": 533.4, "Close": 536.0, "Volume": 1373970 }, + { "Date": "2015-01-12", "Open": 537.3, "High": 544.8, "Low": 534.7, "Close": 542.9, "Volume": 1615824 }, + { "Date": "2015-01-13", "Open": 543.4, "High": 549.9, "Low": 543.1, "Close": 549.0, "Volume": 1895126 }, + { "Date": "2015-01-17", "Open": 546.8, "High": 550.0, "Low": 541.1, "Close": 542.8, "Volume": 1612439 }, + { "Date": "2015-01-18", "Open": 541.4, "High": 545.5, "Low": 537.5, "Close": 539.7, "Volume": 1449089 }, + { "Date": "2015-01-19", "Open": 538.0, "High": 543.1, "Low": 538.0, "Close": 542.9, "Volume": 987478 }, + { "Date": "2015-01-20", "Open": 543.1, "High": 543.8, "Low": 535.8, "Close": 539.0, "Volume": 1441212 }, + { "Date": "2015-01-23", "Open": 536.0, "High": 536.4, "Low": 529.4, "Close": 531.9, "Volume": 1453907 }, + { "Date": "2015-01-24", "Open": 530.0, "High": 536.8, "Low": 528.3, "Close": 536.1, "Volume": 1002393 }, + { "Date": "2015-01-25", "Open": 535.9, "High": 546.2, "Low": 535.4, "Close": 543.9, "Volume": 1821041 }, + { "Date": "2015-01-26", "Open": 543.2, "High": 556.1, "Low": 541.5, "Close": 555.5, "Volume": 2305219 }, + { "Date": "2015-01-27", "Open": 554.2, "High": 564.7, "Low": 552.9, "Close": 558.4, "Volume": 2403553 }, + { "Date": "2015-02-02", "Open": 560.5, "High": 572.1, "Low": 558.8, "Close": 571.3, "Volume": 2123796 }, + { "Date": "2015-02-03", "Open": 570.5, "High": 575.4, "Low": 566.5, "Close": 573.6, "Volume": 1700084 }, + { "Date": "2015-02-04", "Open": 571.9, "High": 577.1, "Low": 568.0, "Close": 573.4, "Volume": 1871694 }, + { "Date": "2015-02-05", "Open": 575.0, "High": 577.9, "Low": 573.4, "Close": 575.3, "Volume": 1385818 }, + { "Date": "2015-02-06", "Open": 574.9, "High": 576.7, "Low": 566.8, "Close": 567.7, "Volume": 1654561 }, + { "Date": "2015-02-09", "Open": 566.9, "High": 570.3, "Low": 563.5, "Close": 568.9, "Volume": 1059336 }, + { "Date": "2015-02-10", "Open": 564.3, "High": 564.9, "Low": 554.7, "Close": 555.0, "Volume": 1787357 }, + { "Date": "2015-02-11", "Open": 555.1, "High": 558.1, "Low": 550.7, "Close": 551.2, "Volume": 1815763 }, + { "Date": "2015-02-12", "Open": 553.5, "High": 556.4, "Low": 550.5, "Close": 555.5, "Volume": 1385772 }, + { "Date": "2015-02-13", "Open": 553.5, "High": 558.4, "Low": 544.2, "Close": 547.3, "Volume": 1698872 }, + { "Date": "2015-02-16", "Open": 551.0, "High": 556.9, "Low": 546.0, "Close": 554.5, "Volume": 1636493 }, + { "Date": "2015-02-17", "Open": 551.7, "High": 553.8, "Low": 548.0, "Close": 550.8, "Volume": 1800570 }, + { "Date": "2015-02-18", "Open": 552.5, "High": 559.8, "Low": 547.0, "Close": 559.5, "Volume": 2128714 }, + { "Date": "2015-02-19", "Open": 559.4, "High": 560.8, "Low": 556.1, "Close": 558.0, "Volume": 1194049 }, + { "Date": "2015-02-20", "Open": 561.6, "High": 561.7, "Low": 559.0, "Close": 560.4, "Volume": 2609690 }, + { "Date": "2015-02-23", "Open": 560.4, "High": 562.4, "Low": 555.8, "Close": 558.8, "Volume": 1639306 }, + { "Date": "2015-02-24", "Open": 562.6, "High": 574.6, "Low": 561.2, "Close": 570.2, "Volume": 2576234 }, + { "Date": "2015-02-25", "Open": 570.5, "High": 572.3, "Low": 558.7, "Close": 558.8, "Volume": 2146384 }, + { "Date": "2015-02-26", "Open": 557.6, "High": 558.9, "Low": 550.6, "Close": 555.2, "Volume": 1568331 }, + { "Date": "2015-02-27", "Open": 553.0, "High": 555.3, "Low": 548.1, "Close": 548.3, "Volume": 1892323 }, + { "Date": "2015-02-30", "Open": 551.6, "High": 553.5, "Low": 548.2, "Close": 552.0, "Volume": 1283958 }, + { "Date": "2015-02-31", "Open": 550.0, "High": 554.7, "Low": 546.7, "Close": 548.0, "Volume": 1583677 }, + { "Date": "2015-03-01", "Open": 548.6, "High": 551.1, "Low": 539.5, "Close": 542.6, "Volume": 1957718 }, + { "Date": "2015-03-02", "Open": 540.9, "High": 540.9, "Low": 533.9, "Close": 535.5, "Volume": 1711737 }, + { "Date": "2015-03-06", "Open": 532.2, "High": 538.4, "Low": 529.6, "Close": 536.8, "Volume": 1320767 }, + { "Date": "2015-03-07", "Open": 538.1, "High": 542.7, "Low": 536.0, "Close": 537.0, "Volume": 1299298 }, + { "Date": "2015-03-08", "Open": 538.4, "High": 543.9, "Low": 538.4, "Close": 541.6, "Volume": 1175332 }, + { "Date": "2015-03-09", "Open": 541.0, "High": 542.0, "Low": 535.5, "Close": 540.8, "Volume": 1553586 }, + { "Date": "2015-03-10", "Open": 542.3, "High": 542.3, "Low": 537.3, "Close": 540.0, "Volume": 1405574 }, + { "Date": "2015-03-13", "Open": 538.4, "High": 544.1, "Low": 537.3, "Close": 539.2, "Volume": 1640809 }, + { "Date": "2015-03-14", "Open": 536.3, "High": 537.6, "Low": 528.1, "Close": 530.4, "Volume": 2597043 }, + { "Date": "2015-03-15", "Open": 528.7, "High": 534.7, "Low": 523.2, "Close": 532.5, "Volume": 2312512 }, + { "Date": "2015-03-16", "Open": 529.9, "High": 535.6, "Low": 529.6, "Close": 533.8, "Volume": 1296304 }, + { "Date": "2015-03-17", "Open": 528.7, "High": 529.8, "Low": 521.0, "Close": 524.0, "Volume": 2145955 }, + { "Date": "2015-03-20", "Open": 525.6, "High": 536.1, "Low": 524.5, "Close": 535.4, "Volume": 1675487 }, + { "Date": "2015-03-21", "Open": 537.5, "High": 539.4, "Low": 533.7, "Close": 534.0, "Volume": 1839668 }, + { "Date": "2015-03-22", "Open": 534.4, "High": 541.1, "Low": 531.8, "Close": 539.4, "Volume": 1589248 }, + { "Date": "2015-03-23", "Open": 541.0, "High": 551.0, "Low": 540.2, "Close": 547.0, "Volume": 4173376 }, + { "Date": "2015-03-24", "Open": 566.1, "High": 571.1, "Low": 557.3, "Close": 565.1, "Volume": 4919031 }, + { "Date": "2015-03-27", "Open": 563.4, "High": 566.0, "Low": 553.2, "Close": 555.4, "Volume": 2398039 }, + { "Date": "2015-03-28", "Open": 554.6, "High": 556.0, "Low": 550.4, "Close": 553.7, "Volume": 1490983 }, + { "Date": "2015-03-29", "Open": 550.5, "High": 553.7, "Low": 546.9, "Close": 549.1, "Volume": 1698761 }, + { "Date": "2015-03-30", "Open": 547.9, "High": 548.6, "Low": 535.0, "Close": 537.3, "Volume": 2082214 }, + { "Date": "2015-04-01", "Open": 538.4, "High": 539.5, "Low": 532.1, "Close": 537.9, "Volume": 1768181 }, + { "Date": "2015-04-04", "Open": 538.5, "High": 544.1, "Low": 535.1, "Close": 540.8, "Volume": 1307960 }, + { "Date": "2015-04-05", "Open": 538.2, "High": 539.7, "Low": 530.4, "Close": 530.8, "Volume": 1383068 }, + { "Date": "2015-04-06", "Open": 531.2, "High": 532.4, "Low": 521.1, "Close": 524.2, "Volume": 1566987 }, + { "Date": "2015-04-07", "Open": 524.0, "High": 533.5, "Low": 521.8, "Close": 530.7, "Volume": 1546278 }, + { "Date": "2015-04-08", "Open": 536.6, "High": 541.1, "Low": 536.0, "Close": 538.2, "Volume": 1527615 }, + { "Date": "2015-04-11", "Open": 538.4, "High": 542.0, "Low": 535.4, "Close": 535.7, "Volume": 905285 }, + { "Date": "2015-04-12", "Open": 531.6, "High": 533.2, "Low": 525.3, "Close": 529.0, "Volume": 1634174 }, + { "Date": "2015-04-13", "Open": 530.6, "High": 534.3, "Low": 528.7, "Close": 529.6, "Volume": 1253063 }, + { "Date": "2015-04-14", "Open": 533.8, "High": 539.0, "Low": 532.4, "Close": 538.4, "Volume": 1403935 }, + { "Date": "2015-04-15", "Open": 539.2, "High": 539.3, "Low": 530.4, "Close": 533.9, "Volume": 1971343 }, + { "Date": "2015-04-18", "Open": 532.0, "High": 534.8, "Low": 528.9, "Close": 532.3, "Volume": 2003421 }, + { "Date": "2015-04-19", "Open": 534.0, "High": 540.7, "Low": 533.0, "Close": 537.4, "Volume": 1966947 }, + { "Date": "2015-04-20", "Open": 538.5, "High": 542.9, "Low": 533.0, "Close": 539.3, "Volume": 1430826 }, + { "Date": "2015-04-21", "Open": 538.0, "High": 543.8, "Low": 536.0, "Close": 542.5, "Volume": 1462695 }, + { "Date": "2015-04-22", "Open": 540.1, "High": 544.2, "Low": 539.5, "Close": 540.1, "Volume": 1176214 }, + { "Date": "2015-04-26", "Open": 538.1, "High": 539.0, "Low": 529.9, "Close": 532.3, "Volume": 2406512 }, + { "Date": "2015-04-27", "Open": 532.8, "High": 540.5, "Low": 531.7, "Close": 539.8, "Volume": 1525019 }, + { "Date": "2015-04-28", "Open": 538.0, "High": 540.6, "Low": 536.3, "Close": 539.8, "Volume": 1029849 }, + { "Date": "2015-04-29", "Open": 537.4, "High": 538.6, "Low": 531.5, "Close": 532.1, "Volume": 2597407 }, + { "Date": "2015-05-01", "Open": 536.8, "High": 536.8, "Low": 529.8, "Close": 534.0, "Volume": 1904332 }, + { "Date": "2015-05-02", "Open": 532.9, "High": 543.0, "Low": 531.3, "Close": 539.2, "Volume": 1938989 }, + { "Date": "2015-05-03", "Open": 539.9, "High": 543.5, "Low": 537.1, "Close": 540.3, "Volume": 1717036 }, + { "Date": "2015-05-04", "Open": 537.8, "High": 540.6, "Low": 534.3, "Close": 536.7, "Volume": 1348337 }, + { "Date": "2015-05-05", "Open": 536.4, "High": 537.2, "Low": 532.5, "Close": 533.3, "Volume": 1388220 }, + { "Date": "2015-05-08", "Open": 533.3, "High": 534.1, "Low": 526.2, "Close": 526.8, "Volume": 1524139 }, + { "Date": "2015-05-09", "Open": 527.6, "High": 529.2, "Low": 523.0, "Close": 526.7, "Volume": 1455266 }, + { "Date": "2015-05-10", "Open": 529.4, "High": 538.4, "Low": 529.4, "Close": 536.7, "Volume": 1814958 }, + { "Date": "2015-05-11", "Open": 538.4, "High": 539.0, "Low": 533.0, "Close": 534.6, "Volume": 1217536 }, + { "Date": "2015-05-12", "Open": 531.6, "High": 533.1, "Low": 530.2, "Close": 532.3, "Volume": 955789 }, + { "Date": "2015-05-15", "Open": 528.0, "High": 528.3, "Low": 524.0, "Close": 527.2, "Volume": 1632702 }, + { "Date": "2015-05-16", "Open": 528.4, "High": 529.6, "Low": 525.6, "Close": 528.1, "Volume": 1071814 }, + { "Date": "2015-05-17", "Open": 529.4, "High": 531.0, "Low": 525.1, "Close": 529.3, "Volume": 1294216 }, + { "Date": "2015-05-18", "Open": 531.0, "High": 538.1, "Low": 530.8, "Close": 536.7, "Volume": 1833109 }, + { "Date": "2015-05-19", "Open": 537.2, "High": 538.3, "Low": 533.0, "Close": 536.7, "Volume": 1893497 }, + { "Date": "2015-05-22", "Open": 539.6, "High": 543.7, "Low": 537.5, "Close": 538.2, "Volume": 1250282 }, + { "Date": "2015-05-23", "Open": 539.6, "High": 541.5, "Low": 535.3, "Close": 540.5, "Volume": 1197450 }, + { "Date": "2015-05-24", "Open": 540.0, "High": 540.0, "Low": 535.7, "Close": 537.8, "Volume": 1286608 }, + { "Date": "2015-05-25", "Open": 538.9, "High": 540.9, "Low": 535.2, "Close": 535.2, "Volume": 1335697 }, + { "Date": "2015-05-26", "Open": 537.3, "High": 537.8, "Low": 531.4, "Close": 531.7, "Volume": 2109130 }, + { "Date": "2015-05-29", "Open": 525.0, "High": 528.6, "Low": 520.5, "Close": 521.5, "Volume": 1937821 }, + { "Date": "2015-05-30", "Open": 526.0, "High": 526.3, "Low": 520.5, "Close": 520.5, "Volume": 2235595 }, + { "Date": "2015-06-01", "Open": 524.7, "High": 525.7, "Low": 518.2, "Close": 521.8, "Volume": 1961354 }, + { "Date": "2015-06-02", "Open": 521.1, "High": 524.6, "Low": 521.1, "Close": 523.4, "Volume": 1235903 }, + { "Date": "2015-06-06", "Open": 519.5, "High": 525.3, "Low": 519.0, "Close": 522.9, "Volume": 1280525 }, + { "Date": "2015-06-07", "Open": 523.1, "High": 526.2, "Low": 515.2, "Close": 525.0, "Volume": 1597229 }, + { "Date": "2015-06-08", "Open": 521.0, "High": 522.7, "Low": 516.1, "Close": 516.8, "Volume": 1296699 }, + { "Date": "2015-06-09", "Open": 523.1, "High": 523.8, "Low": 520.4, "Close": 520.7, "Volume": 1842347 }, + { "Date": "2015-06-10", "Open": 526.3, "High": 532.6, "Low": 525.5, "Close": 530.1, "Volume": 1956682 }, + { "Date": "2015-06-13", "Open": 532.9, "High": 547.1, "Low": 532.4, "Close": 546.5, "Volume": 2206475 }, + { "Date": "2015-06-14", "Open": 546.8, "High": 565.9, "Low": 546.7, "Close": 561.1, "Volume": 3244066 }, + { "Date": "2015-06-15", "Open": 560.1, "High": 566.5, "Low": 556.8, "Close": 560.2, "Volume": 1784554 }, + { "Date": "2015-06-16", "Open": 565.1, "High": 580.7, "Low": 565.0, "Close": 579.9, "Volume": 4768318 }, + { "Date": "2015-06-17", "Open": 649.0, "High": 674.5, "Low": 645.0, "Close": 672.9, "Volume": 11164943 }, + { "Date": "2015-06-20", "Open": 659.2, "High": 668.9, "Low": 653.0, "Close": 663.0, "Volume": 5860872 }, + { "Date": "2015-06-21", "Open": 655.2, "High": 673.0, "Low": 654.3, "Close": 662.3, "Volume": 3377196 }, + { "Date": "2015-06-22", "Open": 660.9, "High": 678.6, "Low": 659.0, "Close": 662.1, "Volume": 3929309 }, + { "Date": "2015-06-23", "Open": 661.3, "High": 663.6, "Low": 641.0, "Close": 644.3, "Volume": 3029109 }, + { "Date": "2015-06-24", "Open": 647.0, "High": 648.2, "Low": 622.5, "Close": 623.6, "Volume": 3625747 }, + { "Date": "2015-06-27", "Open": 621.0, "High": 634.3, "Low": 620.5, "Close": 627.3, "Volume": 2675381 }, + { "Date": "2015-06-28", "Open": 632.8, "High": 632.8, "Low": 623.3, "Close": 628.0, "Volume": 1727327 }, + { "Date": "2015-06-29", "Open": 628.8, "High": 633.4, "Low": 622.6, "Close": 631.9, "Volume": 1575069 }, + { "Date": "2015-06-30", "Open": 630.0, "High": 635.2, "Low": 622.0, "Close": 632.6, "Volume": 1474203 }, + { "Date": "2015-06-31", "Open": 631.4, "High": 632.9, "Low": 625.5, "Close": 625.6, "Volume": 1706149 }, + { "Date": "2015-07-03", "Open": 625.3, "High": 633.1, "Low": 625.3, "Close": 631.2, "Volume": 1304511 }, + { "Date": "2015-07-04", "Open": 628.4, "High": 634.8, "Low": 627.2, "Close": 629.3, "Volume": 1490881 }, + { "Date": "2015-07-05", "Open": 634.3, "High": 647.9, "Low": 633.2, "Close": 643.8, "Volume": 2334266 }, + { "Date": "2015-07-06", "Open": 645.0, "High": 645.4, "Low": 632.3, "Close": 642.7, "Volume": 1572600 }, + { "Date": "2015-07-07", "Open": 640.2, "High": 642.7, "Low": 629.7, "Close": 635.3, "Volume": 1403865 }, + { "Date": "2015-07-10", "Open": 639.5, "High": 643.4, "Low": 631.3, "Close": 633.7, "Volume": 1809205 }, + { "Date": "2015-07-11", "Open": 669.2, "High": 674.9, "Low": 654.3, "Close": 660.8, "Volume": 5029203 }, + { "Date": "2015-07-12", "Open": 663.1, "High": 665.0, "Low": 652.3, "Close": 659.6, "Volume": 2940803 }, + { "Date": "2015-07-13", "Open": 659.3, "High": 664.5, "Low": 651.7, "Close": 656.5, "Volume": 1810749 }, + { "Date": "2015-07-14", "Open": 655.0, "High": 659.9, "Low": 652.7, "Close": 657.1, "Volume": 1072061 }, + { "Date": "2015-07-17", "Open": 656.8, "High": 661.4, "Low": 651.2, "Close": 660.9, "Volume": 1051699 }, + { "Date": "2015-07-18", "Open": 661.9, "High": 664.0, "Low": 653.5, "Close": 656.1, "Volume": 1456059 }, + { "Date": "2015-07-19", "Open": 656.6, "High": 667.0, "Low": 654.2, "Close": 660.9, "Volume": 2134098 }, + { "Date": "2015-07-20", "Open": 655.5, "High": 663.0, "Low": 642.9, "Close": 646.8, "Volume": 2855299 }, + { "Date": "2015-07-21", "Open": 639.8, "High": 640.0, "Low": 612.3, "Close": 612.5, "Volume": 4265183 }, + { "Date": "2015-07-24", "Open": 573.0, "High": 614.0, "Low": 565.0, "Close": 589.6, "Volume": 5770302 }, + { "Date": "2015-07-25", "Open": 614.9, "High": 617.5, "Low": 581.1, "Close": 582.1, "Volume": 3537966 }, + { "Date": "2015-07-26", "Open": 610.4, "High": 631.7, "Low": 599.0, "Close": 628.6, "Volume": 4235891 }, + { "Date": "2015-07-27", "Open": 639.4, "High": 643.6, "Low": 622.0, "Close": 637.6, "Volume": 3491336 }, + { "Date": "2015-07-28", "Open": 632.8, "High": 636.9, "Low": 624.6, "Close": 630.4, "Volume": 1978733 }, + { "Date": "2015-07-31", "Open": 627.5, "High": 635.8, "Low": 617.7, "Close": 618.3, "Volume": 2176737 }, + { "Date": "2015-08-01", "Open": 602.4, "High": 612.9, "Low": 594.1, "Close": 597.8, "Volume": 3702105 }, + { "Date": "2015-08-02", "Open": 605.6, "High": 614.3, "Low": 599.7, "Close": 614.3, "Volume": 2575620 }, + { "Date": "2015-08-03", "Open": 617.0, "High": 619.7, "Low": 602.8, "Close": 606.3, "Volume": 1759572 }, + { "Date": "2015-08-04", "Open": 600.0, "High": 603.5, "Low": 595.3, "Close": 600.7, "Volume": 2089453 }, + { "Date": "2015-08-08", "Open": 612.5, "High": 616.3, "Low": 604.1, "Close": 614.7, "Volume": 2279538 }, + { "Date": "2015-08-09", "Open": 621.2, "High": 626.5, "Low": 609.6, "Close": 612.7, "Volume": 1702094 }, + { "Date": "2015-08-10", "Open": 613.1, "High": 624.2, "Low": 611.4, "Close": 621.4, "Volume": 1900526 }, + { "Date": "2015-08-11", "Open": 619.8, "High": 625.8, "Low": 617.4, "Close": 625.8, "Volume": 1373545 }, + { "Date": "2015-08-14", "Open": 625.7, "High": 625.9, "Low": 619.4, "Close": 623.2, "Volume": 1702271 }, + { "Date": "2015-08-15", "Open": 626.7, "High": 638.7, "Low": 623.8, "Close": 635.1, "Volume": 2084397 }, + { "Date": "2015-08-16", "Open": 635.5, "High": 638.0, "Low": 632.3, "Close": 636.0, "Volume": 1286454 }, + { "Date": "2015-08-17", "Open": 637.8, "High": 650.9, "Low": 635.0, "Close": 642.9, "Volume": 2274690 }, + { "Date": "2015-08-18", "Open": 636.8, "High": 640.0, "Low": 627.0, "Close": 629.3, "Volume": 5133386 }, + { "Date": "2015-08-21", "Open": 634.4, "High": 636.5, "Low": 625.9, "Close": 635.4, "Volume": 1788506 }, + { "Date": "2015-08-22", "Open": 627.0, "High": 627.5, "Low": 615.4, "Close": 622.7, "Volume": 2562869 }, + { "Date": "2015-08-23", "Open": 622.0, "High": 628.9, "Low": 620.0, "Close": 622.4, "Volume": 1470949 }, + { "Date": "2015-08-24", "Open": 616.6, "High": 627.3, "Low": 612.4, "Close": 625.8, "Volume": 2240098 }, + { "Date": "2015-08-25", "Open": 629.8, "High": 629.8, "Low": 611.0, "Close": 612.0, "Volume": 2174009 }, + { "Date": "2015-08-28", "Open": 610.3, "High": 614.6, "Low": 589.4, "Close": 594.9, "Volume": 3127667 }, + { "Date": "2015-08-29", "Open": 597.3, "High": 605.0, "Low": 590.2, "Close": 595.0, "Volume": 2310284 }, + { "Date": "2015-08-30", "Open": 603.3, "High": 608.8, "Low": 600.7, "Close": 608.4, "Volume": 2413441 }, + { "Date": "2015-09-01", "Open": 608.4, "High": 612.1, "Low": 599.9, "Close": 611.3, "Volume": 1867601 }, + { "Date": "2015-09-02", "Open": 607.2, "High": 627.3, "Low": 603.1, "Close": 626.9, "Volume": 2684805 }, + { "Date": "2015-09-05", "Open": 632.0, "High": 643.0, "Low": 627.0, "Close": 641.5, "Volume": 1787880 }, + { "Date": "2015-09-06", "Open": 638.8, "High": 649.3, "Low": 636.5, "Close": 645.4, "Volume": 2166264 }, + { "Date": "2015-09-07", "Open": 649.2, "High": 650.6, "Low": 632.1, "Close": 642.4, "Volume": 2089776 }, + { "Date": "2015-09-08", "Open": 641.4, "High": 644.5, "Low": 625.6, "Close": 639.2, "Volume": 2180441 }, + { "Date": "2015-09-09", "Open": 640.0, "High": 646.0, "Low": 635.3, "Close": 643.6, "Volume": 1645844 }, + { "Date": "2015-09-12", "Open": 642.1, "High": 648.5, "Low": 639.0, "Close": 646.7, "Volume": 1275206 }, + { "Date": "2015-09-13", "Open": 643.1, "High": 657.8, "Low": 643.1, "Close": 652.3, "Volume": 1790704 }, + { "Date": "2015-09-14", "Open": 653.2, "High": 659.4, "Low": 648.9, "Close": 651.2, "Volume": 1412040 }, + { "Date": "2015-09-15", "Open": 654.7, "High": 663.1, "Low": 654.5, "Close": 661.7, "Volume": 1830524 }, + { "Date": "2015-09-16", "Open": 664.1, "High": 665.0, "Low": 657.2, "Close": 662.2, "Volume": 1606138 }, + { "Date": "2015-09-19", "Open": 661.2, "High": 666.8, "Low": 659.6, "Close": 666.1, "Volume": 1465339 }, + { "Date": "2015-09-20", "Open": 664.0, "High": 664.7, "Low": 644.2, "Close": 650.3, "Volume": 2490016 }, + { "Date": "2015-09-21", "Open": 654.1, "High": 655.9, "Low": 641.7, "Close": 642.6, "Volume": 1791099 }, + { "Date": "2015-09-22", "Open": 646.7, "High": 657.8, "Low": 644.0, "Close": 651.8, "Volume": 3782103 }, + { "Date": "2015-09-23", "Open": 727.5, "High": 730.0, "Low": 701.5, "Close": 702.0, "Volume": 6642504 }, + { "Date": "2015-09-26", "Open": 701.5, "High": 719.1, "Low": 701.3, "Close": 712.8, "Volume": 2701629 }, + { "Date": "2015-09-27", "Open": 707.4, "High": 713.6, "Low": 704.5, "Close": 708.5, "Volume": 2224309 }, + { "Date": "2015-09-28", "Open": 707.3, "High": 713.0, "Low": 703.1, "Close": 713.0, "Volume": 2176623 }, + { "Date": "2015-09-29", "Open": 710.5, "High": 718.3, "Low": 710.0, "Close": 716.9, "Volume": 1454128 }, + { "Date": "2015-09-30", "Open": 715.7, "High": 718.0, "Low": 710.0, "Close": 710.8, "Volume": 1903980 }, + { "Date": "2015-10-02", "Open": 711.1, "High": 721.6, "Low": 705.9, "Close": 721.1, "Volume": 1871073 }, + { "Date": "2015-10-03", "Open": 718.9, "High": 724.6, "Low": 714.7, "Close": 722.2, "Volume": 1560770 }, + { "Date": "2015-10-04", "Open": 722.0, "High": 733.1, "Low": 721.9, "Close": 728.1, "Volume": 1704575 }, + { "Date": "2015-10-05", "Open": 729.5, "High": 739.5, "Low": 729.5, "Close": 731.3, "Volume": 1860367 }, + { "Date": "2015-10-06", "Open": 731.5, "High": 735.4, "Low": 727.0, "Close": 733.8, "Volume": 1509656 }, + { "Date": "2015-10-09", "Open": 730.2, "High": 734.7, "Low": 719.4, "Close": 724.9, "Volume": 2065619 }, + { "Date": "2015-10-10", "Open": 724.4, "High": 730.6, "Low": 718.5, "Close": 728.3, "Volume": 1603937 }, + { "Date": "2015-10-11", "Open": 732.5, "High": 741.0, "Low": 730.2, "Close": 735.4, "Volume": 1366375 }, + { "Date": "2015-10-12", "Open": 731.0, "High": 737.8, "Low": 728.6, "Close": 731.2, "Volume": 1668048 }, + { "Date": "2015-10-13", "Open": 729.2, "High": 731.1, "Low": 716.7, "Close": 717.0, "Volume": 2062982 }, + { "Date": "2015-10-16", "Open": 715.6, "High": 729.5, "Low": 711.3, "Close": 729.0, "Volume": 1891074 }, + { "Date": "2015-10-17", "Open": 729.3, "High": 731.8, "Low": 723.0, "Close": 725.3, "Volume": 1491709 }, + { "Date": "2015-10-18", "Open": 727.6, "High": 741.4, "Low": 727.0, "Close": 740.0, "Volume": 1671588 }, + { "Date": "2015-10-19", "Open": 738.7, "High": 742.0, "Low": 737.4, "Close": 738.4, "Volume": 1327109 }, + { "Date": "2015-10-20", "Open": 746.5, "High": 757.9, "Low": 743.0, "Close": 756.6, "Volume": 2212302 }, + { "Date": "2015-10-23", "Open": 757.5, "High": 762.7, "Low": 751.8, "Close": 756.0, "Volume": 1414487 }, + { "Date": "2015-10-24", "Open": 752.0, "High": 755.3, "Low": 737.6, "Close": 748.3, "Volume": 2333130 }, + { "Date": "2015-10-25", "Open": 748.1, "High": 752.0, "Low": 746.1, "Close": 748.1, "Volume": 1122224 }, + { "Date": "2015-10-27", "Open": 748.5, "High": 753.4, "Low": 747.5, "Close": 750.3, "Volume": 838518 }, + { "Date": "2015-10-30", "Open": 748.8, "High": 754.9, "Low": 741.3, "Close": 742.6, "Volume": 2035261 }, + { "Date": "2015-11-01", "Open": 747.1, "High": 769.0, "Low": 746.7, "Close": 767.0, "Volume": 2129940 }, + { "Date": "2015-11-02", "Open": 768.9, "High": 776.0, "Low": 759.0, "Close": 762.4, "Volume": 2195686 }, + { "Date": "2015-11-03", "Open": 766.0, "High": 769.0, "Low": 745.6, "Close": 752.5, "Volume": 2590641 }, + { "Date": "2015-11-04", "Open": 753.1, "High": 768.5, "Low": 750.0, "Close": 766.8, "Volume": 2757283 }, + { "Date": "2015-11-07", "Open": 767.8, "High": 768.7, "Low": 755.1, "Close": 763.3, "Volume": 1812314 }, + { "Date": "2015-11-08", "Open": 757.9, "High": 764.8, "Low": 754.2, "Close": 762.4, "Volume": 1829475 }, + { "Date": "2015-11-09", "Open": 759.2, "High": 764.2, "Low": 737.0, "Close": 751.6, "Volume": 2699990 }, + { "Date": "2015-11-10", "Open": 752.9, "High": 755.9, "Low": 743.8, "Close": 749.5, "Volume": 1988380 }, + { "Date": "2015-11-11", "Open": 741.2, "High": 745.7, "Low": 736.8, "Close": 738.9, "Volume": 2224410 }, + { "Date": "2015-11-14", "Open": 741.8, "High": 748.7, "Low": 724.2, "Close": 747.8, "Volume": 2412497 }, + { "Date": "2015-11-15", "Open": 753.0, "High": 758.1, "Low": 743.0, "Close": 743.4, "Volume": 2666229 }, + { "Date": "2015-11-16", "Open": 750.0, "High": 760.6, "Low": 739.4, "Close": 758.1, "Volume": 1993251 }, + { "Date": "2015-11-17", "Open": 762.4, "High": 762.7, "Low": 749.0, "Close": 749.4, "Volume": 1553418 }, + { "Date": "2015-11-18", "Open": 746.5, "High": 754.1, "Low": 738.1, "Close": 739.3, "Volume": 3148743 }, + { "Date": "2015-11-21", "Open": 746.1, "High": 750.0, "Low": 740.0, "Close": 747.8, "Volume": 1525703 }, + { "Date": "2015-11-22", "Open": 751.6, "High": 754.9, "Low": 745.5, "Close": 750.0, "Volume": 1365520 }, + { "Date": "2015-11-23", "Open": 753.5, "High": 754.2, "Low": 744.0, "Close": 750.3, "Volume": 1566726 }, + { "Date": "2015-11-24", "Open": 749.5, "High": 751.4, "Low": 746.6, "Close": 748.4, "Volume": 527223 }, + { "Date": "2015-11-28", "Open": 752.9, "High": 763.0, "Low": 749.5, "Close": 762.5, "Volume": 1515716 }, + { "Date": "2015-11-29", "Open": 766.7, "High": 780.0, "Low": 766.4, "Close": 776.6, "Volume": 1765012 }, + { "Date": "2015-11-30", "Open": 776.6, "High": 777.6, "Low": 766.9, "Close": 771.0, "Volume": 1293521 }, + { "Date": "2015-11-31", "Open": 769.5, "High": 769.5, "Low": 758.3, "Close": 758.9, "Volume": 1500923 }, + { "Date": "2016-00-04", "Open": 743.0, "High": 744.1, "Low": 731.3, "Close": 741.8, "Volume": 3258199 }, + { "Date": "2016-00-05", "Open": 746.5, "High": 752.0, "Low": 738.6, "Close": 742.6, "Volume": 1950691 }, + { "Date": "2016-00-06", "Open": 730.0, "High": 747.2, "Low": 728.9, "Close": 743.6, "Volume": 1947034 }, + { "Date": "2016-00-07", "Open": 730.3, "High": 738.5, "Low": 719.1, "Close": 726.4, "Volume": 2963741 }, + { "Date": "2016-00-08", "Open": 731.5, "High": 733.2, "Low": 713.0, "Close": 714.5, "Volume": 2450857 }, + { "Date": "2016-00-11", "Open": 716.6, "High": 718.9, "Low": 703.5, "Close": 716.0, "Volume": 2090621 }, + { "Date": "2016-00-12", "Open": 721.7, "High": 728.8, "Low": 717.3, "Close": 726.1, "Volume": 2024509 }, + { "Date": "2016-00-13", "Open": 730.9, "High": 734.7, "Low": 698.6, "Close": 700.6, "Volume": 2468295 }, + { "Date": "2016-00-14", "Open": 705.4, "High": 721.9, "Low": 689.1, "Close": 714.7, "Volume": 2211853 }, + { "Date": "2016-00-15", "Open": 692.3, "High": 706.7, "Low": 685.4, "Close": 694.5, "Volume": 3592449 }, + { "Date": "2016-00-19", "Open": 703.3, "High": 710.0, "Low": 693.4, "Close": 701.8, "Volume": 2258479 }, + { "Date": "2016-00-20", "Open": 688.6, "High": 706.9, "Low": 673.3, "Close": 698.5, "Volume": 3439386 }, + { "Date": "2016-00-21", "Open": 702.2, "High": 719.2, "Low": 694.5, "Close": 706.6, "Volume": 2410263 }, + { "Date": "2016-00-22", "Open": 723.6, "High": 728.1, "Low": 720.1, "Close": 725.3, "Volume": 2006528 }, + { "Date": "2016-00-25", "Open": 723.6, "High": 729.7, "Low": 710.0, "Close": 711.7, "Volume": 1704641 }, + { "Date": "2016-00-26", "Open": 713.9, "High": 718.3, "Low": 706.5, "Close": 713.0, "Volume": 1324300 }, + { "Date": "2016-00-27", "Open": 713.7, "High": 718.2, "Low": 694.4, "Close": 700.0, "Volume": 2139970 }, + { "Date": "2016-00-28", "Open": 722.2, "High": 733.7, "Low": 712.4, "Close": 731.0, "Volume": 2658016 }, + { "Date": "2016-00-29", "Open": 731.5, "High": 745.0, "Low": 726.8, "Close": 743.0, "Volume": 3394935 }, + { "Date": "2016-01-01", "Open": 750.5, "High": 757.9, "Low": 743.3, "Close": 752.0, "Volume": 4801816 }, + { "Date": "2016-01-02", "Open": 784.5, "High": 789.9, "Low": 764.6, "Close": 764.6, "Volume": 6332431 }, + { "Date": "2016-01-03", "Open": 770.2, "High": 774.5, "Low": 720.5, "Close": 727.0, "Volume": 6162333 }, + { "Date": "2016-01-04", "Open": 722.8, "High": 727.0, "Low": 701.9, "Close": 708.0, "Volume": 5145855 }, + { "Date": "2016-01-05", "Open": 703.9, "High": 704.0, "Low": 680.1, "Close": 683.6, "Volume": 5069985 }, + { "Date": "2016-01-08", "Open": 667.9, "High": 684.0, "Low": 663.1, "Close": 682.7, "Volume": 4212541 }, + { "Date": "2016-01-09", "Open": 672.3, "High": 699.9, "Low": 668.8, "Close": 678.1, "Volume": 3604335 }, + { "Date": "2016-01-10", "Open": 686.9, "High": 701.3, "Low": 682.1, "Close": 684.1, "Volume": 2627379 }, + { "Date": "2016-01-11", "Open": 675.0, "High": 689.4, "Low": 668.9, "Close": 683.1, "Volume": 3007223 }, + { "Date": "2016-01-12", "Open": 690.3, "High": 693.8, "Low": 678.6, "Close": 682.4, "Volume": 2129831 }, + { "Date": "2016-01-16", "Open": 693.0, "High": 698.0, "Low": 685.0, "Close": 691.0, "Volume": 2497024 }, + { "Date": "2016-01-17", "Open": 699.0, "High": 709.8, "Low": 691.4, "Close": 708.4, "Volume": 2466808 }, + { "Date": "2016-01-18", "Open": 710.0, "High": 712.4, "Low": 696.0, "Close": 697.4, "Volume": 1859130 }, + { "Date": "2016-01-19", "Open": 695.0, "High": 703.1, "Low": 694.0, "Close": 700.9, "Volume": 1582260 }, + { "Date": "2016-01-22", "Open": 707.5, "High": 713.2, "Low": 702.5, "Close": 706.5, "Volume": 1946067 }, + { "Date": "2016-01-23", "Open": 701.5, "High": 708.4, "Low": 693.6, "Close": 695.9, "Volume": 1999699 }, + { "Date": "2016-01-24", "Open": 688.9, "High": 700.0, "Low": 680.8, "Close": 699.6, "Volume": 1958611 }, + { "Date": "2016-01-25", "Open": 700.0, "High": 706.0, "Low": 690.6, "Close": 705.8, "Volume": 1631855 }, + { "Date": "2016-01-26", "Open": 708.6, "High": 713.4, "Low": 700.9, "Close": 705.1, "Volume": 2239978 }, + { "Date": "2016-01-29", "Open": 700.3, "High": 710.9, "Low": 697.7, "Close": 697.8, "Volume": 2280280 }, + { "Date": "2016-02-01", "Open": 703.6, "High": 718.8, "Low": 699.8, "Close": 718.8, "Volume": 2147442 }, + { "Date": "2016-02-02", "Open": 719.0, "High": 720.0, "Low": 712.0, "Close": 718.9, "Volume": 1627753 }, + { "Date": "2016-02-03", "Open": 718.7, "High": 719.5, "Low": 706.0, "Close": 712.4, "Volume": 1956761 }, + { "Date": "2016-02-04", "Open": 715.0, "High": 716.5, "Low": 706.0, "Close": 710.9, "Volume": 1967873 }, + { "Date": "2016-02-07", "Open": 706.9, "High": 708.1, "Low": 686.9, "Close": 695.2, "Volume": 2985094 }, + { "Date": "2016-02-08", "Open": 688.6, "High": 703.8, "Low": 685.3, "Close": 694.0, "Volume": 2063357 }, + { "Date": "2016-02-09", "Open": 698.5, "High": 705.7, "Low": 694.0, "Close": 705.2, "Volume": 1418704 }, + { "Date": "2016-02-10", "Open": 708.1, "High": 716.4, "Low": 703.4, "Close": 712.8, "Volume": 2829412 }, + { "Date": "2016-02-11", "Open": 720.0, "High": 726.9, "Low": 717.1, "Close": 726.8, "Volume": 1963907 }, + { "Date": "2016-02-14", "Open": 726.8, "High": 735.5, "Low": 725.1, "Close": 730.5, "Volume": 1716910 }, + { "Date": "2016-02-15", "Open": 726.9, "High": 732.3, "Low": 724.8, "Close": 728.3, "Volume": 1720965 }, + { "Date": "2016-02-16", "Open": 726.4, "High": 737.5, "Low": 724.5, "Close": 736.1, "Volume": 1572329 }, + { "Date": "2016-02-17", "Open": 736.5, "High": 743.1, "Low": 736.0, "Close": 737.8, "Volume": 1856800 }, + { "Date": "2016-02-18", "Open": 741.9, "High": 742.0, "Low": 731.8, "Close": 737.6, "Volume": 2796376 }, + { "Date": "2016-02-21", "Open": 736.5, "High": 742.5, "Low": 733.5, "Close": 742.1, "Volume": 1831839 }, + { "Date": "2016-02-22", "Open": 737.5, "High": 745.0, "Low": 737.5, "Close": 740.8, "Volume": 1264396 }, + { "Date": "2016-02-23", "Open": 742.4, "High": 745.7, "Low": 736.1, "Close": 738.1, "Volume": 1421861 }, + { "Date": "2016-02-24", "Open": 732.0, "High": 737.8, "Low": 731.0, "Close": 735.3, "Volume": 1564782 }, + { "Date": "2016-02-28", "Open": 736.8, "High": 739.0, "Low": 732.5, "Close": 733.5, "Volume": 1299812 }, + { "Date": "2016-02-29", "Open": 734.6, "High": 747.3, "Low": 728.8, "Close": 744.8, "Volume": 1902128 }, + { "Date": "2016-02-30", "Open": 750.1, "High": 757.9, "Low": 748.7, "Close": 750.5, "Volume": 1780998 }, + { "Date": "2016-02-31", "Open": 749.3, "High": 750.9, "Low": 740.9, "Close": 745.0, "Volume": 1712375 }, + { "Date": "2016-03-01", "Open": 738.6, "High": 750.3, "Low": 737.0, "Close": 749.9, "Volume": 1574870 }, + { "Date": "2016-03-04", "Open": 750.1, "High": 752.8, "Low": 742.4, "Close": 745.3, "Volume": 1131843 }, + { "Date": "2016-03-05", "Open": 738.0, "High": 742.8, "Low": 735.4, "Close": 737.8, "Volume": 1129829 }, + { "Date": "2016-03-06", "Open": 735.8, "High": 746.2, "Low": 735.6, "Close": 745.7, "Volume": 1050193 }, + { "Date": "2016-03-07", "Open": 745.4, "High": 747.0, "Low": 736.3, "Close": 740.3, "Volume": 1429504 }, + { "Date": "2016-03-08", "Open": 744.0, "High": 745.5, "Low": 735.5, "Close": 739.1, "Volume": 1285755 }, + { "Date": "2016-03-11", "Open": 743.0, "High": 745.0, "Low": 736.0, "Close": 736.1, "Volume": 1211762 }, + { "Date": "2016-03-12", "Open": 738.0, "High": 743.8, "Low": 731.0, "Close": 743.1, "Volume": 1349734 }, + { "Date": "2016-03-13", "Open": 749.2, "High": 754.4, "Low": 744.3, "Close": 751.7, "Volume": 1707095 }, + { "Date": "2016-03-14", "Open": 754.0, "High": 757.3, "Low": 752.7, "Close": 753.2, "Volume": 1130971 }, + { "Date": "2016-03-15", "Open": 754.0, "High": 761.0, "Low": 752.7, "Close": 759.0, "Volume": 1800413 }, + { "Date": "2016-03-18", "Open": 760.5, "High": 768.0, "Low": 757.3, "Close": 766.6, "Volume": 1555953 }, + { "Date": "2016-03-19", "Open": 769.5, "High": 769.9, "Low": 749.3, "Close": 753.9, "Volume": 2027642 }, + { "Date": "2016-03-20", "Open": 758.0, "High": 758.1, "Low": 750.0, "Close": 752.7, "Volume": 1525591 }, + { "Date": "2016-03-21", "Open": 755.4, "High": 760.5, "Low": 749.5, "Close": 759.1, "Volume": 2743620 }, + { "Date": "2016-03-22", "Open": 726.3, "High": 736.1, "Low": 713.6, "Close": 718.8, "Volume": 5939199 }, + { "Date": "2016-03-25", "Open": 716.1, "High": 723.9, "Low": 715.6, "Close": 723.1, "Volume": 1955567 }, + { "Date": "2016-03-26", "Open": 725.4, "High": 725.8, "Low": 703.0, "Close": 708.1, "Volume": 2727185 }, + { "Date": "2016-03-27", "Open": 707.3, "High": 709.0, "Low": 692.4, "Close": 705.8, "Volume": 3086722 }, + { "Date": "2016-03-28", "Open": 708.3, "High": 714.2, "Low": 689.5, "Close": 691.0, "Volume": 2851108 }, + { "Date": "2016-03-29", "Open": 690.7, "High": 697.6, "Low": 689.0, "Close": 693.0, "Volume": 2484273 }, + { "Date": "2016-04-02", "Open": 697.6, "High": 700.6, "Low": 691.0, "Close": 698.2, "Volume": 1644126 }, + { "Date": "2016-04-03", "Open": 696.9, "High": 697.8, "Low": 692.0, "Close": 692.4, "Volume": 1530993 }, + { "Date": "2016-04-04", "Open": 690.5, "High": 699.8, "Low": 689.0, "Close": 695.7, "Volume": 1688569 }, + { "Date": "2016-04-05", "Open": 697.7, "High": 702.3, "Low": 695.7, "Close": 701.4, "Volume": 1677405 }, + { "Date": "2016-04-06", "Open": 698.4, "High": 711.9, "Low": 698.1, "Close": 711.1, "Volume": 1826146 }, + { "Date": "2016-04-09", "Open": 712.0, "High": 718.7, "Low": 710.0, "Close": 712.9, "Volume": 1508423 }, + { "Date": "2016-04-10", "Open": 716.8, "High": 723.5, "Low": 715.7, "Close": 723.2, "Volume": 1563105 }, + { "Date": "2016-04-11", "Open": 723.4, "High": 724.5, "Low": 712.8, "Close": 715.3, "Volume": 1686823 }, + { "Date": "2016-04-12", "Open": 717.1, "High": 719.3, "Low": 709.0, "Close": 713.3, "Volume": 1360732 }, + { "Date": "2016-04-13", "Open": 711.9, "High": 716.7, "Low": 709.3, "Close": 710.8, "Volume": 1307338 }, + { "Date": "2016-04-16", "Open": 709.1, "High": 718.5, "Low": 705.6, "Close": 716.5, "Volume": 1316177 }, + { "Date": "2016-04-17", "Open": 716.0, "High": 721.5, "Low": 704.1, "Close": 706.2, "Volume": 1999456 }, + { "Date": "2016-04-18", "Open": 703.7, "High": 711.6, "Low": 700.6, "Close": 706.6, "Volume": 1763394 }, + { "Date": "2016-04-19", "Open": 702.4, "High": 706.0, "Low": 696.8, "Close": 700.3, "Volume": 1656321 }, + { "Date": "2016-04-20", "Open": 701.6, "High": 714.6, "Low": 700.5, "Close": 709.7, "Volume": 1816027 }, + { "Date": "2016-04-23", "Open": 706.5, "High": 711.5, "Low": 704.2, "Close": 704.2, "Volume": 1320927 }, + { "Date": "2016-04-24", "Open": 706.9, "High": 721.0, "Low": 706.9, "Close": 720.1, "Volume": 1920411 }, + { "Date": "2016-04-25", "Open": 720.8, "High": 727.5, "Low": 719.7, "Close": 725.3, "Volume": 1629198 }, + { "Date": "2016-04-26", "Open": 722.9, "High": 728.3, "Low": 720.3, "Close": 724.1, "Volume": 1542866 }, + { "Date": "2016-04-27", "Open": 724.0, "High": 733.9, "Low": 724.0, "Close": 732.7, "Volume": 1974026 }, + { "Date": "2016-04-31", "Open": 731.7, "High": 739.7, "Low": 731.3, "Close": 735.7, "Volume": 2129545 }, + { "Date": "2016-05-01", "Open": 734.5, "High": 737.2, "Low": 730.7, "Close": 734.1, "Volume": 1253593 }, + { "Date": "2016-05-02", "Open": 732.5, "High": 733.0, "Low": 724.2, "Close": 730.4, "Volume": 1341807 }, + { "Date": "2016-05-03", "Open": 729.3, "High": 729.5, "Low": 720.6, "Close": 722.3, "Volume": 1226253 }, + { "Date": "2016-05-06", "Open": 724.9, "High": 724.9, "Low": 714.6, "Close": 716.5, "Volume": 1566059 }, + { "Date": "2016-05-07", "Open": 719.8, "High": 722.0, "Low": 716.5, "Close": 716.6, "Volume": 1336754 }, + { "Date": "2016-05-08", "Open": 724.0, "High": 728.6, "Low": 720.6, "Close": 728.3, "Volume": 1583701 }, + { "Date": "2016-05-09", "Open": 722.9, "High": 729.5, "Low": 722.3, "Close": 728.6, "Volume": 988914 }, + { "Date": "2016-05-10", "Open": 719.5, "High": 725.9, "Low": 716.4, "Close": 719.4, "Volume": 1216443 }, + { "Date": "2016-05-13", "Open": 716.5, "High": 725.4, "Low": 716.5, "Close": 718.4, "Volume": 1258930 }, + { "Date": "2016-05-14", "Open": 716.5, "High": 722.5, "Low": 713.1, "Close": 718.3, "Volume": 1306065 }, + { "Date": "2016-05-15", "Open": 719.0, "High": 723.0, "Low": 717.3, "Close": 718.9, "Volume": 1214517 }, + { "Date": "2016-05-16", "Open": 714.9, "High": 716.6, "Low": 703.3, "Close": 710.4, "Volume": 1982471 }, + { "Date": "2016-05-17", "Open": 708.6, "High": 708.8, "Low": 688.5, "Close": 691.7, "Volume": 3402357 }, + { "Date": "2016-05-20", "Open": 698.8, "High": 702.5, "Low": 693.4, "Close": 693.7, "Volume": 2082538 }, + { "Date": "2016-05-21", "Open": 698.4, "High": 702.8, "Low": 692.0, "Close": 695.9, "Volume": 1465634 }, + { "Date": "2016-05-22", "Open": 699.1, "High": 700.9, "Low": 693.1, "Close": 697.5, "Volume": 1184318 }, + { "Date": "2016-05-23", "Open": 697.5, "High": 702.0, "Low": 687.0, "Close": 701.9, "Volume": 2171415 }, + { "Date": "2016-05-24", "Open": 675.2, "High": 689.4, "Low": 673.5, "Close": 675.2, "Volume": 4449022 }, + { "Date": "2016-05-27", "Open": 671.0, "High": 672.3, "Low": 663.3, "Close": 668.3, "Volume": 2641085 }, + { "Date": "2016-05-28", "Open": 679.0, "High": 680.3, "Low": 673.0, "Close": 680.0, "Volume": 2173762 }, + { "Date": "2016-05-29", "Open": 683.0, "High": 687.4, "Low": 681.4, "Close": 684.1, "Volume": 1932561 }, + { "Date": "2016-05-30", "Open": 685.5, "High": 692.3, "Low": 683.6, "Close": 692.1, "Volume": 1597714 }, + { "Date": "2016-06-01", "Open": 692.2, "High": 700.6, "Low": 692.1, "Close": 699.2, "Volume": 1344710 }, + { "Date": "2016-06-05", "Open": 696.1, "High": 696.9, "Low": 688.9, "Close": 694.5, "Volume": 1462616 }, + { "Date": "2016-06-06", "Open": 690.0, "High": 701.7, "Low": 689.1, "Close": 697.8, "Volume": 1411925 }, + { "Date": "2016-06-07", "Open": 698.1, "High": 698.2, "Low": 688.2, "Close": 695.4, "Volume": 1304200 }, + { "Date": "2016-06-08", "Open": 699.5, "High": 705.7, "Low": 696.4, "Close": 705.6, "Volume": 1575166 }, + { "Date": "2016-06-11", "Open": 708.0, "High": 716.5, "Low": 707.2, "Close": 715.1, "Volume": 1111762 }, + { "Date": "2016-06-12", "Open": 719.1, "High": 722.9, "Low": 715.9, "Close": 720.6, "Volume": 1336921 }, + { "Date": "2016-06-13", "Open": 723.6, "High": 724.0, "Low": 716.9, "Close": 717.0, "Volume": 935876 }, + { "Date": "2016-06-14", "Open": 721.6, "High": 722.2, "Low": 718.0, "Close": 721.0, "Volume": 950193 }, + { "Date": "2016-06-15", "Open": 725.7, "High": 725.7, "Low": 719.1, "Close": 719.9, "Volume": 1279339 }, + { "Date": "2016-06-18", "Open": 722.7, "High": 736.1, "Low": 721.2, "Close": 733.8, "Volume": 1295476 }, + { "Date": "2016-06-19", "Open": 729.9, "High": 737.0, "Low": 729.0, "Close": 737.0, "Volume": 1227486 }, + { "Date": "2016-06-20", "Open": 737.3, "High": 742.1, "Low": 737.1, "Close": 741.2, "Volume": 1289671 }, + { "Date": "2016-06-21", "Open": 740.4, "High": 741.7, "Low": 735.8, "Close": 738.6, "Volume": 1026306 }, + { "Date": "2016-06-22", "Open": 741.9, "High": 743.2, "Low": 736.6, "Close": 742.7, "Volume": 1259823 }, + { "Date": "2016-06-25", "Open": 740.7, "High": 742.6, "Low": 737.5, "Close": 739.8, "Volume": 1032432 }, + { "Date": "2016-06-26", "Open": 739.0, "High": 741.7, "Low": 734.3, "Close": 738.4, "Volume": 1186738 }, + { "Date": "2016-06-27", "Open": 738.3, "High": 744.5, "Low": 737.0, "Close": 741.8, "Volume": 1512517 }, + { "Date": "2016-06-28", "Open": 747.0, "High": 748.6, "Low": 739.3, "Close": 745.9, "Volume": 3530169 }, + { "Date": "2016-06-29", "Open": 772.7, "High": 778.5, "Low": 766.8, "Close": 768.8, "Volume": 3841482 }, + { "Date": "2016-07-01", "Open": 761.1, "High": 780.4, "Low": 761.1, "Close": 772.9, "Volume": 2700470 }, + { "Date": "2016-07-02", "Open": 768.7, "High": 775.8, "Low": 767.9, "Close": 771.1, "Volume": 1784525 }, + { "Date": "2016-07-03", "Open": 767.2, "High": 773.2, "Low": 766.8, "Close": 773.2, "Volume": 1287421 }, + { "Date": "2016-07-04", "Open": 772.2, "High": 774.1, "Low": 768.8, "Close": 771.6, "Volume": 1140254 }, + { "Date": "2016-07-05", "Open": 773.8, "High": 783.0, "Low": 772.3, "Close": 782.2, "Volume": 1801205 }, + { "Date": "2016-07-08", "Open": 782.0, "High": 782.6, "Low": 778.1, "Close": 781.8, "Volume": 1107857 }, + { "Date": "2016-07-09", "Open": 781.1, "High": 788.9, "Low": 780.6, "Close": 784.3, "Volume": 1318894 }, + { "Date": "2016-07-10", "Open": 783.8, "High": 786.8, "Low": 782.8, "Close": 784.7, "Volume": 786363 }, + { "Date": "2016-07-11", "Open": 785.0, "High": 789.8, "Low": 783.0, "Close": 784.9, "Volume": 975113 }, + { "Date": "2016-07-12", "Open": 781.5, "High": 783.4, "Low": 780.4, "Close": 783.2, "Volume": 740498 }, + { "Date": "2016-07-15", "Open": 783.8, "High": 787.5, "Low": 780.1, "Close": 782.4, "Volume": 938186 }, + { "Date": "2016-07-16", "Open": 780.3, "High": 781.0, "Low": 773.4, "Close": 777.1, "Volume": 1028047 }, + { "Date": "2016-07-17", "Open": 777.3, "High": 780.8, "Low": 773.5, "Close": 779.9, "Volume": 924226 }, + { "Date": "2016-07-18", "Open": 780.0, "High": 782.9, "Low": 777.0, "Close": 777.5, "Volume": 719429 }, + { "Date": "2016-07-19", "Open": 775.0, "High": 777.1, "Low": 773.1, "Close": 775.4, "Volume": 861546 }, + { "Date": "2016-07-22", "Open": 773.3, "High": 774.5, "Low": 770.0, "Close": 772.1, "Volume": 951362 }, + { "Date": "2016-07-23", "Open": 775.5, "High": 776.4, "Low": 771.8, "Close": 772.1, "Volume": 928232 }, + { "Date": "2016-07-24", "Open": 770.6, "High": 774.5, "Low": 767.1, "Close": 769.6, "Volume": 1071999 }, + { "Date": "2016-07-25", "Open": 767.0, "High": 771.9, "Low": 763.2, "Close": 769.4, "Volume": 926883 }, + { "Date": "2016-07-26", "Open": 769.0, "High": 776.1, "Low": 765.9, "Close": 769.5, "Volume": 1166681 }, + { "Date": "2016-07-29", "Open": 768.7, "High": 775.0, "Low": 766.6, "Close": 772.1, "Volume": 847565 }, + { "Date": "2016-07-30", "Open": 769.3, "High": 774.5, "Low": 766.8, "Close": 769.1, "Volume": 1130029 }, + { "Date": "2016-07-31", "Open": 767.0, "High": 769.1, "Low": 765.4, "Close": 767.0, "Volume": 1248556 }, + { "Date": "2016-08-01", "Open": 769.3, "High": 771.0, "Low": 764.3, "Close": 768.8, "Volume": 925131 }, + { "Date": "2016-08-02", "Open": 773.0, "High": 773.9, "Low": 768.4, "Close": 771.5, "Volume": 1072658 }, + { "Date": "2016-08-06", "Open": 773.5, "High": 782.0, "Low": 771.0, "Close": 780.1, "Volume": 1442822 }, + { "Date": "2016-08-07", "Open": 780.0, "High": 782.7, "Low": 776.2, "Close": 780.4, "Volume": 894021 }, + { "Date": "2016-08-08", "Open": 778.6, "High": 780.4, "Low": 773.6, "Close": 775.3, "Volume": 1270264 }, + { "Date": "2016-08-09", "Open": 770.1, "High": 773.2, "Low": 759.7, "Close": 759.7, "Volume": 1885496 }, + { "Date": "2016-08-12", "Open": 755.1, "High": 770.3, "Low": 754.0, "Close": 769.0, "Volume": 1310986 }, + { "Date": "2016-08-13", "Open": 764.5, "High": 766.2, "Low": 755.8, "Close": 759.7, "Volume": 1395046 }, + { "Date": "2016-08-14", "Open": 759.6, "High": 767.7, "Low": 759.1, "Close": 762.5, "Volume": 1094490 }, + { "Date": "2016-08-15", "Open": 762.9, "High": 773.8, "Low": 760.0, "Close": 771.8, "Volume": 1346751 }, + { "Date": "2016-08-16", "Open": 769.8, "High": 769.8, "Low": 764.7, "Close": 768.9, "Volume": 2049338 }, + { "Date": "2016-08-19", "Open": 772.4, "High": 774.0, "Low": 764.4, "Close": 765.7, "Volume": 1172824 }, + { "Date": "2016-08-20", "Open": 769.0, "High": 773.3, "Low": 768.5, "Close": 771.4, "Volume": 978631 }, + { "Date": "2016-08-21", "Open": 772.7, "High": 777.2, "Low": 768.3, "Close": 776.2, "Volume": 1167810 }, + { "Date": "2016-08-22", "Open": 780.0, "High": 789.9, "Low": 778.4, "Close": 787.2, "Volume": 1486223 }, + { "Date": "2016-08-23", "Open": 786.6, "High": 788.9, "Low": 784.1, "Close": 786.9, "Volume": 1411937 }, + { "Date": "2016-08-26", "Open": 782.7, "High": 782.7, "Low": 773.1, "Close": 774.2, "Volume": 1533206 }, + { "Date": "2016-08-27", "Open": 775.5, "High": 786.0, "Low": 774.3, "Close": 783.0, "Volume": 1153247 }, + { "Date": "2016-08-28", "Open": 777.9, "High": 781.8, "Low": 775.0, "Close": 781.6, "Volume": 1109834 }, + { "Date": "2016-08-29", "Open": 781.4, "High": 785.8, "Low": 774.2, "Close": 775.0, "Volume": 1314746 }, + { "Date": "2016-08-30", "Open": 776.3, "High": 780.9, "Low": 774.1, "Close": 777.3, "Volume": 1585333 }, + { "Date": "2016-09-03", "Open": 774.3, "High": 776.1, "Low": 769.5, "Close": 772.6, "Volume": 1278821 }, + { "Date": "2016-09-04", "Open": 776.0, "High": 778.7, "Low": 772.9, "Close": 776.4, "Volume": 1201350 }, + { "Date": "2016-09-05", "Open": 779.3, "High": 782.1, "Low": 775.6, "Close": 776.5, "Volume": 1461151 }, + { "Date": "2016-09-06", "Open": 779.0, "High": 780.5, "Low": 775.5, "Close": 776.9, "Volume": 1070692 }, + { "Date": "2016-09-07", "Open": 779.7, "High": 779.7, "Low": 770.8, "Close": 775.1, "Volume": 933158 }, + { "Date": "2016-09-10", "Open": 777.7, "High": 789.4, "Low": 775.9, "Close": 785.9, "Volume": 1174923 }, + { "Date": "2016-09-11", "Open": 786.7, "High": 792.3, "Low": 780.6, "Close": 783.1, "Volume": 1372461 }, + { "Date": "2016-09-12", "Open": 783.8, "High": 788.1, "Low": 782.1, "Close": 786.1, "Volume": 937435 }, + { "Date": "2016-09-13", "Open": 781.2, "High": 781.2, "Low": 773.0, "Close": 778.2, "Volume": 1365277 }, + { "Date": "2016-09-14", "Open": 781.6, "High": 784.0, "Low": 776.0, "Close": 778.5, "Volume": 852487 }, + { "Date": "2016-09-17", "Open": 779.8, "High": 785.9, "Low": 777.5, "Close": 780.0, "Volume": 1092973 }, + { "Date": "2016-09-18", "Open": 787.9, "High": 801.6, "Low": 785.6, "Close": 795.3, "Volume": 2056903 }, + { "Date": "2016-09-19", "Open": 798.9, "High": 804.6, "Low": 797.6, "Close": 801.6, "Volume": 1766798 }, + { "Date": "2016-09-20", "Open": 803.3, "High": 804.0, "Low": 796.0, "Close": 797.0, "Volume": 1757528 }, + { "Date": "2016-09-21", "Open": 795.0, "High": 799.5, "Low": 794.0, "Close": 799.4, "Volume": 1266181 }, + { "Date": "2016-09-24", "Open": 804.9, "High": 815.2, "Low": 804.8, "Close": 813.1, "Volume": 1697514 }, + { "Date": "2016-09-25", "Open": 816.7, "High": 816.7, "Low": 805.1, "Close": 807.7, "Volume": 1576404 }, + { "Date": "2016-09-26", "Open": 806.3, "High": 807.0, "Low": 796.3, "Close": 799.1, "Volume": 1647733 }, + { "Date": "2016-09-27", "Open": 801.0, "High": 803.5, "Low": 791.5, "Close": 795.4, "Volume": 2749221 }, + { "Date": "2016-09-28", "Open": 808.4, "High": 815.5, "Low": 793.6, "Close": 795.4, "Volume": 4269902 }, + { "Date": "2016-09-31", "Open": 795.5, "High": 796.9, "Low": 784.0, "Close": 784.5, "Volume": 2427284 }, + { "Date": "2016-10-01", "Open": 782.9, "High": 789.5, "Low": 775.5, "Close": 783.6, "Volume": 2406356 }, + { "Date": "2016-10-02", "Open": 778.2, "High": 781.6, "Low": 763.5, "Close": 768.7, "Volume": 1918414 }, + { "Date": "2016-10-03", "Open": 767.3, "High": 770.0, "Low": 759.0, "Close": 762.1, "Volume": 1943175 }, + { "Date": "2016-10-04", "Open": 750.7, "High": 770.4, "Low": 750.6, "Close": 762.0, "Volume": 2134812 }, + { "Date": "2016-10-07", "Open": 774.5, "High": 785.2, "Low": 772.5, "Close": 782.5, "Volume": 1585070 }, + { "Date": "2016-10-08", "Open": 783.4, "High": 795.6, "Low": 780.2, "Close": 790.5, "Volume": 1366873 }, + { "Date": "2016-10-09", "Open": 779.9, "High": 791.2, "Low": 771.7, "Close": 785.3, "Volume": 2607121 }, + { "Date": "2016-10-10", "Open": 791.2, "High": 791.2, "Low": 752.2, "Close": 762.6, "Volume": 4745183 }, + { "Date": "2016-10-11", "Open": 756.5, "High": 760.8, "Low": 750.4, "Close": 754.0, "Volume": 2431815 }, + { "Date": "2016-10-14", "Open": 755.6, "High": 757.9, "Low": 727.5, "Close": 736.1, "Volume": 3654385 }, + { "Date": "2016-10-15", "Open": 747.0, "High": 764.4, "Low": 747.0, "Close": 758.5, "Volume": 2384001 }, + { "Date": "2016-10-16", "Open": 755.2, "High": 766.4, "Low": 750.5, "Close": 764.5, "Volume": 1472594 }, + { "Date": "2016-10-17", "Open": 766.9, "High": 772.7, "Low": 764.2, "Close": 771.2, "Volume": 1286961 }, + { "Date": "2016-10-18", "Open": 771.4, "High": 775.0, "Low": 760.0, "Close": 760.5, "Volume": 1547145 }, + { "Date": "2016-10-21", "Open": 762.6, "High": 769.7, "Low": 760.6, "Close": 769.2, "Volume": 1330639 }, + { "Date": "2016-10-22", "Open": 772.6, "High": 777.0, "Low": 767.0, "Close": 768.3, "Volume": 1593108 }, + { "Date": "2016-10-23", "Open": 767.7, "High": 768.3, "Low": 755.3, "Close": 761.0, "Volume": 1478417 }, + { "Date": "2016-10-25", "Open": 764.3, "High": 765.0, "Low": 760.5, "Close": 761.7, "Volume": 587421 }, + { "Date": "2016-10-28", "Open": 760.0, "High": 779.5, "Low": 759.8, "Close": 768.2, "Volume": 2188151 }, + { "Date": "2016-10-29", "Open": 771.5, "High": 778.5, "Low": 768.2, "Close": 770.8, "Volume": 1616618 }, + { "Date": "2016-10-30", "Open": 770.1, "High": 773.0, "Low": 754.8, "Close": 758.0, "Volume": 2392890 }, + { "Date": "2016-11-01", "Open": 757.4, "High": 759.9, "Low": 737.0, "Close": 747.9, "Volume": 3017947 }, + { "Date": "2016-11-02", "Open": 744.6, "High": 754.0, "Low": 743.1, "Close": 750.5, "Volume": 1452484 }, + { "Date": "2016-11-05", "Open": 757.7, "High": 763.9, "Low": 752.9, "Close": 762.5, "Volume": 1394223 }, + { "Date": "2016-11-06", "Open": 764.7, "High": 768.8, "Low": 757.3, "Close": 759.1, "Volume": 1690689 }, + { "Date": "2016-11-07", "Open": 761.0, "High": 771.4, "Low": 755.8, "Close": 771.2, "Volume": 1760966 }, + { "Date": "2016-11-08", "Open": 772.5, "High": 778.2, "Low": 767.2, "Close": 776.4, "Volume": 1488059 }, + { "Date": "2016-11-09", "Open": 780.0, "High": 789.4, "Low": 779.0, "Close": 789.3, "Volume": 1821914 }, + { "Date": "2016-11-12", "Open": 785.0, "High": 791.3, "Low": 784.4, "Close": 789.3, "Volume": 2104117 }, + { "Date": "2016-11-13", "Open": 793.9, "High": 804.4, "Low": 793.3, "Close": 796.1, "Volume": 2145209 }, + { "Date": "2016-11-14", "Open": 797.4, "High": 804.0, "Low": 794.0, "Close": 797.1, "Volume": 1704150 }, + { "Date": "2016-11-15", "Open": 797.3, "High": 803.0, "Low": 792.9, "Close": 797.9, "Volume": 1626499 }, + { "Date": "2016-11-16", "Open": 800.4, "High": 800.9, "Low": 790.3, "Close": 790.8, "Volume": 2443796 }, + { "Date": "2016-11-19", "Open": 790.2, "High": 797.7, "Low": 786.3, "Close": 794.2, "Volume": 1232087 }, + { "Date": "2016-11-20", "Open": 796.8, "High": 798.6, "Low": 793.3, "Close": 796.4, "Volume": 951014 }, + { "Date": "2016-11-21", "Open": 795.8, "High": 796.7, "Low": 787.1, "Close": 794.6, "Volume": 1211346 }, + { "Date": "2016-11-22", "Open": 792.4, "High": 793.3, "Low": 788.6, "Close": 791.3, "Volume": 972169 }, + { "Date": "2016-11-23", "Open": 790.9, "High": 792.7, "Low": 787.3, "Close": 789.9, "Volume": 623944 }, + { "Date": "2016-11-27", "Open": 790.7, "High": 797.9, "Low": 787.7, "Close": 791.5, "Volume": 789321 }, + { "Date": "2016-11-28", "Open": 793.7, "High": 794.2, "Low": 783.2, "Close": 785.0, "Volume": 1153824 }, + { "Date": "2016-11-29", "Open": 783.3, "High": 785.9, "Low": 778.9, "Close": 782.8, "Volume": 744272 }, + { "Date": "2016-11-30", "Open": 782.8, "High": 782.8, "Low": 770.4, "Close": 771.8, "Volume": 1769950 }, + { "Date": "2017-00-03", "Open": 778.8, "High": 789.6, "Low": 775.8, "Close": 786.1, "Volume": 1657268 }, + { "Date": "2017-00-04", "Open": 788.4, "High": 791.3, "Low": 783.2, "Close": 786.9, "Volume": 1072958 }, + { "Date": "2017-00-05", "Open": 786.1, "High": 794.5, "Low": 785.0, "Close": 794.0, "Volume": 1335167 }, + { "Date": "2017-00-06", "Open": 795.3, "High": 807.9, "Low": 792.2, "Close": 806.1, "Volume": 1640170 }, + { "Date": "2017-00-09", "Open": 806.4, "High": 810.0, "Low": 802.8, "Close": 806.6, "Volume": 1274645 }, + { "Date": "2017-00-10", "Open": 807.9, "High": 809.1, "Low": 803.5, "Close": 804.8, "Volume": 1176780 }, + { "Date": "2017-00-11", "Open": 805.0, "High": 808.1, "Low": 801.4, "Close": 807.9, "Volume": 1065936 }, + { "Date": "2017-00-12", "Open": 807.1, "High": 807.4, "Low": 799.2, "Close": 806.4, "Volume": 1353057 }, + { "Date": "2017-00-13", "Open": 807.5, "High": 811.2, "Low": 806.7, "Close": 807.9, "Volume": 1099215 }, + { "Date": "2017-00-17", "Open": 807.1, "High": 807.1, "Low": 800.4, "Close": 804.6, "Volume": 1362115 }, + { "Date": "2017-00-18", "Open": 805.8, "High": 806.2, "Low": 801.0, "Close": 806.1, "Volume": 1294407 }, + { "Date": "2017-00-19", "Open": 805.1, "High": 809.5, "Low": 801.8, "Close": 802.2, "Volume": 919325 }, + { "Date": "2017-00-20", "Open": 806.9, "High": 806.9, "Low": 801.7, "Close": 805.0, "Volume": 1670045 }, + { "Date": "2017-00-23", "Open": 807.3, "High": 820.9, "Low": 803.7, "Close": 819.3, "Volume": 1963628 }, + { "Date": "2017-00-24", "Open": 822.3, "High": 825.9, "Low": 817.8, "Close": 823.9, "Volume": 1474010 }, + { "Date": "2017-00-25", "Open": 829.6, "High": 835.8, "Low": 825.1, "Close": 835.7, "Volume": 1627304 }, + { "Date": "2017-00-26", "Open": 837.8, "High": 838.0, "Low": 827.0, "Close": 832.1, "Volume": 2973891 }, + { "Date": "2017-00-27", "Open": 834.7, "High": 842.0, "Low": 820.4, "Close": 823.3, "Volume": 2965771 }, + { "Date": "2017-00-30", "Open": 814.7, "High": 815.8, "Low": 799.8, "Close": 802.3, "Volume": 3246573 }, + { "Date": "2017-00-31", "Open": 796.9, "High": 801.3, "Low": 790.5, "Close": 796.8, "Volume": 2160556 }, + { "Date": "2017-01-01", "Open": 799.7, "High": 801.2, "Low": 791.2, "Close": 795.7, "Volume": 2029744 }, + { "Date": "2017-01-02", "Open": 793.8, "High": 802.7, "Low": 792.0, "Close": 798.5, "Volume": 1532138 }, + { "Date": "2017-01-03", "Open": 803.0, "High": 806.0, "Low": 800.4, "Close": 801.5, "Volume": 1463448 }, + { "Date": "2017-01-06", "Open": 799.7, "High": 801.7, "Low": 795.3, "Close": 801.3, "Volume": 1184483 }, + { "Date": "2017-01-07", "Open": 804.0, "High": 810.5, "Low": 801.8, "Close": 807.0, "Volume": 1241221 }, + { "Date": "2017-01-08", "Open": 807.0, "High": 811.8, "Low": 803.2, "Close": 808.4, "Volume": 1155990 }, + { "Date": "2017-01-09", "Open": 809.5, "High": 810.7, "Low": 804.5, "Close": 809.6, "Volume": 990391 }, + { "Date": "2017-01-10", "Open": 811.7, "High": 815.3, "Low": 809.8, "Close": 813.7, "Volume": 1134976 }, + { "Date": "2017-01-13", "Open": 816.0, "High": 821.0, "Low": 815.5, "Close": 819.2, "Volume": 1213324 }, + { "Date": "2017-01-14", "Open": 819.0, "High": 823.0, "Low": 816.0, "Close": 820.5, "Volume": 1054732 }, + { "Date": "2017-01-15", "Open": 819.4, "High": 823.0, "Low": 818.5, "Close": 819.0, "Volume": 1313617 }, + { "Date": "2017-01-16", "Open": 819.9, "High": 824.4, "Low": 819.0, "Close": 824.2, "Volume": 1287626 }, + { "Date": "2017-01-17", "Open": 823.0, "High": 828.1, "Low": 821.7, "Close": 828.1, "Volume": 1611039 }, + { "Date": "2017-01-21", "Open": 828.7, "High": 833.5, "Low": 828.4, "Close": 831.7, "Volume": 1262337 }, + { "Date": "2017-01-22", "Open": 828.7, "High": 833.3, "Low": 828.6, "Close": 830.8, "Volume": 987248 }, + { "Date": "2017-01-23", "Open": 830.1, "High": 832.5, "Low": 822.9, "Close": 831.3, "Volume": 1472771 }, + { "Date": "2017-01-24", "Open": 827.7, "High": 829.0, "Low": 824.2, "Close": 828.6, "Volume": 1392202 }, + { "Date": "2017-01-27", "Open": 824.5, "High": 830.5, "Low": 824.0, "Close": 829.3, "Volume": 1101466 }, + { "Date": "2017-01-28", "Open": 825.6, "High": 828.5, "Low": 820.2, "Close": 823.2, "Volume": 2260769 }, + { "Date": "2017-02-01", "Open": 828.9, "High": 836.3, "Low": 827.3, "Close": 835.2, "Volume": 1496540 }, + { "Date": "2017-02-02", "Open": 833.9, "High": 834.5, "Low": 829.6, "Close": 830.6, "Volume": 942476 }, + { "Date": "2017-02-03", "Open": 830.6, "High": 831.4, "Low": 825.8, "Close": 829.1, "Volume": 896378 }, + { "Date": "2017-02-06", "Open": 827.0, "High": 828.9, "Low": 822.4, "Close": 827.8, "Volume": 1109037 }, + { "Date": "2017-02-07", "Open": 827.4, "High": 833.4, "Low": 826.5, "Close": 831.9, "Volume": 1037630 }, + { "Date": "2017-02-08", "Open": 833.5, "High": 838.1, "Low": 831.8, "Close": 835.4, "Volume": 989773 }, + { "Date": "2017-02-09", "Open": 836.0, "High": 842.0, "Low": 834.2, "Close": 838.7, "Volume": 1261517 }, + { "Date": "2017-02-10", "Open": 843.3, "High": 844.9, "Low": 839.5, "Close": 843.3, "Volume": 1704024 }, + { "Date": "2017-02-13", "Open": 844.0, "High": 848.7, "Low": 843.3, "Close": 845.5, "Volume": 1223647 }, + { "Date": "2017-02-14", "Open": 843.6, "High": 847.2, "Low": 840.8, "Close": 845.6, "Volume": 780198 }, + { "Date": "2017-02-15", "Open": 847.6, "High": 848.6, "Low": 840.8, "Close": 847.2, "Volume": 1381474 }, + { "Date": "2017-02-16", "Open": 849.0, "High": 850.9, "Low": 846.1, "Close": 848.8, "Volume": 977560 }, + { "Date": "2017-02-17", "Open": 851.6, "High": 853.4, "Low": 847.1, "Close": 852.1, "Volume": 1716471 }, + { "Date": "2017-02-20", "Open": 850.0, "High": 850.2, "Low": 845.1, "Close": 848.4, "Volume": 1231521 }, + { "Date": "2017-02-21", "Open": 851.4, "High": 853.5, "Low": 829.0, "Close": 830.5, "Volume": 2463484 }, + { "Date": "2017-02-22", "Open": 831.9, "High": 835.5, "Low": 827.2, "Close": 829.6, "Volume": 1401465 }, + { "Date": "2017-02-23", "Open": 821.0, "High": 822.6, "Low": 812.3, "Close": 817.6, "Volume": 3487056 }, + { "Date": "2017-02-24", "Open": 820.1, "High": 821.9, "Low": 808.9, "Close": 814.4, "Volume": 1981006 }, + { "Date": "2017-02-27", "Open": 807.0, "High": 821.6, "Low": 803.4, "Close": 819.5, "Volume": 1894990 }, + { "Date": "2017-02-28", "Open": 820.4, "High": 826.0, "Low": 814.0, "Close": 820.9, "Volume": 1620542 }, + { "Date": "2017-02-29", "Open": 825.0, "High": 832.8, "Low": 822.4, "Close": 831.4, "Volume": 1786321 }, + { "Date": "2017-02-30", "Open": 833.5, "High": 833.7, "Low": 829.0, "Close": 831.5, "Volume": 1055339 }, + { "Date": "2017-02-31", "Open": 829.0, "High": 831.6, "Low": 827.4, "Close": 829.6, "Volume": 1401893 }, + { "Date": "2017-03-03", "Open": 829.2, "High": 840.9, "Low": 829.2, "Close": 838.5, "Volume": 1671503 }, + { "Date": "2017-03-04", "Open": 831.4, "High": 835.2, "Low": 829.0, "Close": 834.6, "Volume": 1045363 }, + { "Date": "2017-03-05", "Open": 835.5, "High": 842.5, "Low": 830.7, "Close": 831.4, "Volume": 1555328 }, + { "Date": "2017-03-06", "Open": 832.4, "High": 836.4, "Low": 826.5, "Close": 827.9, "Volume": 1254433 }, + { "Date": "2017-03-07", "Open": 828.0, "High": 828.5, "Low": 820.5, "Close": 824.7, "Volume": 1057253 }, + { "Date": "2017-03-10", "Open": 825.4, "High": 829.4, "Low": 823.8, "Close": 824.7, "Volume": 978905 }, + { "Date": "2017-03-11", "Open": 824.7, "High": 827.4, "Low": 817.0, "Close": 823.4, "Volume": 1079732 }, + { "Date": "2017-03-12", "Open": 821.9, "High": 826.7, "Low": 821.0, "Close": 824.3, "Volume": 900480 }, + { "Date": "2017-03-13", "Open": 822.1, "High": 826.4, "Low": 821.4, "Close": 823.6, "Volume": 1122362 }, + { "Date": "2017-03-17", "Open": 825.0, "High": 837.8, "Low": 824.5, "Close": 837.2, "Volume": 895015 }, + { "Date": "2017-03-18", "Open": 834.2, "High": 838.9, "Low": 832.7, "Close": 836.8, "Volume": 836722 }, + { "Date": "2017-03-19", "Open": 839.8, "High": 842.2, "Low": 836.3, "Close": 838.2, "Volume": 954330 }, + { "Date": "2017-03-20", "Open": 841.4, "High": 845.2, "Low": 839.3, "Close": 841.6, "Volume": 959031 }, + { "Date": "2017-03-21", "Open": 842.9, "High": 843.9, "Low": 840.6, "Close": 843.2, "Volume": 1323583 }, + { "Date": "2017-03-24", "Open": 851.2, "High": 863.5, "Low": 849.9, "Close": 862.8, "Volume": 1372541 }, + { "Date": "2017-03-25", "Open": 865.0, "High": 875.0, "Low": 862.8, "Close": 872.3, "Volume": 1671972 }, + { "Date": "2017-03-26", "Open": 874.2, "High": 876.0, "Low": 867.8, "Close": 871.7, "Volume": 1237167 }, + { "Date": "2017-03-27", "Open": 873.6, "High": 875.4, "Low": 870.4, "Close": 874.3, "Volume": 2026816 }, + { "Date": "2017-03-28", "Open": 910.7, "High": 916.9, "Low": 905.8, "Close": 906.0, "Volume": 3276255 }, + { "Date": "2017-04-01", "Open": 901.9, "High": 915.7, "Low": 901.5, "Close": 912.6, "Volume": 2115993 }, + { "Date": "2017-04-02", "Open": 909.6, "High": 920.8, "Low": 909.5, "Close": 916.4, "Volume": 1587219 }, + { "Date": "2017-04-03", "Open": 914.9, "High": 928.1, "Low": 912.5, "Close": 927.0, "Volume": 1499532 }, + { "Date": "2017-04-04", "Open": 926.1, "High": 935.9, "Low": 924.6, "Close": 931.7, "Volume": 1422144 }, + { "Date": "2017-04-05", "Open": 933.5, "High": 934.9, "Low": 925.2, "Close": 927.1, "Volume": 1911275 }, + { "Date": "2017-04-08", "Open": 926.1, "High": 936.9, "Low": 925.3, "Close": 934.3, "Volume": 1329825 }, + { "Date": "2017-04-09", "Open": 937.0, "High": 937.5, "Low": 929.5, "Close": 932.2, "Volume": 1581809 }, + { "Date": "2017-04-10", "Open": 932.0, "High": 932.0, "Low": 925.2, "Close": 928.8, "Volume": 1173925 }, + { "Date": "2017-04-11", "Open": 925.3, "High": 932.5, "Low": 923.0, "Close": 930.6, "Volume": 835386 }, + { "Date": "2017-04-12", "Open": 931.5, "High": 933.4, "Low": 927.9, "Close": 932.2, "Volume": 1050601 }, + { "Date": "2017-04-15", "Open": 933.0, "High": 938.3, "Low": 929.3, "Close": 937.1, "Volume": 1108496 }, + { "Date": "2017-04-16", "Open": 940.0, "High": 943.1, "Low": 937.6, "Close": 943.0, "Volume": 969479 }, + { "Date": "2017-04-17", "Open": 935.7, "High": 939.3, "Low": 918.1, "Close": 919.6, "Volume": 2362072 }, + { "Date": "2017-04-18", "Open": 921.0, "High": 933.2, "Low": 918.8, "Close": 930.2, "Volume": 1596897 }, + { "Date": "2017-04-19", "Open": 931.5, "High": 937.8, "Low": 931.0, "Close": 934.0, "Volume": 1393024 }, + { "Date": "2017-04-22", "Open": 935.0, "High": 941.9, "Low": 935.0, "Close": 941.9, "Volume": 1120385 }, + { "Date": "2017-04-23", "Open": 947.9, "High": 951.5, "Low": 942.6, "Close": 948.8, "Volume": 1270817 }, + { "Date": "2017-04-24", "Open": 953.0, "High": 955.1, "Low": 949.5, "Close": 955.0, "Volume": 1034199 }, + { "Date": "2017-04-25", "Open": 957.3, "High": 972.6, "Low": 955.5, "Close": 969.5, "Volume": 1660474 }, + { "Date": "2017-04-26", "Open": 969.7, "High": 975.0, "Low": 965.0, "Close": 971.5, "Volume": 1252010 }, + { "Date": "2017-04-30", "Open": 970.3, "High": 976.2, "Low": 969.5, "Close": 975.9, "Volume": 1466654 }, + { "Date": "2017-04-31", "Open": 975.0, "High": 979.3, "Low": 960.2, "Close": 964.9, "Volume": 2448067 }, + { "Date": "2017-05-01", "Open": 969.0, "High": 971.5, "Low": 960.0, "Close": 967.0, "Volume": 1410458 }, + { "Date": "2017-05-02", "Open": 969.5, "High": 975.9, "Low": 966.0, "Close": 975.6, "Volume": 1750955 }, + { "Date": "2017-05-05", "Open": 976.5, "High": 986.9, "Low": 975.1, "Close": 983.7, "Volume": 1252106 }, + { "Date": "2017-05-06", "Open": 983.2, "High": 988.3, "Low": 975.1, "Close": 976.6, "Volume": 1814624 }, + { "Date": "2017-05-07", "Open": 979.6, "High": 984.1, "Low": 975.8, "Close": 981.1, "Volume": 1453874 }, + { "Date": "2017-05-08", "Open": 982.4, "High": 984.6, "Low": 977.2, "Close": 983.4, "Volume": 1481916 }, + { "Date": "2017-05-09", "Open": 984.5, "High": 984.5, "Low": 935.6, "Close": 949.8, "Volume": 3309389 }, + { "Date": "2017-05-12", "Open": 939.6, "High": 949.4, "Low": 915.2, "Close": 942.9, "Volume": 3763529 }, + { "Date": "2017-05-13", "Open": 951.9, "High": 960.0, "Low": 944.1, "Close": 953.4, "Volume": 2013337 }, + { "Date": "2017-05-14", "Open": 959.9, "High": 961.1, "Low": 942.3, "Close": 950.8, "Volume": 1489715 }, + { "Date": "2017-05-15", "Open": 934.0, "High": 943.3, "Low": 924.4, "Close": 942.3, "Volume": 2133050 }, + { "Date": "2017-05-16", "Open": 940.0, "High": 942.0, "Low": 931.6, "Close": 939.8, "Volume": 3094711 }, + { "Date": "2017-05-19", "Open": 950.0, "High": 960.0, "Low": 949.0, "Close": 957.4, "Volume": 1533336 }, + { "Date": "2017-05-20", "Open": 957.5, "High": 961.6, "Low": 950.0, "Close": 950.6, "Volume": 1125990 }, + { "Date": "2017-05-21", "Open": 953.6, "High": 960.1, "Low": 950.8, "Close": 959.5, "Volume": 1202233 }, + { "Date": "2017-05-22", "Open": 958.7, "High": 960.7, "Low": 954.5, "Close": 957.1, "Volume": 941958 }, + { "Date": "2017-05-23", "Open": 956.8, "High": 966.0, "Low": 954.2, "Close": 965.6, "Volume": 1527856 }, + { "Date": "2017-05-26", "Open": 969.9, "High": 973.3, "Low": 950.8, "Close": 952.3, "Volume": 1598355 }, + { "Date": "2017-05-27", "Open": 942.5, "High": 948.3, "Low": 926.9, "Close": 927.3, "Volume": 2579930 }, + { "Date": "2017-05-28", "Open": 929.0, "High": 942.8, "Low": 916.0, "Close": 940.5, "Volume": 2721406 }, + { "Date": "2017-05-29", "Open": 929.9, "High": 931.3, "Low": 910.6, "Close": 917.8, "Volume": 3299176 }, + { "Date": "2017-05-30", "Open": 926.0, "High": 926.0, "Low": 908.3, "Close": 908.7, "Volume": 2090226 }, + { "Date": "2017-06-03", "Open": 912.2, "High": 913.9, "Low": 894.8, "Close": 898.7, "Volume": 1710373 }, + { "Date": "2017-06-05", "Open": 901.8, "High": 914.5, "Low": 898.5, "Close": 911.7, "Volume": 1813884 }, + { "Date": "2017-06-06", "Open": 904.1, "High": 914.9, "Low": 899.7, "Close": 906.7, "Volume": 1424503 }, + { "Date": "2017-06-07", "Open": 908.9, "High": 921.5, "Low": 908.9, "Close": 918.6, "Volume": 1637785 }, + { "Date": "2017-06-10", "Open": 921.8, "High": 930.4, "Low": 919.6, "Close": 928.8, "Volume": 1192825 }, + { "Date": "2017-06-11", "Open": 929.5, "High": 931.4, "Low": 922.0, "Close": 930.1, "Volume": 1113235 }, + { "Date": "2017-06-12", "Open": 938.7, "High": 946.3, "Low": 934.5, "Close": 943.8, "Volume": 1532144 }, + { "Date": "2017-06-13", "Open": 946.3, "High": 954.5, "Low": 943.0, "Close": 947.2, "Volume": 1294687 }, + { "Date": "2017-06-14", "Open": 952.0, "High": 956.9, "Low": 948.0, "Close": 956.0, "Volume": 1053774 }, + { "Date": "2017-06-17", "Open": 957.0, "High": 960.7, "Low": 949.2, "Close": 953.4, "Volume": 1165537 }, + { "Date": "2017-06-18", "Open": 953.0, "High": 968.0, "Low": 950.6, "Close": 965.4, "Volume": 1153964 }, + { "Date": "2017-06-19", "Open": 967.8, "High": 973.0, "Low": 964.0, "Close": 970.9, "Volume": 1224540 }, + { "Date": "2017-06-20", "Open": 975.0, "High": 975.9, "Low": 961.5, "Close": 968.1, "Volume": 1624463 }, + { "Date": "2017-06-21", "Open": 962.3, "High": 973.2, "Low": 960.1, "Close": 972.9, "Volume": 1711000 }, + { "Date": "2017-06-24", "Open": 972.2, "High": 986.2, "Low": 970.8, "Close": 980.3, "Volume": 3248347 }, + { "Date": "2017-06-25", "Open": 953.8, "High": 959.7, "Low": 945.4, "Close": 950.7, "Volume": 4660979 }, + { "Date": "2017-06-26", "Open": 954.7, "High": 955.0, "Low": 942.3, "Close": 947.8, "Volume": 2088256 }, + { "Date": "2017-06-27", "Open": 951.8, "High": 951.8, "Low": 920.0, "Close": 934.1, "Volume": 3212996 }, + { "Date": "2017-06-28", "Open": 929.4, "High": 943.8, "Low": 927.5, "Close": 941.5, "Volume": 1846351 }, + { "Date": "2017-06-31", "Open": 941.9, "High": 943.6, "Low": 926.0, "Close": 930.5, "Volume": 1970095 }, + { "Date": "2017-07-01", "Open": 932.4, "High": 937.5, "Low": 929.3, "Close": 930.8, "Volume": 1277734 }, + { "Date": "2017-07-02", "Open": 928.6, "High": 932.6, "Low": 916.7, "Close": 930.4, "Volume": 1824448 }, + { "Date": "2017-07-03", "Open": 930.3, "High": 932.2, "Low": 922.2, "Close": 923.6, "Volume": 1202512 }, + { "Date": "2017-07-04", "Open": 926.8, "High": 930.3, "Low": 923.0, "Close": 928.0, "Volume": 1082267 }, + { "Date": "2017-07-07", "Open": 929.1, "High": 931.7, "Low": 926.5, "Close": 929.4, "Volume": 1032239 }, + { "Date": "2017-07-08", "Open": 927.1, "High": 935.8, "Low": 925.6, "Close": 926.8, "Volume": 1061579 }, + { "Date": "2017-07-09", "Open": 920.6, "High": 926.0, "Low": 917.3, "Close": 922.9, "Volume": 1192081 }, + { "Date": "2017-07-10", "Open": 917.5, "High": 919.3, "Low": 906.1, "Close": 907.2, "Volume": 1823967 }, + { "Date": "2017-07-11", "Open": 908.0, "High": 917.8, "Low": 905.6, "Close": 914.4, "Volume": 1206782 }, + { "Date": "2017-07-14", "Open": 922.5, "High": 924.7, "Low": 918.2, "Close": 922.7, "Volume": 1064530 }, + { "Date": "2017-07-15", "Open": 924.2, "High": 926.5, "Low": 919.8, "Close": 922.2, "Volume": 883369 }, + { "Date": "2017-07-16", "Open": 925.3, "High": 932.7, "Low": 923.4, "Close": 927.0, "Volume": 1006711 }, + { "Date": "2017-07-17", "Open": 925.8, "High": 926.9, "Low": 911.0, "Close": 911.0, "Volume": 1277238 }, + { "Date": "2017-07-18", "Open": 910.3, "High": 915.3, "Low": 907.1, "Close": 910.7, "Volume": 1342689 }, + { "Date": "2017-07-21", "Open": 910.0, "High": 913.0, "Low": 903.4, "Close": 906.7, "Volume": 943441 }, + { "Date": "2017-07-22", "Open": 912.7, "High": 925.9, "Low": 911.5, "Close": 924.7, "Volume": 1166737 }, + { "Date": "2017-07-23", "Open": 921.9, "High": 929.9, "Low": 919.4, "Close": 927.0, "Volume": 1090248 }, + { "Date": "2017-07-24", "Open": 928.7, "High": 930.8, "Low": 915.5, "Close": 921.3, "Volume": 1270306 }, + { "Date": "2017-07-25", "Open": 923.5, "High": 925.6, "Low": 915.5, "Close": 915.9, "Volume": 1053376 }, + { "Date": "2017-07-28", "Open": 916.0, "High": 919.2, "Low": 911.9, "Close": 913.8, "Volume": 1086484 }, + { "Date": "2017-07-29", "Open": 905.1, "High": 923.3, "Low": 905.0, "Close": 921.3, "Volume": 1185564 }, + { "Date": "2017-07-30", "Open": 920.0, "High": 930.8, "Low": 919.6, "Close": 929.6, "Volume": 1301225 }, + { "Date": "2017-07-31", "Open": 931.8, "High": 942.0, "Low": 931.8, "Close": 939.3, "Volume": 1582579 }, + { "Date": "2017-08-01", "Open": 941.1, "High": 942.5, "Low": 935.1, "Close": 937.3, "Volume": 947374 }, + { "Date": "2017-08-05", "Open": 933.1, "High": 937.0, "Low": 922.0, "Close": 928.5, "Volume": 1348292 }, + { "Date": "2017-08-06", "Open": 930.1, "High": 930.9, "Low": 919.3, "Close": 927.8, "Volume": 1527650 }, + { "Date": "2017-08-07", "Open": 931.7, "High": 936.4, "Low": 923.6, "Close": 936.0, "Volume": 1212743 }, + { "Date": "2017-08-08", "Open": 936.5, "High": 937.0, "Low": 924.9, "Close": 926.5, "Volume": 1011538 }, + { "Date": "2017-08-11", "Open": 934.3, "High": 938.4, "Low": 926.9, "Close": 929.1, "Volume": 1266991 }, + { "Date": "2017-08-12", "Open": 932.6, "High": 933.5, "Low": 923.9, "Close": 932.1, "Volume": 1134397 }, + { "Date": "2017-08-13", "Open": 930.7, "High": 937.3, "Low": 929.9, "Close": 935.1, "Volume": 1102631 }, + { "Date": "2017-08-14", "Open": 931.3, "High": 932.8, "Low": 924.0, "Close": 925.1, "Volume": 1397644 }, + { "Date": "2017-08-15", "Open": 924.7, "High": 926.5, "Low": 916.4, "Close": 920.3, "Volume": 2505430 }, + { "Date": "2017-08-18", "Open": 920.0, "High": 922.1, "Low": 910.6, "Close": 915.0, "Volume": 1306922 }, + { "Date": "2017-08-19", "Open": 917.4, "High": 922.4, "Low": 912.5, "Close": 921.8, "Volume": 936654 }, + { "Date": "2017-08-20", "Open": 923.0, "High": 933.9, "Low": 922.0, "Close": 931.6, "Volume": 1669763 }, + { "Date": "2017-08-21", "Open": 933.0, "High": 936.5, "Low": 923.8, "Close": 932.5, "Volume": 1290607 }, + { "Date": "2017-08-22", "Open": 927.8, "High": 934.7, "Low": 926.5, "Close": 928.5, "Volume": 1052704 }, + { "Date": "2017-08-25", "Open": 925.5, "High": 926.4, "Low": 909.7, "Close": 921.0, "Volume": 1856822 }, + { "Date": "2017-08-26", "Open": 923.7, "High": 930.8, "Low": 921.1, "Close": 924.9, "Volume": 1666861 }, + { "Date": "2017-08-27", "Open": 927.7, "High": 949.9, "Low": 927.7, "Close": 944.5, "Volume": 2212600 }, + { "Date": "2017-08-28", "Open": 941.4, "High": 950.7, "Low": 940.5, "Close": 949.5, "Volume": 1020312 }, + { "Date": "2017-08-29", "Open": 952.0, "High": 959.8, "Low": 951.5, "Close": 959.1, "Volume": 1580994 }, + { "Date": "2017-09-02", "Open": 960.0, "High": 962.5, "Low": 947.8, "Close": 953.3, "Volume": 1283444 }, + { "Date": "2017-09-03", "Open": 954.0, "High": 958.0, "Low": 949.1, "Close": 957.8, "Volume": 888346 }, + { "Date": "2017-09-04", "Open": 957.0, "High": 960.4, "Low": 950.7, "Close": 951.7, "Volume": 952391 }, + { "Date": "2017-09-05", "Open": 955.5, "High": 970.9, "Low": 955.2, "Close": 970.0, "Volume": 1213816 }, + { "Date": "2017-09-06", "Open": 966.7, "High": 979.5, "Low": 963.4, "Close": 978.9, "Volume": 1173882 }, + { "Date": "2017-09-09", "Open": 980.0, "High": 985.4, "Low": 976.1, "Close": 977.0, "Volume": 891355 }, + { "Date": "2017-09-10", "Open": 980.0, "High": 981.6, "Low": 966.1, "Close": 972.6, "Volume": 968362 }, + { "Date": "2017-09-11", "Open": 973.7, "High": 990.7, "Low": 972.3, "Close": 989.3, "Volume": 1693274 }, + { "Date": "2017-09-12", "Open": 987.5, "High": 994.1, "Low": 985.0, "Close": 987.8, "Volume": 1262793 }, + { "Date": "2017-09-13", "Open": 992.0, "High": 997.2, "Low": 989.0, "Close": 989.7, "Volume": 1169777 }, + { "Date": "2017-09-16", "Open": 992.1, "High": 993.9, "Low": 984.0, "Close": 992.0, "Volume": 910543 }, + { "Date": "2017-09-17", "Open": 990.3, "High": 996.4, "Low": 988.6, "Close": 992.2, "Volume": 1290186 }, + { "Date": "2017-09-18", "Open": 991.8, "High": 996.7, "Low": 987.0, "Close": 992.8, "Volume": 1057581 }, + { "Date": "2017-09-19", "Open": 986.0, "High": 988.9, "Low": 978.4, "Close": 984.5, "Volume": 1313575 }, + { "Date": "2017-09-20", "Open": 989.4, "High": 991.0, "Low": 984.6, "Close": 988.2, "Volume": 1183186 }, + { "Date": "2017-09-23", "Open": 989.5, "High": 989.5, "Low": 966.1, "Close": 968.5, "Volume": 1478448 }, + { "Date": "2017-09-24", "Open": 970.0, "High": 972.2, "Low": 961.0, "Close": 970.5, "Volume": 1212153 }, + { "Date": "2017-09-25", "Open": 968.4, "High": 976.1, "Low": 960.5, "Close": 973.3, "Volume": 1211262 }, + { "Date": "2017-09-26", "Open": 980.0, "High": 987.6, "Low": 972.2, "Close": 972.6, "Volume": 2042149 }, + { "Date": "2017-09-27", "Open": 1009.2, "High": 1048.4, "Low": 1008.2, "Close": 1019.3, "Volume": 5167689 }, + { "Date": "2017-09-30", "Open": 1014.0, "High": 1025.0, "Low": 1007.5, "Close": 1017.1, "Volume": 2085062 }, + { "Date": "2017-09-31", "Open": 1015.2, "High": 1024.0, "Low": 1010.4, "Close": 1016.6, "Volume": 1331391 }, + { "Date": "2017-10-01", "Open": 1017.2, "High": 1029.7, "Low": 1017.0, "Close": 1025.5, "Volume": 1373444 }, + { "Date": "2017-10-02", "Open": 1021.8, "High": 1028.1, "Low": 1013.0, "Close": 1025.6, "Volume": 1048970 }, + { "Date": "2017-10-03", "Open": 1022.1, "High": 1032.7, "Low": 1020.3, "Close": 1032.5, "Volume": 1076350 }, + { "Date": "2017-10-06", "Open": 1029.0, "High": 1034.9, "Low": 1025.0, "Close": 1025.9, "Volume": 1125185 }, + { "Date": "2017-10-07", "Open": 1027.3, "High": 1034.0, "Low": 1025.1, "Close": 1033.3, "Volume": 1112331 }, + { "Date": "2017-10-08", "Open": 1030.5, "High": 1043.5, "Low": 1028.5, "Close": 1039.8, "Volume": 1088716 }, + { "Date": "2017-10-09", "Open": 1034.0, "High": 1034.0, "Low": 1019.7, "Close": 1031.3, "Volume": 1245246 }, + { "Date": "2017-10-10", "Open": 1026.5, "High": 1030.8, "Low": 1025.3, "Close": 1028.1, "Volume": 720676 }, + { "Date": "2017-10-13", "Open": 1023.4, "High": 1031.6, "Low": 1022.6, "Close": 1025.8, "Volume": 885779 }, + { "Date": "2017-10-14", "Open": 1022.6, "High": 1026.8, "Low": 1014.1, "Close": 1026.0, "Volume": 959222 }, + { "Date": "2017-10-15", "Open": 1019.2, "High": 1024.1, "Low": 1015.4, "Close": 1020.9, "Volume": 853992 }, + { "Date": "2017-10-16", "Open": 1022.5, "High": 1035.9, "Low": 1022.5, "Close": 1032.5, "Volume": 1129688 }, + { "Date": "2017-10-17", "Open": 1034.0, "High": 1034.4, "Low": 1017.8, "Close": 1019.1, "Volume": 1397064 }, + { "Date": "2017-10-20", "Open": 1020.3, "High": 1022.6, "Low": 1017.5, "Close": 1018.4, "Volume": 953470 }, + { "Date": "2017-10-21", "Open": 1023.3, "High": 1035.1, "Low": 1022.7, "Close": 1034.5, "Volume": 1096999 }, + { "Date": "2017-10-22", "Open": 1035.0, "High": 1039.7, "Low": 1031.4, "Close": 1036.0, "Volume": 746878 }, + { "Date": "2017-10-24", "Open": 1035.9, "High": 1043.2, "Low": 1035.0, "Close": 1040.6, "Volume": 536996 }, + { "Date": "2017-10-27", "Open": 1040.0, "High": 1055.5, "Low": 1038.4, "Close": 1054.2, "Volume": 1307881 }, + { "Date": "2017-10-28", "Open": 1055.1, "High": 1062.4, "Low": 1040.0, "Close": 1047.4, "Volume": 1424394 }, + { "Date": "2017-10-29", "Open": 1042.7, "High": 1044.1, "Low": 1015.6, "Close": 1021.7, "Volume": 2459426 }, + { "Date": "2017-10-30", "Open": 1022.4, "High": 1028.5, "Low": 1015.0, "Close": 1021.4, "Volume": 1724031 }, + { "Date": "2017-11-01", "Open": 1015.8, "High": 1022.5, "Low": 1002.0, "Close": 1010.2, "Volume": 1909566 }, + { "Date": "2017-11-04", "Open": 1012.7, "High": 1016.1, "Low": 995.6, "Close": 998.7, "Volume": 1906439 }, + { "Date": "2017-11-05", "Open": 995.9, "High": 1020.6, "Low": 988.3, "Close": 1005.1, "Volume": 2067318 }, + { "Date": "2017-11-06", "Open": 1001.5, "High": 1025.0, "Low": 1001.1, "Close": 1018.4, "Volume": 1271964 }, + { "Date": "2017-11-07", "Open": 1020.4, "High": 1034.2, "Low": 1018.1, "Close": 1030.9, "Volume": 1458242 }, + { "Date": "2017-11-08", "Open": 1037.5, "High": 1042.0, "Low": 1032.5, "Close": 1037.0, "Volume": 1290774 }, + { "Date": "2017-11-11", "Open": 1035.5, "High": 1043.8, "Low": 1032.0, "Close": 1041.1, "Volume": 1192838 }, + { "Date": "2017-11-12", "Open": 1039.6, "High": 1050.3, "Low": 1033.7, "Close": 1040.5, "Volume": 1279659 }, + { "Date": "2017-11-13", "Open": 1046.1, "High": 1046.7, "Low": 1038.4, "Close": 1040.6, "Volume": 1282677 }, + { "Date": "2017-11-14", "Open": 1045.0, "High": 1058.5, "Low": 1043.1, "Close": 1049.2, "Volume": 1558835 }, + { "Date": "2017-11-15", "Open": 1054.6, "High": 1067.6, "Low": 1049.5, "Close": 1064.2, "Volume": 3275931 }, + { "Date": "2017-11-18", "Open": 1066.1, "High": 1078.5, "Low": 1062.0, "Close": 1077.1, "Volume": 1554552 }, + { "Date": "2017-11-19", "Open": 1075.2, "High": 1076.8, "Low": 1063.5, "Close": 1070.7, "Volume": 1338725 }, + { "Date": "2017-11-20", "Open": 1071.8, "High": 1073.4, "Low": 1061.5, "Close": 1065.0, "Volume": 1268582 }, + { "Date": "2017-11-21", "Open": 1065.0, "High": 1069.3, "Low": 1061.8, "Close": 1063.6, "Volume": 995703 }, + { "Date": "2017-11-22", "Open": 1061.1, "High": 1064.2, "Low": 1059.4, "Close": 1060.1, "Volume": 755095 }, + { "Date": "2017-11-26", "Open": 1058.1, "High": 1060.1, "Low": 1050.2, "Close": 1056.7, "Volume": 761237 }, + { "Date": "2017-11-27", "Open": 1057.4, "High": 1058.4, "Low": 1048.0, "Close": 1049.4, "Volume": 1271911 }, + { "Date": "2017-11-28", "Open": 1051.6, "High": 1054.8, "Low": 1044.8, "Close": 1048.1, "Volume": 837121 }, + { "Date": "2017-11-29", "Open": 1046.7, "High": 1049.7, "Low": 1044.9, "Close": 1046.4, "Volume": 887511 }, + { "Date": "2018-00-02", "Open": 1048.3, "High": 1066.9, "Low": 1045.2, "Close": 1065.0, "Volume": 1237564 }, + { "Date": "2018-00-03", "Open": 1064.3, "High": 1086.3, "Low": 1063.2, "Close": 1082.5, "Volume": 1430170 }, + { "Date": "2018-00-04", "Open": 1088.0, "High": 1093.6, "Low": 1084.0, "Close": 1086.4, "Volume": 1004605 }, + { "Date": "2018-00-05", "Open": 1094.0, "High": 1104.3, "Low": 1092.0, "Close": 1102.2, "Volume": 1279123 }, + { "Date": "2018-00-08", "Open": 1102.2, "High": 1111.3, "Low": 1101.6, "Close": 1106.9, "Volume": 1047603 }, + { "Date": "2018-00-09", "Open": 1109.4, "High": 1110.6, "Low": 1101.2, "Close": 1106.3, "Volume": 902541 }, + { "Date": "2018-00-10", "Open": 1097.1, "High": 1104.6, "Low": 1096.1, "Close": 1102.6, "Volume": 1042793 }, + { "Date": "2018-00-11", "Open": 1106.3, "High": 1106.5, "Low": 1099.6, "Close": 1105.5, "Volume": 978292 }, + { "Date": "2018-00-12", "Open": 1102.4, "High": 1124.3, "Low": 1101.2, "Close": 1122.3, "Volume": 1720533 }, + { "Date": "2018-00-16", "Open": 1132.5, "High": 1139.9, "Low": 1117.8, "Close": 1121.8, "Volume": 1575261 }, + { "Date": "2018-00-17", "Open": 1126.2, "High": 1132.6, "Low": 1117.0, "Close": 1132.0, "Volume": 1202639 }, + { "Date": "2018-00-18", "Open": 1131.4, "High": 1132.5, "Low": 1117.5, "Close": 1129.8, "Volume": 1198234 }, + { "Date": "2018-00-19", "Open": 1131.8, "High": 1137.9, "Low": 1128.3, "Close": 1137.5, "Volume": 1778229 }, + { "Date": "2018-00-22", "Open": 1137.5, "High": 1159.9, "Low": 1135.1, "Close": 1155.8, "Volume": 1617975 }, + { "Date": "2018-00-23", "Open": 1159.8, "High": 1171.6, "Low": 1158.8, "Close": 1170.0, "Volume": 1333056 }, + { "Date": "2018-00-24", "Open": 1177.3, "High": 1179.9, "Low": 1161.0, "Close": 1164.2, "Volume": 1416625 }, + { "Date": "2018-00-25", "Open": 1172.5, "High": 1175.9, "Low": 1162.8, "Close": 1170.4, "Volume": 1480540 }, + { "Date": "2018-00-26", "Open": 1175.1, "High": 1175.8, "Low": 1158.1, "Close": 1175.8, "Volume": 2018755 }, + { "Date": "2018-00-29", "Open": 1176.5, "High": 1186.9, "Low": 1172.0, "Close": 1175.6, "Volume": 1378913 }, + { "Date": "2018-00-30", "Open": 1167.8, "High": 1176.5, "Low": 1163.5, "Close": 1163.7, "Volume": 1556346 }, + { "Date": "2018-00-31", "Open": 1170.6, "High": 1173.0, "Low": 1159.1, "Close": 1169.9, "Volume": 1538688 }]; + let stockItems: StockItem[] = []; + for (let json of jsonData) { + let parts = json.Date.split("-"); + let item = new StockItem(); + item.date = new Date(parseInt(parts[0]), parseInt(parts[1]) - 1, parseInt(parts[2]), 13, 0, 0); + item.open = json.Open; + item.high = json.High; + item.low = json.Low; + item.close = json.Close; + item.volume = json.Volume; + stockItems.push(item); + } + this.push(...stockItems); + } } -export class StockGoogle extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new StockGoogleItem( - { - date: `2014-03-01`, - open: 559.6, - high: 568.2, - low: 558.4, - close: 566.9, - volume: 2182626 - }), - new StockGoogleItem( - { - date: `2014-03-02`, - open: 562.4, - high: 571.8, - low: 561.4, - close: 567, - volume: 2088804 - }), - new StockGoogleItem( - { - date: `2014-03-03`, - open: 569.9, - high: 587.3, - low: 564.1, - close: 569.7, - volume: 5087530 - }), - new StockGoogleItem( - { - date: `2014-03-04`, - open: 574.6, - high: 577.8, - low: 543, - close: 543.1, - volume: 6377658 - }), - new StockGoogleItem( - { - date: `2014-03-07`, - open: 540.7, - high: 548.5, - low: 527.1, - close: 538.1, - volume: 4389569 - }), - new StockGoogleItem( - { - date: `2014-03-08`, - open: 542.6, - high: 555, - low: 541.6, - close: 554.9, - volume: 3152406 - }), - new StockGoogleItem( - { - date: `2014-03-09`, - open: 559.6, - high: 565.4, - low: 553, - close: 564.1, - volume: 3324742 - }), - new StockGoogleItem( - { - date: `2014-03-10`, - open: 565, - high: 565, - low: 539.9, - close: 541, - volume: 4027743 - }), - new StockGoogleItem( - { - date: `2014-03-11`, - open: 532.5, - high: 540, - low: 526.5, - close: 530.6, - volume: 3916171 - }), - new StockGoogleItem( - { - date: `2014-03-14`, - open: 538.3, - high: 544.1, - low: 529.6, - close: 532.5, - volume: 2568020 - }), - new StockGoogleItem( - { - date: `2014-03-15`, - open: 536.8, - high: 538.5, - low: 518.5, - close: 536.4, - volume: 3847453 - }), - new StockGoogleItem( - { - date: `2014-03-16`, - open: 543, - high: 557, - low: 540, - close: 556.5, - volume: 4879889 - }), - new StockGoogleItem( - { - date: `2014-03-17`, - open: 548.8, - high: 549.5, - low: 531.1, - close: 536.1, - volume: 6795393 - }), - new StockGoogleItem( - { - date: `2014-03-21`, - open: 536.1, - high: 536.7, - low: 525.6, - close: 528.6, - volume: 2561214 - }), - new StockGoogleItem( - { - date: `2014-03-22`, - open: 528.6, - high: 537.2, - low: 527.5, - close: 534.8, - volume: 2359421 - }), - new StockGoogleItem( - { - date: `2014-03-23`, - open: 533.8, - high: 533.9, - low: 526.3, - close: 526.9, - volume: 2051066 - }), - new StockGoogleItem( - { - date: `2014-03-24`, - open: 530.1, - high: 531.6, - low: 522.1, - close: 525.2, - volume: 1881965 - }), - new StockGoogleItem( - { - date: `2014-03-25`, - open: 522.5, - high: 524.7, - low: 515.4, - close: 516.2, - volume: 2097264 - }), - new StockGoogleItem( - { - date: `2014-03-28`, - open: 517.2, - high: 518.6, - low: 502.8, - close: 517.1, - volume: 3326429 - }), - new StockGoogleItem( - { - date: `2014-03-29`, - open: 516.9, - high: 529.5, - low: 516.3, - close: 527.7, - volume: 2692489 - }), - new StockGoogleItem( - { - date: `2014-03-30`, - open: 527.6, - high: 528, - low: 522.5, - close: 526.7, - volume: 1746904 - }), - new StockGoogleItem( - { - date: `2014-04-01`, - open: 527.1, - high: 532.9, - low: 523.9, - close: 531.4, - volume: 1900432 - }), - new StockGoogleItem( - { - date: `2014-04-02`, - open: 533.8, - high: 534, - low: 525.6, - close: 527.9, - volume: 1685042 - }), - new StockGoogleItem( - { - date: `2014-04-05`, - open: 524.8, - high: 528.9, - low: 521.3, - close: 527.8, - volume: 1021408 - }), - new StockGoogleItem( - { - date: `2014-04-06`, - open: 525.2, - high: 526.8, - low: 515.1, - close: 515.1, - volume: 1684381 - }), - new StockGoogleItem( - { - date: `2014-04-07`, - open: 515.8, - high: 516.7, - low: 503.3, - close: 510, - volume: 3216077 - }), - new StockGoogleItem( - { - date: `2014-04-08`, - open: 508.5, - high: 517.2, - low: 506.4, - close: 511, - volume: 2016131 - }), - new StockGoogleItem( - { - date: `2014-04-09`, - open: 510.8, - high: 519.9, - low: 504.2, - close: 518.7, - volume: 2432783 - }), - new StockGoogleItem( - { - date: `2014-04-12`, - open: 523.5, - high: 530.2, - low: 519, - close: 529.9, - volume: 1908392 - }), - new StockGoogleItem( - { - date: `2014-04-13`, - open: 530.9, - high: 536.1, - low: 529.5, - close: 533.1, - volume: 1648907 - }), - new StockGoogleItem( - { - date: `2014-04-14`, - open: 533, - high: 533, - low: 525.3, - close: 526.6, - volume: 1191863 - }), - new StockGoogleItem( - { - date: `2014-04-15`, - open: 525.7, - high: 525.9, - low: 517.4, - close: 520, - volume: 1703758 - }), - new StockGoogleItem( - { - date: `2014-04-16`, - open: 521.4, - high: 521.8, - low: 515.4, - close: 520.6, - volume: 1481688 - }), - new StockGoogleItem( - { - date: `2014-04-19`, - open: 519.7, - high: 529.8, - low: 517.6, - close: 528.9, - volume: 1276362 - }), - new StockGoogleItem( - { - date: `2014-04-20`, - open: 529.7, - high: 536.2, - low: 526.3, - close: 529.8, - volume: 1780113 - }), - new StockGoogleItem( - { - date: `2014-04-21`, - open: 532.9, - high: 539.2, - low: 531.9, - close: 538.9, - volume: 1193389 - }), - new StockGoogleItem( - { - date: `2014-04-22`, - open: 541.1, - high: 547.6, - low: 540.8, - close: 545.1, - volume: 1611837 - }), - new StockGoogleItem( - { - date: `2014-04-23`, - open: 547.3, - high: 553.6, - low: 543.7, - close: 552.7, - volume: 1929632 - }), - new StockGoogleItem( - { - date: `2014-04-27`, - open: 556, - high: 566, - low: 554.4, - close: 566, - volume: 2100298 - }), - new StockGoogleItem( - { - date: `2014-04-28`, - open: 564.6, - high: 567.8, - low: 561, - close: 561.7, - volume: 1647717 - }), - new StockGoogleItem( - { - date: `2014-04-29`, - open: 563.4, - high: 564, - low: 558.7, - close: 560.1, - volume: 1350657 - }), - new StockGoogleItem( - { - date: `2014-04-30`, - open: 560.8, - high: 561.4, - low: 555.9, - close: 559.9, - volume: 1766794 - }), - new StockGoogleItem( - { - date: `2014-05-02`, - open: 560.7, - high: 560.9, - low: 545.7, - close: 553.9, - volume: 1434989 - }), - new StockGoogleItem( - { - date: `2014-05-03`, - open: 551, - high: 552.3, - low: 542.5, - close: 544.9, - volume: 1861921 - }), - new StockGoogleItem( - { - date: `2014-05-04`, - open: 541.5, - high: 548.6, - low: 538.8, - close: 544.7, - volume: 1812084 - }), - new StockGoogleItem( - { - date: `2014-05-05`, - open: 546.4, - high: 555, - low: 544.5, - close: 553.9, - volume: 1684886 - }), - new StockGoogleItem( - { - date: `2014-05-06`, - open: 558.1, - high: 558.1, - low: 548.9, - close: 556.3, - volume: 1732592 - }), - new StockGoogleItem( - { - date: `2014-05-09`, - open: 557.1, - high: 562.9, - low: 556, - close: 562.1, - volume: 1463676 - }), - new StockGoogleItem( - { - date: `2014-05-10`, - open: 560.5, - high: 563.6, - low: 557.9, - close: 560.5, - volume: 1349444 - }), - new StockGoogleItem( - { - date: `2014-05-11`, - open: 558, - high: 559.9, - low: 555, - close: 558.8, - volume: 1097380 - }), - new StockGoogleItem( - { - date: `2014-05-12`, - open: 557.3, - high: 558, - low: 548.5, - close: 551.4, - volume: 1457104 - }), - new StockGoogleItem( - { - date: `2014-05-13`, - open: 552.3, - high: 552.3, - low: 545.6, - close: 551.8, - volume: 1217176 - }), - new StockGoogleItem( - { - date: `2014-05-16`, - open: 549.3, - high: 549.6, - low: 541.5, - close: 544.3, - volume: 1704027 - }), - new StockGoogleItem( - { - date: `2014-05-17`, - open: 544.2, - high: 545.3, - low: 539.3, - close: 543, - volume: 1445878 - }), - new StockGoogleItem( - { - date: `2014-05-18`, - open: 544.9, - high: 553.6, - low: 544, - close: 553.4, - volume: 1737343 - }), - new StockGoogleItem( - { - date: `2014-05-19`, - open: 554.2, - high: 555, - low: 548.5, - close: 554.9, - volume: 2451341 - }), - new StockGoogleItem( - { - date: `2014-05-20`, - open: 556.9, - high: 557.6, - low: 550.4, - close: 556.4, - volume: 4496962 - }), - new StockGoogleItem( - { - date: `2014-05-23`, - open: 555.1, - high: 565, - low: 554.3, - close: 565, - volume: 1534659 - }), - new StockGoogleItem( - { - date: `2014-05-24`, - open: 565.2, - high: 572.6, - low: 561, - close: 564.6, - volume: 2201789 - }), - new StockGoogleItem( - { - date: `2014-05-25`, - open: 565.3, - high: 580, - low: 565.2, - close: 578.6, - volume: 1964447 - }), - new StockGoogleItem( - { - date: `2014-05-26`, - open: 581, - high: 582.5, - low: 571.9, - close: 576, - volume: 1737210 - }), - new StockGoogleItem( - { - date: `2014-05-27`, - open: 577.2, - high: 579.9, - low: 573.8, - close: 577.2, - volume: 2231174 - }), - new StockGoogleItem( - { - date: `2014-05-30`, - open: 578.7, - high: 579.6, - low: 574.8, - close: 575.3, - volume: 1310909 - }), - new StockGoogleItem( - { - date: `2014-06-01`, - open: 578.3, - high: 584.4, - low: 576.6, - close: 582.7, - volume: 1446309 - }), - new StockGoogleItem( - { - date: `2014-06-02`, - open: 583.4, - high: 585.4, - low: 580.4, - close: 582.3, - volume: 1054936 - }), - new StockGoogleItem( - { - date: `2014-06-03`, - open: 583.4, - high: 585, - low: 580.9, - close: 584.7, - volume: 712210 - }), - new StockGoogleItem( - { - date: `2014-06-07`, - open: 583.8, - high: 586.4, - low: 579.6, - close: 582.3, - volume: 1061833 - }), - new StockGoogleItem( - { - date: `2014-06-08`, - open: 577.7, - high: 579.5, - low: 566.1, - close: 571.1, - volume: 1908647 - }), - new StockGoogleItem( - { - date: `2014-06-09`, - open: 571.6, - high: 576.7, - low: 569.4, - close: 576.1, - volume: 1113907 - }), - new StockGoogleItem( - { - date: `2014-06-10`, - open: 565.9, - high: 576.6, - low: 565, - close: 571.1, - volume: 1353317 - }), - new StockGoogleItem( - { - date: `2014-06-11`, - open: 571.9, - high: 580.9, - low: 571.4, - close: 579.2, - volume: 1617569 - }), - new StockGoogleItem( - { - date: `2014-06-14`, - open: 582.6, - high: 585.2, - low: 578, - close: 584.9, - volume: 1852290 - }), - new StockGoogleItem( - { - date: `2014-06-15`, - open: 585.7, - high: 585.8, - low: 576.6, - close: 584.8, - volume: 1618815 - }), - new StockGoogleItem( - { - date: `2014-06-16`, - open: 588, - high: 588.4, - low: 582.2, - close: 582.7, - volume: 1394560 - }), - new StockGoogleItem( - { - date: `2014-06-17`, - open: 579.5, - high: 581, - low: 568.6, - close: 573.7, - volume: 3015475 - }), - new StockGoogleItem( - { - date: `2014-06-18`, - open: 593, - high: 596.8, - low: 582, - close: 595.1, - volume: 4006389 - }), - new StockGoogleItem( - { - date: `2014-06-21`, - open: 591.8, - high: 594.4, - low: 585.2, - close: 589.5, - volume: 2060334 - }), - new StockGoogleItem( - { - date: `2014-06-22`, - open: 590.7, - high: 599.6, - low: 590.6, - close: 594.7, - volume: 1694787 - }), - new StockGoogleItem( - { - date: `2014-06-23`, - open: 593.2, - high: 597.9, - low: 592.5, - close: 596, - volume: 1229846 - }), - new StockGoogleItem( - { - date: `2014-06-24`, - open: 596.5, - high: 599.5, - low: 591.8, - close: 593.4, - volume: 1033341 - }), - new StockGoogleItem( - { - date: `2014-06-25`, - open: 590.4, - high: 591.9, - low: 587, - close: 589, - volume: 932724 - }), - new StockGoogleItem( - { - date: `2014-06-28`, - open: 588.1, - high: 592.5, - low: 584.8, - close: 590.6, - volume: 984161 - }), - new StockGoogleItem( - { - date: `2014-06-29`, - open: 588.8, - high: 589.7, - low: 583.5, - close: 585.6, - volume: 1346647 - }), - new StockGoogleItem( - { - date: `2014-06-30`, - open: 586.5, - high: 589.5, - low: 584, - close: 587.4, - volume: 1013932 - }), - new StockGoogleItem( - { - date: `2014-06-31`, - open: 580.6, - high: 583.6, - low: 570, - close: 571.6, - volume: 2099516 - }), - new StockGoogleItem( - { - date: `2014-07-01`, - open: 570.4, - high: 576, - low: 562.9, - close: 566.1, - volume: 1950171 - }), - new StockGoogleItem( - { - date: `2014-07-04`, - open: 569, - high: 575.4, - low: 564.1, - close: 573.1, - volume: 1427169 - }), - new StockGoogleItem( - { - date: `2014-07-05`, - open: 570, - high: 572, - low: 562.6, - close: 565.1, - volume: 1556685 - }), - new StockGoogleItem( - { - date: `2014-07-06`, - open: 561.8, - high: 570.7, - low: 560, - close: 566.4, - volume: 1330877 - }), - new StockGoogleItem( - { - date: `2014-07-07`, - open: 568, - high: 569.9, - low: 561.1, - close: 563.4, - volume: 1108900 - }), - new StockGoogleItem( - { - date: `2014-07-08`, - open: 563.6, - high: 570.3, - low: 560.4, - close: 568.8, - volume: 1492491 - }), - new StockGoogleItem( - { - date: `2014-07-11`, - open: 570, - high: 570.5, - low: 566, - close: 567.9, - volume: 1215968 - }), - new StockGoogleItem( - { - date: `2014-07-12`, - open: 564.5, - high: 565.9, - low: 560.9, - close: 562.7, - volume: 1537758 - }), - new StockGoogleItem( - { - date: `2014-07-13`, - open: 567.3, - high: 575, - low: 565.8, - close: 574.8, - volume: 1437922 - }), - new StockGoogleItem( - { - date: `2014-07-14`, - open: 576.2, - high: 577.9, - low: 570.9, - close: 574.6, - volume: 982926 - }), - new StockGoogleItem( - { - date: `2014-07-15`, - open: 577.9, - high: 579.4, - low: 570.5, - close: 573.5, - volume: 1517056 - }), - new StockGoogleItem( - { - date: `2014-07-18`, - open: 576.1, - high: 584.5, - low: 576, - close: 582.2, - volume: 1282531 - }), - new StockGoogleItem( - { - date: `2014-07-19`, - open: 585, - high: 587.3, - low: 584, - close: 586.9, - volume: 979298 - }), - new StockGoogleItem( - { - date: `2014-07-20`, - open: 585.9, - high: 586.7, - low: 582.6, - close: 584.5, - volume: 1034779 - }), - new StockGoogleItem( - { - date: `2014-07-21`, - open: 583.8, - high: 584.5, - low: 581.1, - close: 583.4, - volume: 912854 - }), - new StockGoogleItem( - { - date: `2014-07-22`, - open: 583.6, - high: 585.2, - low: 580.6, - close: 582.6, - volume: 789484 - }), - new StockGoogleItem( - { - date: `2014-07-25`, - open: 584.7, - high: 585, - low: 579, - close: 580.2, - volume: 1358810 - }), - new StockGoogleItem( - { - date: `2014-07-26`, - open: 581.3, - high: 581.8, - low: 576.6, - close: 577.9, - volume: 1635465 - }), - new StockGoogleItem( - { - date: `2014-07-27`, - open: 577.3, - high: 578.5, - low: 570.1, - close: 571, - volume: 1700161 - }), - new StockGoogleItem( - { - date: `2014-07-28`, - open: 569.6, - high: 573.3, - low: 567.1, - close: 569.2, - volume: 1295963 - }), - new StockGoogleItem( - { - date: `2014-07-29`, - open: 571.3, - high: 572, - low: 567.1, - close: 571.6, - volume: 1081231 - }), - new StockGoogleItem( - { - date: `2014-08-02`, - open: 571.9, - high: 577.8, - low: 571.2, - close: 577.3, - volume: 1576830 - }), - new StockGoogleItem( - { - date: `2014-08-03`, - open: 580, - high: 583, - low: 575, - close: 577.9, - volume: 1214586 - }), - new StockGoogleItem( - { - date: `2014-08-04`, - open: 580, - high: 586, - low: 579.2, - close: 582, - volume: 1459956 - }), - new StockGoogleItem( - { - date: `2014-08-05`, - open: 584, - high: 586.5, - low: 582, - close: 586.1, - volume: 1629477 - }), - new StockGoogleItem( - { - date: `2014-08-08`, - open: 586.6, - high: 591.8, - low: 586.3, - close: 589.7, - volume: 1429101 - }), - new StockGoogleItem( - { - date: `2014-08-09`, - open: 588.9, - high: 589, - low: 580, - close: 581, - volume: 1286722 - }), - new StockGoogleItem( - { - date: `2014-08-10`, - open: 581.5, - high: 583.5, - low: 576.9, - close: 583.1, - volume: 975145 - }), - new StockGoogleItem( - { - date: `2014-08-11`, - open: 580.4, - high: 581.8, - low: 576.3, - close: 581.4, - volume: 1217721 - }), - new StockGoogleItem( - { - date: `2014-08-12`, - open: 581, - high: 581.6, - low: 574.5, - close: 575.6, - volume: 1597677 - }), - new StockGoogleItem( - { - date: `2014-08-15`, - open: 572.9, - high: 575, - low: 568.2, - close: 573.1, - volume: 1596224 - }), - new StockGoogleItem( - { - date: `2014-08-16`, - open: 572.8, - high: 581.5, - low: 572.7, - close: 580, - volume: 1478306 - }), - new StockGoogleItem( - { - date: `2014-08-17`, - open: 580, - high: 587.5, - low: 578.8, - close: 584.8, - volume: 1690994 - }), - new StockGoogleItem( - { - date: `2014-08-18`, - open: 587, - high: 589.5, - low: 585, - close: 589.3, - volume: 1442012 - }), - new StockGoogleItem( - { - date: `2014-08-19`, - open: 591.5, - high: 596.5, - low: 589.5, - close: 596.1, - volume: 3727045 - }), - new StockGoogleItem( - { - date: `2014-08-22`, - open: 593.8, - high: 594, - low: 583.5, - close: 587.4, - volume: 1687710 - }), - new StockGoogleItem( - { - date: `2014-08-23`, - open: 586.9, - high: 586.9, - low: 581, - close: 581.1, - volume: 1467703 - }), - new StockGoogleItem( - { - date: `2014-08-24`, - open: 581.5, - high: 589.6, - low: 580.5, - close: 588, - volume: 1724537 - }), - new StockGoogleItem( - { - date: `2014-08-25`, - open: 587.5, - high: 588, - low: 574.2, - close: 575.1, - volume: 1925350 - }), - new StockGoogleItem( - { - date: `2014-08-26`, - open: 576.1, - high: 579.3, - low: 574.7, - close: 577.1, - volume: 1439807 - }), - new StockGoogleItem( - { - date: `2014-08-29`, - open: 571.8, - high: 578.2, - low: 571.2, - close: 576.4, - volume: 1281204 - }), - new StockGoogleItem( - { - date: `2014-08-30`, - open: 576.9, - high: 579.9, - low: 572.9, - close: 577.4, - volume: 1618437 - }), - new StockGoogleItem( - { - date: `2014-09-01`, - open: 576, - high: 577.6, - low: 567, - close: 568.3, - volume: 1445027 - }), - new StockGoogleItem( - { - date: `2014-09-02`, - open: 567.3, - high: 571.9, - low: 563.3, - close: 570.1, - volume: 1175307 - }), - new StockGoogleItem( - { - date: `2014-09-03`, - open: 573, - high: 577.2, - low: 572.5, - close: 575.3, - volume: 1138636 - }), - new StockGoogleItem( - { - date: `2014-09-06`, - open: 578.8, - high: 581, - low: 574.4, - close: 577.4, - volume: 1211320 - }), - new StockGoogleItem( - { - date: `2014-09-07`, - open: 574.4, - high: 575.3, - low: 563.7, - close: 563.7, - volume: 1906427 - }), - new StockGoogleItem( - { - date: `2014-09-08`, - open: 565.6, - high: 573.9, - low: 557.5, - close: 572.5, - volume: 1987888 - }), - new StockGoogleItem( - { - date: `2014-09-09`, - open: 571.2, - high: 571.5, - low: 559.1, - close: 560.9, - volume: 2519693 - }), - new StockGoogleItem( - { - date: `2014-09-10`, - open: 557.7, - high: 565.1, - low: 544, - close: 544.5, - volume: 3078634 - }), - new StockGoogleItem( - { - date: `2014-09-13`, - open: 545, - high: 549.5, - low: 533.1, - close: 533.2, - volume: 2578676 - }), - new StockGoogleItem( - { - date: `2014-09-14`, - open: 538.9, - high: 547.2, - low: 533.2, - close: 537.9, - volume: 2217230 - }), - new StockGoogleItem( - { - date: `2014-09-15`, - open: 531, - high: 532.8, - low: 518.3, - close: 530, - volume: 3712536 - }), - new StockGoogleItem( - { - date: `2014-09-16`, - open: 519, - high: 529.4, - low: 515, - close: 524.5, - volume: 3698423 - }), - new StockGoogleItem( - { - date: `2014-09-17`, - open: 527.3, - high: 531, - low: 508.5, - close: 511.2, - volume: 5530674 - }), - new StockGoogleItem( - { - date: `2014-09-20`, - open: 509.4, - high: 521.8, - low: 508.1, - close: 520.8, - volume: 2605505 - }), - new StockGoogleItem( - { - date: `2014-09-21`, - open: 525.2, - high: 526.8, - low: 519.1, - close: 526.5, - volume: 2332531 - }), - new StockGoogleItem( - { - date: `2014-09-22`, - open: 529.9, - high: 539.8, - low: 528.8, - close: 532.7, - volume: 2917183 - }), - new StockGoogleItem( - { - date: `2014-09-23`, - open: 539.3, - high: 547.2, - low: 535.9, - close: 544, - volume: 2345296 - }), - new StockGoogleItem( - { - date: `2014-09-24`, - open: 544.4, - high: 544.9, - low: 535.8, - close: 539.8, - volume: 1972047 - }), - new StockGoogleItem( - { - date: `2014-09-27`, - open: 537, - high: 544.4, - low: 537, - close: 540.8, - volume: 1184973 - }), - new StockGoogleItem( - { - date: `2014-09-28`, - open: 543, - high: 549, - low: 541.6, - close: 548.9, - volume: 1273372 - }), - new StockGoogleItem( - { - date: `2014-09-29`, - open: 550, - high: 554.2, - low: 547, - close: 549.3, - volume: 1767107 - }), - new StockGoogleItem( - { - date: `2014-09-30`, - open: 549, - high: 552.8, - low: 543.5, - close: 550.3, - volume: 1451667 - }), - new StockGoogleItem( - { - date: `2014-09-31`, - open: 559.4, - high: 559.6, - low: 554.8, - close: 559.1, - volume: 2032887 - }), - new StockGoogleItem( - { - date: `2014-10-03`, - open: 555.5, - high: 557.9, - low: 553.2, - close: 555.2, - volume: 1378511 - }), - new StockGoogleItem( - { - date: `2014-10-04`, - open: 553, - high: 555.5, - low: 549.3, - close: 554.1, - volume: 1240761 - }), - new StockGoogleItem( - { - date: `2014-10-05`, - open: 556.8, - high: 556.8, - low: 544, - close: 545.9, - volume: 2026740 - }), - new StockGoogleItem( - { - date: `2014-10-06`, - open: 545.5, - high: 546.9, - low: 541, - close: 542, - volume: 1329604 - }), - new StockGoogleItem( - { - date: `2014-10-07`, - open: 546.2, - high: 546.2, - low: 538.7, - close: 541, - volume: 1629259 - }), - new StockGoogleItem( - { - date: `2014-10-10`, - open: 541.5, - high: 549.6, - low: 541, - close: 547.5, - volume: 1131546 - }), - new StockGoogleItem( - { - date: `2014-10-11`, - open: 548.5, - high: 551.9, - low: 546.3, - close: 550.3, - volume: 964866 - }), - new StockGoogleItem( - { - date: `2014-10-12`, - open: 550.4, - high: 550.5, - low: 545.2, - close: 547.3, - volume: 1126594 - }), - new StockGoogleItem( - { - date: `2014-10-13`, - open: 549.8, - high: 549.8, - low: 543.5, - close: 545.4, - volume: 1335719 - }), - new StockGoogleItem( - { - date: `2014-10-14`, - open: 546.7, - high: 546.7, - low: 542.1, - close: 544.4, - volume: 1285991 - }), - new StockGoogleItem( - { - date: `2014-10-17`, - open: 543.6, - high: 543.8, - low: 534.1, - close: 536.5, - volume: 1721282 - }), - new StockGoogleItem( - { - date: `2014-10-18`, - open: 537.5, - high: 541.9, - low: 534.2, - close: 535, - volume: 1957664 - }), - new StockGoogleItem( - { - date: `2014-10-19`, - open: 535, - high: 538.2, - low: 530.1, - close: 537, - volume: 1388440 - }), - new StockGoogleItem( - { - date: `2014-10-20`, - open: 531.3, - high: 535.1, - low: 531.1, - close: 534.8, - volume: 1559131 - }), - new StockGoogleItem( - { - date: `2014-10-21`, - open: 541.6, - high: 542.1, - low: 536.6, - close: 537.5, - volume: 2218249 - }), - new StockGoogleItem( - { - date: `2014-10-24`, - open: 537.6, - high: 542.7, - low: 535.6, - close: 539.3, - volume: 1701682 - }), - new StockGoogleItem( - { - date: `2014-10-25`, - open: 539, - high: 544, - low: 538.6, - close: 541.1, - volume: 1784967 - }), - new StockGoogleItem( - { - date: `2014-10-26`, - open: 540.9, - high: 541.5, - low: 537, - close: 540.4, - volume: 1519503 - }), - new StockGoogleItem( - { - date: `2014-10-28`, - open: 540.6, - high: 542, - low: 536.6, - close: 541.8, - volume: 1145231 - }), - new StockGoogleItem( - { - date: `2014-11-01`, - open: 538.9, - high: 541.4, - low: 531.9, - close: 533.8, - volume: 2109599 - }), - new StockGoogleItem( - { - date: `2014-11-02`, - open: 533.5, - high: 535.5, - low: 529.8, - close: 533.8, - volume: 1522481 - }), - new StockGoogleItem( - { - date: `2014-11-03`, - open: 531.4, - high: 536, - low: 529.3, - close: 531.3, - volume: 1279288 - }), - new StockGoogleItem( - { - date: `2014-11-04`, - open: 531.2, - high: 537.3, - low: 528.6, - close: 537.3, - volume: 1392208 - }), - new StockGoogleItem( - { - date: `2014-11-05`, - open: 531, - high: 532.9, - low: 524.3, - close: 525.3, - volume: 2558649 - }), - new StockGoogleItem( - { - date: `2014-11-08`, - open: 527.1, - high: 531, - low: 523.8, - close: 527, - volume: 2327127 - }), - new StockGoogleItem( - { - date: `2014-11-09`, - open: 522.1, - high: 534.2, - low: 520.5, - close: 533.4, - volume: 1871268 - }), - new StockGoogleItem( - { - date: `2014-11-10`, - open: 533.1, - high: 536.3, - low: 525.6, - close: 526.1, - volume: 1716835 - }), - new StockGoogleItem( - { - date: `2014-11-11`, - open: 527.8, - high: 533.9, - low: 527.1, - close: 528.3, - volume: 1610964 - }), - new StockGoogleItem( - { - date: `2014-11-12`, - open: 523.5, - high: 528.5, - low: 518.7, - close: 518.7, - volume: 1989117 - }), - new StockGoogleItem( - { - date: `2014-11-15`, - open: 522.7, - high: 523.1, - low: 513.3, - close: 513.8, - volume: 2812786 - }), - new StockGoogleItem( - { - date: `2014-11-16`, - open: 511.6, - high: 513, - low: 489, - close: 495.4, - volume: 3953371 - }), - new StockGoogleItem( - { - date: `2014-11-17`, - open: 497, - high: 507, - low: 496.8, - close: 504.9, - volume: 2875281 - }), - new StockGoogleItem( - { - date: `2014-11-18`, - open: 513, - high: 513.9, - low: 504.7, - close: 511.1, - volume: 2918730 - }), - new StockGoogleItem( - { - date: `2014-11-19`, - open: 511.5, - high: 517.7, - low: 506.9, - close: 516.4, - volume: 3680148 - }), - new StockGoogleItem( - { - date: `2014-11-22`, - open: 516.1, - high: 526.5, - low: 516.1, - close: 524.9, - volume: 2723599 - }), - new StockGoogleItem( - { - date: `2014-11-23`, - open: 527, - high: 534.6, - low: 526.3, - close: 530.6, - volume: 2191567 - }), - new StockGoogleItem( - { - date: `2014-11-24`, - open: 530.5, - high: 531.8, - low: 527, - close: 528.8, - volume: 704035 - }), - new StockGoogleItem( - { - date: `2014-11-26`, - open: 528.8, - high: 534.3, - low: 527.3, - close: 534, - volume: 1037727 - }), - new StockGoogleItem( - { - date: `2014-11-29`, - open: 532.2, - high: 535.5, - low: 530, - close: 530.3, - volume: 2276104 - }), - new StockGoogleItem( - { - date: `2014-11-30`, - open: 528.1, - high: 531.1, - low: 527.1, - close: 530.4, - volume: 873923 - }), - new StockGoogleItem( - { - date: `2014-11-31`, - open: 531.3, - high: 532.6, - low: 525.8, - close: 526.4, - volume: 1371819 - }), - new StockGoogleItem( - { - date: `2015-00-02`, - open: 529, - high: 531.3, - low: 524.1, - close: 524.8, - volume: 1446662 - }), - new StockGoogleItem( - { - date: `2015-00-05`, - open: 523.3, - high: 524.3, - low: 513.1, - close: 513.9, - volume: 2054238 - }), - new StockGoogleItem( - { - date: `2015-00-06`, - open: 515, - high: 516.2, - low: 501.1, - close: 502, - volume: 2891950 - }), - new StockGoogleItem( - { - date: `2015-00-07`, - open: 507, - high: 507.2, - low: 499.6, - close: 501.1, - volume: 2059366 - }), - new StockGoogleItem( - { - date: `2015-00-08`, - open: 498, - high: 503.5, - low: 491, - close: 502.7, - volume: 3344395 - }), - new StockGoogleItem( - { - date: `2015-00-09`, - open: 504.8, - high: 504.9, - low: 494.8, - close: 496.2, - volume: 2065715 - }), - new StockGoogleItem( - { - date: `2015-00-12`, - open: 494.9, - high: 496, - low: 487.6, - close: 492.6, - volume: 2320446 - }), - new StockGoogleItem( - { - date: `2015-00-13`, - open: 498.8, - high: 503, - low: 492.4, - close: 496.2, - volume: 2365687 - }), - new StockGoogleItem( - { - date: `2015-00-14`, - open: 494.6, - high: 503.2, - low: 493, - close: 500.9, - volume: 2229638 - }), - new StockGoogleItem( - { - date: `2015-00-15`, - open: 505.6, - high: 505.7, - low: 497.8, - close: 501.8, - volume: 2711355 - }), - new StockGoogleItem( - { - date: `2015-00-16`, - open: 500, - high: 508.2, - low: 500, - close: 508.1, - volume: 2292043 - }), - new StockGoogleItem( - { - date: `2015-00-20`, - open: 511, - high: 512.5, - low: 506, - close: 506.9, - volume: 2225922 - }), - new StockGoogleItem( - { - date: `2015-00-21`, - open: 507.3, - high: 519.3, - low: 506.2, - close: 518, - volume: 2262455 - }), - new StockGoogleItem( - { - date: `2015-00-22`, - open: 521.5, - high: 536.3, - low: 519.7, - close: 534.4, - volume: 2669558 - }), - new StockGoogleItem( - { - date: `2015-00-23`, - open: 535.6, - high: 542.2, - low: 533, - close: 540, - volume: 2275485 - }), - new StockGoogleItem( - { - date: `2015-00-26`, - open: 538.5, - high: 539, - low: 529.7, - close: 535.2, - volume: 1539524 - }), - new StockGoogleItem( - { - date: `2015-00-27`, - open: 530, - high: 530.7, - low: 518.2, - close: 518.6, - volume: 1898844 - }), - new StockGoogleItem( - { - date: `2015-00-28`, - open: 522.8, - high: 523, - low: 510, - close: 510, - volume: 1679230 - }), - new StockGoogleItem( - { - date: `2015-00-29`, - open: 511, - high: 511.1, - low: 501.2, - close: 510.7, - volume: 4174924 - }), - new StockGoogleItem( - { - date: `2015-00-30`, - open: 515.9, - high: 539.9, - low: 515.5, - close: 534.5, - volume: 5590977 - }), - new StockGoogleItem( - { - date: `2015-01-02`, - open: 531.7, - high: 533, - low: 518.5, - close: 528.5, - volume: 2841976 - }), - new StockGoogleItem( - { - date: `2015-01-03`, - open: 528, - high: 533.4, - low: 523.3, - close: 529.2, - volume: 2033085 - }), - new StockGoogleItem( - { - date: `2015-01-04`, - open: 529.2, - high: 532.7, - low: 521.3, - close: 522.8, - volume: 1659125 - }), - new StockGoogleItem( - { - date: `2015-01-05`, - open: 523.8, - high: 528.5, - low: 522.1, - close: 527.6, - volume: 1844687 - }), - new StockGoogleItem( - { - date: `2015-01-06`, - open: 527.6, - high: 537.2, - low: 526.4, - close: 531, - volume: 1758650 - }), - new StockGoogleItem( - { - date: `2015-01-09`, - open: 528, - high: 532, - low: 526, - close: 527.8, - volume: 1264276 - }), - new StockGoogleItem( - { - date: `2015-01-10`, - open: 529.3, - high: 537.7, - low: 526.9, - close: 536.9, - volume: 1745076 - }), - new StockGoogleItem( - { - date: `2015-01-11`, - open: 535.3, - high: 538.5, - low: 533.4, - close: 536, - volume: 1373970 - }), - new StockGoogleItem( - { - date: `2015-01-12`, - open: 537.3, - high: 544.8, - low: 534.7, - close: 542.9, - volume: 1615824 - }), - new StockGoogleItem( - { - date: `2015-01-13`, - open: 543.4, - high: 549.9, - low: 543.1, - close: 549, - volume: 1895126 - }), - new StockGoogleItem( - { - date: `2015-01-17`, - open: 546.8, - high: 550, - low: 541.1, - close: 542.8, - volume: 1612439 - }), - new StockGoogleItem( - { - date: `2015-01-18`, - open: 541.4, - high: 545.5, - low: 537.5, - close: 539.7, - volume: 1449089 - }), - new StockGoogleItem( - { - date: `2015-01-19`, - open: 538, - high: 543.1, - low: 538, - close: 542.9, - volume: 987478 - }), - new StockGoogleItem( - { - date: `2015-01-20`, - open: 543.1, - high: 543.8, - low: 535.8, - close: 539, - volume: 1441212 - }), - new StockGoogleItem( - { - date: `2015-01-23`, - open: 536, - high: 536.4, - low: 529.4, - close: 531.9, - volume: 1453907 - }), - new StockGoogleItem( - { - date: `2015-01-24`, - open: 530, - high: 536.8, - low: 528.3, - close: 536.1, - volume: 1002393 - }), - new StockGoogleItem( - { - date: `2015-01-25`, - open: 535.9, - high: 546.2, - low: 535.4, - close: 543.9, - volume: 1821041 - }), - new StockGoogleItem( - { - date: `2015-01-26`, - open: 543.2, - high: 556.1, - low: 541.5, - close: 555.5, - volume: 2305219 - }), - new StockGoogleItem( - { - date: `2015-01-27`, - open: 554.2, - high: 564.7, - low: 552.9, - close: 558.4, - volume: 2403553 - }), - new StockGoogleItem( - { - date: `2015-02-02`, - open: 560.5, - high: 572.1, - low: 558.8, - close: 571.3, - volume: 2123796 - }), - new StockGoogleItem( - { - date: `2015-02-03`, - open: 570.5, - high: 575.4, - low: 566.5, - close: 573.6, - volume: 1700084 - }), - new StockGoogleItem( - { - date: `2015-02-04`, - open: 571.9, - high: 577.1, - low: 568, - close: 573.4, - volume: 1871694 - }), - new StockGoogleItem( - { - date: `2015-02-05`, - open: 575, - high: 577.9, - low: 573.4, - close: 575.3, - volume: 1385818 - }), - new StockGoogleItem( - { - date: `2015-02-06`, - open: 574.9, - high: 576.7, - low: 566.8, - close: 567.7, - volume: 1654561 - }), - new StockGoogleItem( - { - date: `2015-02-09`, - open: 566.9, - high: 570.3, - low: 563.5, - close: 568.9, - volume: 1059336 - }), - new StockGoogleItem( - { - date: `2015-02-10`, - open: 564.3, - high: 564.9, - low: 554.7, - close: 555, - volume: 1787357 - }), - new StockGoogleItem( - { - date: `2015-02-11`, - open: 555.1, - high: 558.1, - low: 550.7, - close: 551.2, - volume: 1815763 - }), - new StockGoogleItem( - { - date: `2015-02-12`, - open: 553.5, - high: 556.4, - low: 550.5, - close: 555.5, - volume: 1385772 - }), - new StockGoogleItem( - { - date: `2015-02-13`, - open: 553.5, - high: 558.4, - low: 544.2, - close: 547.3, - volume: 1698872 - }), - new StockGoogleItem( - { - date: `2015-02-16`, - open: 551, - high: 556.9, - low: 546, - close: 554.5, - volume: 1636493 - }), - new StockGoogleItem( - { - date: `2015-02-17`, - open: 551.7, - high: 553.8, - low: 548, - close: 550.8, - volume: 1800570 - }), - new StockGoogleItem( - { - date: `2015-02-18`, - open: 552.5, - high: 559.8, - low: 547, - close: 559.5, - volume: 2128714 - }), - new StockGoogleItem( - { - date: `2015-02-19`, - open: 559.4, - high: 560.8, - low: 556.1, - close: 558, - volume: 1194049 - }), - new StockGoogleItem( - { - date: `2015-02-20`, - open: 561.6, - high: 561.7, - low: 559, - close: 560.4, - volume: 2609690 - }), - new StockGoogleItem( - { - date: `2015-02-23`, - open: 560.4, - high: 562.4, - low: 555.8, - close: 558.8, - volume: 1639306 - }), - new StockGoogleItem( - { - date: `2015-02-24`, - open: 562.6, - high: 574.6, - low: 561.2, - close: 570.2, - volume: 2576234 - }), - new StockGoogleItem( - { - date: `2015-02-25`, - open: 570.5, - high: 572.3, - low: 558.7, - close: 558.8, - volume: 2146384 - }), - new StockGoogleItem( - { - date: `2015-02-26`, - open: 557.6, - high: 558.9, - low: 550.6, - close: 555.2, - volume: 1568331 - }), - new StockGoogleItem( - { - date: `2015-02-27`, - open: 553, - high: 555.3, - low: 548.1, - close: 548.3, - volume: 1892323 - }), - new StockGoogleItem( - { - date: `2015-02-30`, - open: 551.6, - high: 553.5, - low: 548.2, - close: 552, - volume: 1283958 - }), - new StockGoogleItem( - { - date: `2015-02-31`, - open: 550, - high: 554.7, - low: 546.7, - close: 548, - volume: 1583677 - }), - new StockGoogleItem( - { - date: `2015-03-01`, - open: 548.6, - high: 551.1, - low: 539.5, - close: 542.6, - volume: 1957718 - }), - new StockGoogleItem( - { - date: `2015-03-02`, - open: 540.9, - high: 540.9, - low: 533.9, - close: 535.5, - volume: 1711737 - }), - new StockGoogleItem( - { - date: `2015-03-06`, - open: 532.2, - high: 538.4, - low: 529.6, - close: 536.8, - volume: 1320767 - }), - new StockGoogleItem( - { - date: `2015-03-07`, - open: 538.1, - high: 542.7, - low: 536, - close: 537, - volume: 1299298 - }), - new StockGoogleItem( - { - date: `2015-03-08`, - open: 538.4, - high: 543.9, - low: 538.4, - close: 541.6, - volume: 1175332 - }), - new StockGoogleItem( - { - date: `2015-03-09`, - open: 541, - high: 542, - low: 535.5, - close: 540.8, - volume: 1553586 - }), - new StockGoogleItem( - { - date: `2015-03-10`, - open: 542.3, - high: 542.3, - low: 537.3, - close: 540, - volume: 1405574 - }), - new StockGoogleItem( - { - date: `2015-03-13`, - open: 538.4, - high: 544.1, - low: 537.3, - close: 539.2, - volume: 1640809 - }), - new StockGoogleItem( - { - date: `2015-03-14`, - open: 536.3, - high: 537.6, - low: 528.1, - close: 530.4, - volume: 2597043 - }), - new StockGoogleItem( - { - date: `2015-03-15`, - open: 528.7, - high: 534.7, - low: 523.2, - close: 532.5, - volume: 2312512 - }), - new StockGoogleItem( - { - date: `2015-03-16`, - open: 529.9, - high: 535.6, - low: 529.6, - close: 533.8, - volume: 1296304 - }), - new StockGoogleItem( - { - date: `2015-03-17`, - open: 528.7, - high: 529.8, - low: 521, - close: 524, - volume: 2145955 - }), - new StockGoogleItem( - { - date: `2015-03-20`, - open: 525.6, - high: 536.1, - low: 524.5, - close: 535.4, - volume: 1675487 - }), - new StockGoogleItem( - { - date: `2015-03-21`, - open: 537.5, - high: 539.4, - low: 533.7, - close: 534, - volume: 1839668 - }), - new StockGoogleItem( - { - date: `2015-03-22`, - open: 534.4, - high: 541.1, - low: 531.8, - close: 539.4, - volume: 1589248 - }), - new StockGoogleItem( - { - date: `2015-03-23`, - open: 541, - high: 551, - low: 540.2, - close: 547, - volume: 4173376 - }), - new StockGoogleItem( - { - date: `2015-03-24`, - open: 566.1, - high: 571.1, - low: 557.3, - close: 565.1, - volume: 4919031 - }), - new StockGoogleItem( - { - date: `2015-03-27`, - open: 563.4, - high: 566, - low: 553.2, - close: 555.4, - volume: 2398039 - }), - new StockGoogleItem( - { - date: `2015-03-28`, - open: 554.6, - high: 556, - low: 550.4, - close: 553.7, - volume: 1490983 - }), - new StockGoogleItem( - { - date: `2015-03-29`, - open: 550.5, - high: 553.7, - low: 546.9, - close: 549.1, - volume: 1698761 - }), - new StockGoogleItem( - { - date: `2015-03-30`, - open: 547.9, - high: 548.6, - low: 535, - close: 537.3, - volume: 2082214 - }), - new StockGoogleItem( - { - date: `2015-04-01`, - open: 538.4, - high: 539.5, - low: 532.1, - close: 537.9, - volume: 1768181 - }), - new StockGoogleItem( - { - date: `2015-04-04`, - open: 538.5, - high: 544.1, - low: 535.1, - close: 540.8, - volume: 1307960 - }), - new StockGoogleItem( - { - date: `2015-04-05`, - open: 538.2, - high: 539.7, - low: 530.4, - close: 530.8, - volume: 1383068 - }), - new StockGoogleItem( - { - date: `2015-04-06`, - open: 531.2, - high: 532.4, - low: 521.1, - close: 524.2, - volume: 1566987 - }), - new StockGoogleItem( - { - date: `2015-04-07`, - open: 524, - high: 533.5, - low: 521.8, - close: 530.7, - volume: 1546278 - }), - new StockGoogleItem( - { - date: `2015-04-08`, - open: 536.6, - high: 541.1, - low: 536, - close: 538.2, - volume: 1527615 - }), - new StockGoogleItem( - { - date: `2015-04-11`, - open: 538.4, - high: 542, - low: 535.4, - close: 535.7, - volume: 905285 - }), - new StockGoogleItem( - { - date: `2015-04-12`, - open: 531.6, - high: 533.2, - low: 525.3, - close: 529, - volume: 1634174 - }), - new StockGoogleItem( - { - date: `2015-04-13`, - open: 530.6, - high: 534.3, - low: 528.7, - close: 529.6, - volume: 1253063 - }), - new StockGoogleItem( - { - date: `2015-04-14`, - open: 533.8, - high: 539, - low: 532.4, - close: 538.4, - volume: 1403935 - }), - new StockGoogleItem( - { - date: `2015-04-15`, - open: 539.2, - high: 539.3, - low: 530.4, - close: 533.9, - volume: 1971343 - }), - new StockGoogleItem( - { - date: `2015-04-18`, - open: 532, - high: 534.8, - low: 528.9, - close: 532.3, - volume: 2003421 - }), - new StockGoogleItem( - { - date: `2015-04-19`, - open: 534, - high: 540.7, - low: 533, - close: 537.4, - volume: 1966947 - }), - new StockGoogleItem( - { - date: `2015-04-20`, - open: 538.5, - high: 542.9, - low: 533, - close: 539.3, - volume: 1430826 - }), - new StockGoogleItem( - { - date: `2015-04-21`, - open: 538, - high: 543.8, - low: 536, - close: 542.5, - volume: 1462695 - }), - new StockGoogleItem( - { - date: `2015-04-22`, - open: 540.1, - high: 544.2, - low: 539.5, - close: 540.1, - volume: 1176214 - }), - new StockGoogleItem( - { - date: `2015-04-26`, - open: 538.1, - high: 539, - low: 529.9, - close: 532.3, - volume: 2406512 - }), - new StockGoogleItem( - { - date: `2015-04-27`, - open: 532.8, - high: 540.5, - low: 531.7, - close: 539.8, - volume: 1525019 - }), - new StockGoogleItem( - { - date: `2015-04-28`, - open: 538, - high: 540.6, - low: 536.3, - close: 539.8, - volume: 1029849 - }), - new StockGoogleItem( - { - date: `2015-04-29`, - open: 537.4, - high: 538.6, - low: 531.5, - close: 532.1, - volume: 2597407 - }), - new StockGoogleItem( - { - date: `2015-05-01`, - open: 536.8, - high: 536.8, - low: 529.8, - close: 534, - volume: 1904332 - }), - new StockGoogleItem( - { - date: `2015-05-02`, - open: 532.9, - high: 543, - low: 531.3, - close: 539.2, - volume: 1938989 - }), - new StockGoogleItem( - { - date: `2015-05-03`, - open: 539.9, - high: 543.5, - low: 537.1, - close: 540.3, - volume: 1717036 - }), - new StockGoogleItem( - { - date: `2015-05-04`, - open: 537.8, - high: 540.6, - low: 534.3, - close: 536.7, - volume: 1348337 - }), - new StockGoogleItem( - { - date: `2015-05-05`, - open: 536.4, - high: 537.2, - low: 532.5, - close: 533.3, - volume: 1388220 - }), - new StockGoogleItem( - { - date: `2015-05-08`, - open: 533.3, - high: 534.1, - low: 526.2, - close: 526.8, - volume: 1524139 - }), - new StockGoogleItem( - { - date: `2015-05-09`, - open: 527.6, - high: 529.2, - low: 523, - close: 526.7, - volume: 1455266 - }), - new StockGoogleItem( - { - date: `2015-05-10`, - open: 529.4, - high: 538.4, - low: 529.4, - close: 536.7, - volume: 1814958 - }), - new StockGoogleItem( - { - date: `2015-05-11`, - open: 538.4, - high: 539, - low: 533, - close: 534.6, - volume: 1217536 - }), - new StockGoogleItem( - { - date: `2015-05-12`, - open: 531.6, - high: 533.1, - low: 530.2, - close: 532.3, - volume: 955789 - }), - new StockGoogleItem( - { - date: `2015-05-15`, - open: 528, - high: 528.3, - low: 524, - close: 527.2, - volume: 1632702 - }), - new StockGoogleItem( - { - date: `2015-05-16`, - open: 528.4, - high: 529.6, - low: 525.6, - close: 528.1, - volume: 1071814 - }), - new StockGoogleItem( - { - date: `2015-05-17`, - open: 529.4, - high: 531, - low: 525.1, - close: 529.3, - volume: 1294216 - }), - new StockGoogleItem( - { - date: `2015-05-18`, - open: 531, - high: 538.1, - low: 530.8, - close: 536.7, - volume: 1833109 - }), - new StockGoogleItem( - { - date: `2015-05-19`, - open: 537.2, - high: 538.3, - low: 533, - close: 536.7, - volume: 1893497 - }), - new StockGoogleItem( - { - date: `2015-05-22`, - open: 539.6, - high: 543.7, - low: 537.5, - close: 538.2, - volume: 1250282 - }), - new StockGoogleItem( - { - date: `2015-05-23`, - open: 539.6, - high: 541.5, - low: 535.3, - close: 540.5, - volume: 1197450 - }), - new StockGoogleItem( - { - date: `2015-05-24`, - open: 540, - high: 540, - low: 535.7, - close: 537.8, - volume: 1286608 - }), - new StockGoogleItem( - { - date: `2015-05-25`, - open: 538.9, - high: 540.9, - low: 535.2, - close: 535.2, - volume: 1335697 - }), - new StockGoogleItem( - { - date: `2015-05-26`, - open: 537.3, - high: 537.8, - low: 531.4, - close: 531.7, - volume: 2109130 - }), - new StockGoogleItem( - { - date: `2015-05-29`, - open: 525, - high: 528.6, - low: 520.5, - close: 521.5, - volume: 1937821 - }), - new StockGoogleItem( - { - date: `2015-05-30`, - open: 526, - high: 526.3, - low: 520.5, - close: 520.5, - volume: 2235595 - }), - new StockGoogleItem( - { - date: `2015-06-01`, - open: 524.7, - high: 525.7, - low: 518.2, - close: 521.8, - volume: 1961354 - }), - new StockGoogleItem( - { - date: `2015-06-02`, - open: 521.1, - high: 524.6, - low: 521.1, - close: 523.4, - volume: 1235903 - }), - new StockGoogleItem( - { - date: `2015-06-06`, - open: 519.5, - high: 525.3, - low: 519, - close: 522.9, - volume: 1280525 - }), - new StockGoogleItem( - { - date: `2015-06-07`, - open: 523.1, - high: 526.2, - low: 515.2, - close: 525, - volume: 1597229 - }), - new StockGoogleItem( - { - date: `2015-06-08`, - open: 521, - high: 522.7, - low: 516.1, - close: 516.8, - volume: 1296699 - }), - new StockGoogleItem( - { - date: `2015-06-09`, - open: 523.1, - high: 523.8, - low: 520.4, - close: 520.7, - volume: 1842347 - }), - new StockGoogleItem( - { - date: `2015-06-10`, - open: 526.3, - high: 532.6, - low: 525.5, - close: 530.1, - volume: 1956682 - }), - new StockGoogleItem( - { - date: `2015-06-13`, - open: 532.9, - high: 547.1, - low: 532.4, - close: 546.5, - volume: 2206475 - }), - new StockGoogleItem( - { - date: `2015-06-14`, - open: 546.8, - high: 565.9, - low: 546.7, - close: 561.1, - volume: 3244066 - }), - new StockGoogleItem( - { - date: `2015-06-15`, - open: 560.1, - high: 566.5, - low: 556.8, - close: 560.2, - volume: 1784554 - }), - new StockGoogleItem( - { - date: `2015-06-16`, - open: 565.1, - high: 580.7, - low: 565, - close: 579.9, - volume: 4768318 - }), - new StockGoogleItem( - { - date: `2015-06-17`, - open: 649, - high: 674.5, - low: 645, - close: 672.9, - volume: 11164943 - }), - new StockGoogleItem( - { - date: `2015-06-20`, - open: 659.2, - high: 668.9, - low: 653, - close: 663, - volume: 5860872 - }), - new StockGoogleItem( - { - date: `2015-06-21`, - open: 655.2, - high: 673, - low: 654.3, - close: 662.3, - volume: 3377196 - }), - new StockGoogleItem( - { - date: `2015-06-22`, - open: 660.9, - high: 678.6, - low: 659, - close: 662.1, - volume: 3929309 - }), - new StockGoogleItem( - { - date: `2015-06-23`, - open: 661.3, - high: 663.6, - low: 641, - close: 644.3, - volume: 3029109 - }), - new StockGoogleItem( - { - date: `2015-06-24`, - open: 647, - high: 648.2, - low: 622.5, - close: 623.6, - volume: 3625747 - }), - new StockGoogleItem( - { - date: `2015-06-27`, - open: 621, - high: 634.3, - low: 620.5, - close: 627.3, - volume: 2675381 - }), - new StockGoogleItem( - { - date: `2015-06-28`, - open: 632.8, - high: 632.8, - low: 623.3, - close: 628, - volume: 1727327 - }), - new StockGoogleItem( - { - date: `2015-06-29`, - open: 628.8, - high: 633.4, - low: 622.6, - close: 631.9, - volume: 1575069 - }), - new StockGoogleItem( - { - date: `2015-06-30`, - open: 630, - high: 635.2, - low: 622, - close: 632.6, - volume: 1474203 - }), - new StockGoogleItem( - { - date: `2015-06-31`, - open: 631.4, - high: 632.9, - low: 625.5, - close: 625.6, - volume: 1706149 - }), - new StockGoogleItem( - { - date: `2015-07-03`, - open: 625.3, - high: 633.1, - low: 625.3, - close: 631.2, - volume: 1304511 - }), - new StockGoogleItem( - { - date: `2015-07-04`, - open: 628.4, - high: 634.8, - low: 627.2, - close: 629.3, - volume: 1490881 - }), - new StockGoogleItem( - { - date: `2015-07-05`, - open: 634.3, - high: 647.9, - low: 633.2, - close: 643.8, - volume: 2334266 - }), - new StockGoogleItem( - { - date: `2015-07-06`, - open: 645, - high: 645.4, - low: 632.3, - close: 642.7, - volume: 1572600 - }), - new StockGoogleItem( - { - date: `2015-07-07`, - open: 640.2, - high: 642.7, - low: 629.7, - close: 635.3, - volume: 1403865 - }), - new StockGoogleItem( - { - date: `2015-07-10`, - open: 639.5, - high: 643.4, - low: 631.3, - close: 633.7, - volume: 1809205 - }), - new StockGoogleItem( - { - date: `2015-07-11`, - open: 669.2, - high: 674.9, - low: 654.3, - close: 660.8, - volume: 5029203 - }), - new StockGoogleItem( - { - date: `2015-07-12`, - open: 663.1, - high: 665, - low: 652.3, - close: 659.6, - volume: 2940803 - }), - new StockGoogleItem( - { - date: `2015-07-13`, - open: 659.3, - high: 664.5, - low: 651.7, - close: 656.5, - volume: 1810749 - }), - new StockGoogleItem( - { - date: `2015-07-14`, - open: 655, - high: 659.9, - low: 652.7, - close: 657.1, - volume: 1072061 - }), - new StockGoogleItem( - { - date: `2015-07-17`, - open: 656.8, - high: 661.4, - low: 651.2, - close: 660.9, - volume: 1051699 - }), - new StockGoogleItem( - { - date: `2015-07-18`, - open: 661.9, - high: 664, - low: 653.5, - close: 656.1, - volume: 1456059 - }), - new StockGoogleItem( - { - date: `2015-07-19`, - open: 656.6, - high: 667, - low: 654.2, - close: 660.9, - volume: 2134098 - }), - new StockGoogleItem( - { - date: `2015-07-20`, - open: 655.5, - high: 663, - low: 642.9, - close: 646.8, - volume: 2855299 - }), - new StockGoogleItem( - { - date: `2015-07-21`, - open: 639.8, - high: 640, - low: 612.3, - close: 612.5, - volume: 4265183 - }), - new StockGoogleItem( - { - date: `2015-07-24`, - open: 573, - high: 614, - low: 565, - close: 589.6, - volume: 5770302 - }), - new StockGoogleItem( - { - date: `2015-07-25`, - open: 614.9, - high: 617.5, - low: 581.1, - close: 582.1, - volume: 3537966 - }), - new StockGoogleItem( - { - date: `2015-07-26`, - open: 610.4, - high: 631.7, - low: 599, - close: 628.6, - volume: 4235891 - }), - new StockGoogleItem( - { - date: `2015-07-27`, - open: 639.4, - high: 643.6, - low: 622, - close: 637.6, - volume: 3491336 - }), - new StockGoogleItem( - { - date: `2015-07-28`, - open: 632.8, - high: 636.9, - low: 624.6, - close: 630.4, - volume: 1978733 - }), - new StockGoogleItem( - { - date: `2015-07-31`, - open: 627.5, - high: 635.8, - low: 617.7, - close: 618.3, - volume: 2176737 - }), - new StockGoogleItem( - { - date: `2015-08-01`, - open: 602.4, - high: 612.9, - low: 594.1, - close: 597.8, - volume: 3702105 - }), - new StockGoogleItem( - { - date: `2015-08-02`, - open: 605.6, - high: 614.3, - low: 599.7, - close: 614.3, - volume: 2575620 - }), - new StockGoogleItem( - { - date: `2015-08-03`, - open: 617, - high: 619.7, - low: 602.8, - close: 606.3, - volume: 1759572 - }), - new StockGoogleItem( - { - date: `2015-08-04`, - open: 600, - high: 603.5, - low: 595.3, - close: 600.7, - volume: 2089453 - }), - new StockGoogleItem( - { - date: `2015-08-08`, - open: 612.5, - high: 616.3, - low: 604.1, - close: 614.7, - volume: 2279538 - }), - new StockGoogleItem( - { - date: `2015-08-09`, - open: 621.2, - high: 626.5, - low: 609.6, - close: 612.7, - volume: 1702094 - }), - new StockGoogleItem( - { - date: `2015-08-10`, - open: 613.1, - high: 624.2, - low: 611.4, - close: 621.4, - volume: 1900526 - }), - new StockGoogleItem( - { - date: `2015-08-11`, - open: 619.8, - high: 625.8, - low: 617.4, - close: 625.8, - volume: 1373545 - }), - new StockGoogleItem( - { - date: `2015-08-14`, - open: 625.7, - high: 625.9, - low: 619.4, - close: 623.2, - volume: 1702271 - }), - new StockGoogleItem( - { - date: `2015-08-15`, - open: 626.7, - high: 638.7, - low: 623.8, - close: 635.1, - volume: 2084397 - }), - new StockGoogleItem( - { - date: `2015-08-16`, - open: 635.5, - high: 638, - low: 632.3, - close: 636, - volume: 1286454 - }), - new StockGoogleItem( - { - date: `2015-08-17`, - open: 637.8, - high: 650.9, - low: 635, - close: 642.9, - volume: 2274690 - }), - new StockGoogleItem( - { - date: `2015-08-18`, - open: 636.8, - high: 640, - low: 627, - close: 629.3, - volume: 5133386 - }), - new StockGoogleItem( - { - date: `2015-08-21`, - open: 634.4, - high: 636.5, - low: 625.9, - close: 635.4, - volume: 1788506 - }), - new StockGoogleItem( - { - date: `2015-08-22`, - open: 627, - high: 627.5, - low: 615.4, - close: 622.7, - volume: 2562869 - }), - new StockGoogleItem( - { - date: `2015-08-23`, - open: 622, - high: 628.9, - low: 620, - close: 622.4, - volume: 1470949 - }), - new StockGoogleItem( - { - date: `2015-08-24`, - open: 616.6, - high: 627.3, - low: 612.4, - close: 625.8, - volume: 2240098 - }), - new StockGoogleItem( - { - date: `2015-08-25`, - open: 629.8, - high: 629.8, - low: 611, - close: 612, - volume: 2174009 - }), - new StockGoogleItem( - { - date: `2015-08-28`, - open: 610.3, - high: 614.6, - low: 589.4, - close: 594.9, - volume: 3127667 - }), - new StockGoogleItem( - { - date: `2015-08-29`, - open: 597.3, - high: 605, - low: 590.2, - close: 595, - volume: 2310284 - }), - new StockGoogleItem( - { - date: `2015-08-30`, - open: 603.3, - high: 608.8, - low: 600.7, - close: 608.4, - volume: 2413441 - }), - new StockGoogleItem( - { - date: `2015-09-01`, - open: 608.4, - high: 612.1, - low: 599.9, - close: 611.3, - volume: 1867601 - }), - new StockGoogleItem( - { - date: `2015-09-02`, - open: 607.2, - high: 627.3, - low: 603.1, - close: 626.9, - volume: 2684805 - }), - new StockGoogleItem( - { - date: `2015-09-05`, - open: 632, - high: 643, - low: 627, - close: 641.5, - volume: 1787880 - }), - new StockGoogleItem( - { - date: `2015-09-06`, - open: 638.8, - high: 649.3, - low: 636.5, - close: 645.4, - volume: 2166264 - }), - new StockGoogleItem( - { - date: `2015-09-07`, - open: 649.2, - high: 650.6, - low: 632.1, - close: 642.4, - volume: 2089776 - }), - new StockGoogleItem( - { - date: `2015-09-08`, - open: 641.4, - high: 644.5, - low: 625.6, - close: 639.2, - volume: 2180441 - }), - new StockGoogleItem( - { - date: `2015-09-09`, - open: 640, - high: 646, - low: 635.3, - close: 643.6, - volume: 1645844 - }), - new StockGoogleItem( - { - date: `2015-09-12`, - open: 642.1, - high: 648.5, - low: 639, - close: 646.7, - volume: 1275206 - }), - new StockGoogleItem( - { - date: `2015-09-13`, - open: 643.1, - high: 657.8, - low: 643.1, - close: 652.3, - volume: 1790704 - }), - new StockGoogleItem( - { - date: `2015-09-14`, - open: 653.2, - high: 659.4, - low: 648.9, - close: 651.2, - volume: 1412040 - }), - new StockGoogleItem( - { - date: `2015-09-15`, - open: 654.7, - high: 663.1, - low: 654.5, - close: 661.7, - volume: 1830524 - }), - new StockGoogleItem( - { - date: `2015-09-16`, - open: 664.1, - high: 665, - low: 657.2, - close: 662.2, - volume: 1606138 - }), - new StockGoogleItem( - { - date: `2015-09-19`, - open: 661.2, - high: 666.8, - low: 659.6, - close: 666.1, - volume: 1465339 - }), - new StockGoogleItem( - { - date: `2015-09-20`, - open: 664, - high: 664.7, - low: 644.2, - close: 650.3, - volume: 2490016 - }), - new StockGoogleItem( - { - date: `2015-09-21`, - open: 654.1, - high: 655.9, - low: 641.7, - close: 642.6, - volume: 1791099 - }), - new StockGoogleItem( - { - date: `2015-09-22`, - open: 646.7, - high: 657.8, - low: 644, - close: 651.8, - volume: 3782103 - }), - new StockGoogleItem( - { - date: `2015-09-23`, - open: 727.5, - high: 730, - low: 701.5, - close: 702, - volume: 6642504 - }), - new StockGoogleItem( - { - date: `2015-09-26`, - open: 701.5, - high: 719.1, - low: 701.3, - close: 712.8, - volume: 2701629 - }), - new StockGoogleItem( - { - date: `2015-09-27`, - open: 707.4, - high: 713.6, - low: 704.5, - close: 708.5, - volume: 2224309 - }), - new StockGoogleItem( - { - date: `2015-09-28`, - open: 707.3, - high: 713, - low: 703.1, - close: 713, - volume: 2176623 - }), - new StockGoogleItem( - { - date: `2015-09-29`, - open: 710.5, - high: 718.3, - low: 710, - close: 716.9, - volume: 1454128 - }), - new StockGoogleItem( - { - date: `2015-09-30`, - open: 715.7, - high: 718, - low: 710, - close: 710.8, - volume: 1903980 - }), - new StockGoogleItem( - { - date: `2015-10-02`, - open: 711.1, - high: 721.6, - low: 705.9, - close: 721.1, - volume: 1871073 - }), - new StockGoogleItem( - { - date: `2015-10-03`, - open: 718.9, - high: 724.6, - low: 714.7, - close: 722.2, - volume: 1560770 - }), - new StockGoogleItem( - { - date: `2015-10-04`, - open: 722, - high: 733.1, - low: 721.9, - close: 728.1, - volume: 1704575 - }), - new StockGoogleItem( - { - date: `2015-10-05`, - open: 729.5, - high: 739.5, - low: 729.5, - close: 731.3, - volume: 1860367 - }), - new StockGoogleItem( - { - date: `2015-10-06`, - open: 731.5, - high: 735.4, - low: 727, - close: 733.8, - volume: 1509656 - }), - new StockGoogleItem( - { - date: `2015-10-09`, - open: 730.2, - high: 734.7, - low: 719.4, - close: 724.9, - volume: 2065619 - }), - new StockGoogleItem( - { - date: `2015-10-10`, - open: 724.4, - high: 730.6, - low: 718.5, - close: 728.3, - volume: 1603937 - }), - new StockGoogleItem( - { - date: `2015-10-11`, - open: 732.5, - high: 741, - low: 730.2, - close: 735.4, - volume: 1366375 - }), - new StockGoogleItem( - { - date: `2015-10-12`, - open: 731, - high: 737.8, - low: 728.6, - close: 731.2, - volume: 1668048 - }), - new StockGoogleItem( - { - date: `2015-10-13`, - open: 729.2, - high: 731.1, - low: 716.7, - close: 717, - volume: 2062982 - }), - new StockGoogleItem( - { - date: `2015-10-16`, - open: 715.6, - high: 729.5, - low: 711.3, - close: 729, - volume: 1891074 - }), - new StockGoogleItem( - { - date: `2015-10-17`, - open: 729.3, - high: 731.8, - low: 723, - close: 725.3, - volume: 1491709 - }), - new StockGoogleItem( - { - date: `2015-10-18`, - open: 727.6, - high: 741.4, - low: 727, - close: 740, - volume: 1671588 - }), - new StockGoogleItem( - { - date: `2015-10-19`, - open: 738.7, - high: 742, - low: 737.4, - close: 738.4, - volume: 1327109 - }), - new StockGoogleItem( - { - date: `2015-10-20`, - open: 746.5, - high: 757.9, - low: 743, - close: 756.6, - volume: 2212302 - }), - new StockGoogleItem( - { - date: `2015-10-23`, - open: 757.5, - high: 762.7, - low: 751.8, - close: 756, - volume: 1414487 - }), - new StockGoogleItem( - { - date: `2015-10-24`, - open: 752, - high: 755.3, - low: 737.6, - close: 748.3, - volume: 2333130 - }), - new StockGoogleItem( - { - date: `2015-10-25`, - open: 748.1, - high: 752, - low: 746.1, - close: 748.1, - volume: 1122224 - }), - new StockGoogleItem( - { - date: `2015-10-27`, - open: 748.5, - high: 753.4, - low: 747.5, - close: 750.3, - volume: 838518 - }), - new StockGoogleItem( - { - date: `2015-10-30`, - open: 748.8, - high: 754.9, - low: 741.3, - close: 742.6, - volume: 2035261 - }), - new StockGoogleItem( - { - date: `2015-11-01`, - open: 747.1, - high: 769, - low: 746.7, - close: 767, - volume: 2129940 - }), - new StockGoogleItem( - { - date: `2015-11-02`, - open: 768.9, - high: 776, - low: 759, - close: 762.4, - volume: 2195686 - }), - new StockGoogleItem( - { - date: `2015-11-03`, - open: 766, - high: 769, - low: 745.6, - close: 752.5, - volume: 2590641 - }), - new StockGoogleItem( - { - date: `2015-11-04`, - open: 753.1, - high: 768.5, - low: 750, - close: 766.8, - volume: 2757283 - }), - new StockGoogleItem( - { - date: `2015-11-07`, - open: 767.8, - high: 768.7, - low: 755.1, - close: 763.3, - volume: 1812314 - }), - new StockGoogleItem( - { - date: `2015-11-08`, - open: 757.9, - high: 764.8, - low: 754.2, - close: 762.4, - volume: 1829475 - }), - new StockGoogleItem( - { - date: `2015-11-09`, - open: 759.2, - high: 764.2, - low: 737, - close: 751.6, - volume: 2699990 - }), - new StockGoogleItem( - { - date: `2015-11-10`, - open: 752.9, - high: 755.9, - low: 743.8, - close: 749.5, - volume: 1988380 - }), - new StockGoogleItem( - { - date: `2015-11-11`, - open: 741.2, - high: 745.7, - low: 736.8, - close: 738.9, - volume: 2224410 - }), - new StockGoogleItem( - { - date: `2015-11-14`, - open: 741.8, - high: 748.7, - low: 724.2, - close: 747.8, - volume: 2412497 - }), - new StockGoogleItem( - { - date: `2015-11-15`, - open: 753, - high: 758.1, - low: 743, - close: 743.4, - volume: 2666229 - }), - new StockGoogleItem( - { - date: `2015-11-16`, - open: 750, - high: 760.6, - low: 739.4, - close: 758.1, - volume: 1993251 - }), - new StockGoogleItem( - { - date: `2015-11-17`, - open: 762.4, - high: 762.7, - low: 749, - close: 749.4, - volume: 1553418 - }), - new StockGoogleItem( - { - date: `2015-11-18`, - open: 746.5, - high: 754.1, - low: 738.1, - close: 739.3, - volume: 3148743 - }), - new StockGoogleItem( - { - date: `2015-11-21`, - open: 746.1, - high: 750, - low: 740, - close: 747.8, - volume: 1525703 - }), - new StockGoogleItem( - { - date: `2015-11-22`, - open: 751.6, - high: 754.9, - low: 745.5, - close: 750, - volume: 1365520 - }), - new StockGoogleItem( - { - date: `2015-11-23`, - open: 753.5, - high: 754.2, - low: 744, - close: 750.3, - volume: 1566726 - }), - new StockGoogleItem( - { - date: `2015-11-24`, - open: 749.5, - high: 751.4, - low: 746.6, - close: 748.4, - volume: 527223 - }), - new StockGoogleItem( - { - date: `2015-11-28`, - open: 752.9, - high: 763, - low: 749.5, - close: 762.5, - volume: 1515716 - }), - new StockGoogleItem( - { - date: `2015-11-29`, - open: 766.7, - high: 780, - low: 766.4, - close: 776.6, - volume: 1765012 - }), - new StockGoogleItem( - { - date: `2015-11-30`, - open: 776.6, - high: 777.6, - low: 766.9, - close: 771, - volume: 1293521 - }), - new StockGoogleItem( - { - date: `2015-11-31`, - open: 769.5, - high: 769.5, - low: 758.3, - close: 758.9, - volume: 1500923 - }), - new StockGoogleItem( - { - date: `2016-00-04`, - open: 743, - high: 744.1, - low: 731.3, - close: 741.8, - volume: 3258199 - }), - new StockGoogleItem( - { - date: `2016-00-05`, - open: 746.5, - high: 752, - low: 738.6, - close: 742.6, - volume: 1950691 - }), - new StockGoogleItem( - { - date: `2016-00-06`, - open: 730, - high: 747.2, - low: 728.9, - close: 743.6, - volume: 1947034 - }), - new StockGoogleItem( - { - date: `2016-00-07`, - open: 730.3, - high: 738.5, - low: 719.1, - close: 726.4, - volume: 2963741 - }), - new StockGoogleItem( - { - date: `2016-00-08`, - open: 731.5, - high: 733.2, - low: 713, - close: 714.5, - volume: 2450857 - }), - new StockGoogleItem( - { - date: `2016-00-11`, - open: 716.6, - high: 718.9, - low: 703.5, - close: 716, - volume: 2090621 - }), - new StockGoogleItem( - { - date: `2016-00-12`, - open: 721.7, - high: 728.8, - low: 717.3, - close: 726.1, - volume: 2024509 - }), - new StockGoogleItem( - { - date: `2016-00-13`, - open: 730.9, - high: 734.7, - low: 698.6, - close: 700.6, - volume: 2468295 - }), - new StockGoogleItem( - { - date: `2016-00-14`, - open: 705.4, - high: 721.9, - low: 689.1, - close: 714.7, - volume: 2211853 - }), - new StockGoogleItem( - { - date: `2016-00-15`, - open: 692.3, - high: 706.7, - low: 685.4, - close: 694.5, - volume: 3592449 - }), - new StockGoogleItem( - { - date: `2016-00-19`, - open: 703.3, - high: 710, - low: 693.4, - close: 701.8, - volume: 2258479 - }), - new StockGoogleItem( - { - date: `2016-00-20`, - open: 688.6, - high: 706.9, - low: 673.3, - close: 698.5, - volume: 3439386 - }), - new StockGoogleItem( - { - date: `2016-00-21`, - open: 702.2, - high: 719.2, - low: 694.5, - close: 706.6, - volume: 2410263 - }), - new StockGoogleItem( - { - date: `2016-00-22`, - open: 723.6, - high: 728.1, - low: 720.1, - close: 725.3, - volume: 2006528 - }), - new StockGoogleItem( - { - date: `2016-00-25`, - open: 723.6, - high: 729.7, - low: 710, - close: 711.7, - volume: 1704641 - }), - new StockGoogleItem( - { - date: `2016-00-26`, - open: 713.9, - high: 718.3, - low: 706.5, - close: 713, - volume: 1324300 - }), - new StockGoogleItem( - { - date: `2016-00-27`, - open: 713.7, - high: 718.2, - low: 694.4, - close: 700, - volume: 2139970 - }), - new StockGoogleItem( - { - date: `2016-00-28`, - open: 722.2, - high: 733.7, - low: 712.4, - close: 731, - volume: 2658016 - }), - new StockGoogleItem( - { - date: `2016-00-29`, - open: 731.5, - high: 745, - low: 726.8, - close: 743, - volume: 3394935 - }), - new StockGoogleItem( - { - date: `2016-01-01`, - open: 750.5, - high: 757.9, - low: 743.3, - close: 752, - volume: 4801816 - }), - new StockGoogleItem( - { - date: `2016-01-02`, - open: 784.5, - high: 789.9, - low: 764.6, - close: 764.6, - volume: 6332431 - }), - new StockGoogleItem( - { - date: `2016-01-03`, - open: 770.2, - high: 774.5, - low: 720.5, - close: 727, - volume: 6162333 - }), - new StockGoogleItem( - { - date: `2016-01-04`, - open: 722.8, - high: 727, - low: 701.9, - close: 708, - volume: 5145855 - }), - new StockGoogleItem( - { - date: `2016-01-05`, - open: 703.9, - high: 704, - low: 680.1, - close: 683.6, - volume: 5069985 - }), - new StockGoogleItem( - { - date: `2016-01-08`, - open: 667.9, - high: 684, - low: 663.1, - close: 682.7, - volume: 4212541 - }), - new StockGoogleItem( - { - date: `2016-01-09`, - open: 672.3, - high: 699.9, - low: 668.8, - close: 678.1, - volume: 3604335 - }), - new StockGoogleItem( - { - date: `2016-01-10`, - open: 686.9, - high: 701.3, - low: 682.1, - close: 684.1, - volume: 2627379 - }), - new StockGoogleItem( - { - date: `2016-01-11`, - open: 675, - high: 689.4, - low: 668.9, - close: 683.1, - volume: 3007223 - }), - new StockGoogleItem( - { - date: `2016-01-12`, - open: 690.3, - high: 693.8, - low: 678.6, - close: 682.4, - volume: 2129831 - }), - new StockGoogleItem( - { - date: `2016-01-16`, - open: 693, - high: 698, - low: 685, - close: 691, - volume: 2497024 - }), - new StockGoogleItem( - { - date: `2016-01-17`, - open: 699, - high: 709.8, - low: 691.4, - close: 708.4, - volume: 2466808 - }), - new StockGoogleItem( - { - date: `2016-01-18`, - open: 710, - high: 712.4, - low: 696, - close: 697.4, - volume: 1859130 - }), - new StockGoogleItem( - { - date: `2016-01-19`, - open: 695, - high: 703.1, - low: 694, - close: 700.9, - volume: 1582260 - }), - new StockGoogleItem( - { - date: `2016-01-22`, - open: 707.5, - high: 713.2, - low: 702.5, - close: 706.5, - volume: 1946067 - }), - new StockGoogleItem( - { - date: `2016-01-23`, - open: 701.5, - high: 708.4, - low: 693.6, - close: 695.9, - volume: 1999699 - }), - new StockGoogleItem( - { - date: `2016-01-24`, - open: 688.9, - high: 700, - low: 680.8, - close: 699.6, - volume: 1958611 - }), - new StockGoogleItem( - { - date: `2016-01-25`, - open: 700, - high: 706, - low: 690.6, - close: 705.8, - volume: 1631855 - }), - new StockGoogleItem( - { - date: `2016-01-26`, - open: 708.6, - high: 713.4, - low: 700.9, - close: 705.1, - volume: 2239978 - }), - new StockGoogleItem( - { - date: `2016-01-29`, - open: 700.3, - high: 710.9, - low: 697.7, - close: 697.8, - volume: 2280280 - }), - new StockGoogleItem( - { - date: `2016-02-01`, - open: 703.6, - high: 718.8, - low: 699.8, - close: 718.8, - volume: 2147442 - }), - new StockGoogleItem( - { - date: `2016-02-02`, - open: 719, - high: 720, - low: 712, - close: 718.9, - volume: 1627753 - }), - new StockGoogleItem( - { - date: `2016-02-03`, - open: 718.7, - high: 719.5, - low: 706, - close: 712.4, - volume: 1956761 - }), - new StockGoogleItem( - { - date: `2016-02-04`, - open: 715, - high: 716.5, - low: 706, - close: 710.9, - volume: 1967873 - }), - new StockGoogleItem( - { - date: `2016-02-07`, - open: 706.9, - high: 708.1, - low: 686.9, - close: 695.2, - volume: 2985094 - }), - new StockGoogleItem( - { - date: `2016-02-08`, - open: 688.6, - high: 703.8, - low: 685.3, - close: 694, - volume: 2063357 - }), - new StockGoogleItem( - { - date: `2016-02-09`, - open: 698.5, - high: 705.7, - low: 694, - close: 705.2, - volume: 1418704 - }), - new StockGoogleItem( - { - date: `2016-02-10`, - open: 708.1, - high: 716.4, - low: 703.4, - close: 712.8, - volume: 2829412 - }), - new StockGoogleItem( - { - date: `2016-02-11`, - open: 720, - high: 726.9, - low: 717.1, - close: 726.8, - volume: 1963907 - }), - new StockGoogleItem( - { - date: `2016-02-14`, - open: 726.8, - high: 735.5, - low: 725.1, - close: 730.5, - volume: 1716910 - }), - new StockGoogleItem( - { - date: `2016-02-15`, - open: 726.9, - high: 732.3, - low: 724.8, - close: 728.3, - volume: 1720965 - }), - new StockGoogleItem( - { - date: `2016-02-16`, - open: 726.4, - high: 737.5, - low: 724.5, - close: 736.1, - volume: 1572329 - }), - new StockGoogleItem( - { - date: `2016-02-17`, - open: 736.5, - high: 743.1, - low: 736, - close: 737.8, - volume: 1856800 - }), - new StockGoogleItem( - { - date: `2016-02-18`, - open: 741.9, - high: 742, - low: 731.8, - close: 737.6, - volume: 2796376 - }), - new StockGoogleItem( - { - date: `2016-02-21`, - open: 736.5, - high: 742.5, - low: 733.5, - close: 742.1, - volume: 1831839 - }), - new StockGoogleItem( - { - date: `2016-02-22`, - open: 737.5, - high: 745, - low: 737.5, - close: 740.8, - volume: 1264396 - }), - new StockGoogleItem( - { - date: `2016-02-23`, - open: 742.4, - high: 745.7, - low: 736.1, - close: 738.1, - volume: 1421861 - }), - new StockGoogleItem( - { - date: `2016-02-24`, - open: 732, - high: 737.8, - low: 731, - close: 735.3, - volume: 1564782 - }), - new StockGoogleItem( - { - date: `2016-02-28`, - open: 736.8, - high: 739, - low: 732.5, - close: 733.5, - volume: 1299812 - }), - new StockGoogleItem( - { - date: `2016-02-29`, - open: 734.6, - high: 747.3, - low: 728.8, - close: 744.8, - volume: 1902128 - }), - new StockGoogleItem( - { - date: `2016-02-30`, - open: 750.1, - high: 757.9, - low: 748.7, - close: 750.5, - volume: 1780998 - }), - new StockGoogleItem( - { - date: `2016-02-31`, - open: 749.3, - high: 750.9, - low: 740.9, - close: 745, - volume: 1712375 - }), - new StockGoogleItem( - { - date: `2016-03-01`, - open: 738.6, - high: 750.3, - low: 737, - close: 749.9, - volume: 1574870 - }), - new StockGoogleItem( - { - date: `2016-03-04`, - open: 750.1, - high: 752.8, - low: 742.4, - close: 745.3, - volume: 1131843 - }), - new StockGoogleItem( - { - date: `2016-03-05`, - open: 738, - high: 742.8, - low: 735.4, - close: 737.8, - volume: 1129829 - }), - new StockGoogleItem( - { - date: `2016-03-06`, - open: 735.8, - high: 746.2, - low: 735.6, - close: 745.7, - volume: 1050193 - }), - new StockGoogleItem( - { - date: `2016-03-07`, - open: 745.4, - high: 747, - low: 736.3, - close: 740.3, - volume: 1429504 - }), - new StockGoogleItem( - { - date: `2016-03-08`, - open: 744, - high: 745.5, - low: 735.5, - close: 739.1, - volume: 1285755 - }), - new StockGoogleItem( - { - date: `2016-03-11`, - open: 743, - high: 745, - low: 736, - close: 736.1, - volume: 1211762 - }), - new StockGoogleItem( - { - date: `2016-03-12`, - open: 738, - high: 743.8, - low: 731, - close: 743.1, - volume: 1349734 - }), - new StockGoogleItem( - { - date: `2016-03-13`, - open: 749.2, - high: 754.4, - low: 744.3, - close: 751.7, - volume: 1707095 - }), - new StockGoogleItem( - { - date: `2016-03-14`, - open: 754, - high: 757.3, - low: 752.7, - close: 753.2, - volume: 1130971 - }), - new StockGoogleItem( - { - date: `2016-03-15`, - open: 754, - high: 761, - low: 752.7, - close: 759, - volume: 1800413 - }), - new StockGoogleItem( - { - date: `2016-03-18`, - open: 760.5, - high: 768, - low: 757.3, - close: 766.6, - volume: 1555953 - }), - new StockGoogleItem( - { - date: `2016-03-19`, - open: 769.5, - high: 769.9, - low: 749.3, - close: 753.9, - volume: 2027642 - }), - new StockGoogleItem( - { - date: `2016-03-20`, - open: 758, - high: 758.1, - low: 750, - close: 752.7, - volume: 1525591 - }), - new StockGoogleItem( - { - date: `2016-03-21`, - open: 755.4, - high: 760.5, - low: 749.5, - close: 759.1, - volume: 2743620 - }), - new StockGoogleItem( - { - date: `2016-03-22`, - open: 726.3, - high: 736.1, - low: 713.6, - close: 718.8, - volume: 5939199 - }), - new StockGoogleItem( - { - date: `2016-03-25`, - open: 716.1, - high: 723.9, - low: 715.6, - close: 723.1, - volume: 1955567 - }), - new StockGoogleItem( - { - date: `2016-03-26`, - open: 725.4, - high: 725.8, - low: 703, - close: 708.1, - volume: 2727185 - }), - new StockGoogleItem( - { - date: `2016-03-27`, - open: 707.3, - high: 709, - low: 692.4, - close: 705.8, - volume: 3086722 - }), - new StockGoogleItem( - { - date: `2016-03-28`, - open: 708.3, - high: 714.2, - low: 689.5, - close: 691, - volume: 2851108 - }), - new StockGoogleItem( - { - date: `2016-03-29`, - open: 690.7, - high: 697.6, - low: 689, - close: 693, - volume: 2484273 - }), - new StockGoogleItem( - { - date: `2016-04-02`, - open: 697.6, - high: 700.6, - low: 691, - close: 698.2, - volume: 1644126 - }), - new StockGoogleItem( - { - date: `2016-04-03`, - open: 696.9, - high: 697.8, - low: 692, - close: 692.4, - volume: 1530993 - }), - new StockGoogleItem( - { - date: `2016-04-04`, - open: 690.5, - high: 699.8, - low: 689, - close: 695.7, - volume: 1688569 - }), - new StockGoogleItem( - { - date: `2016-04-05`, - open: 697.7, - high: 702.3, - low: 695.7, - close: 701.4, - volume: 1677405 - }), - new StockGoogleItem( - { - date: `2016-04-06`, - open: 698.4, - high: 711.9, - low: 698.1, - close: 711.1, - volume: 1826146 - }), - new StockGoogleItem( - { - date: `2016-04-09`, - open: 712, - high: 718.7, - low: 710, - close: 712.9, - volume: 1508423 - }), - new StockGoogleItem( - { - date: `2016-04-10`, - open: 716.8, - high: 723.5, - low: 715.7, - close: 723.2, - volume: 1563105 - }), - new StockGoogleItem( - { - date: `2016-04-11`, - open: 723.4, - high: 724.5, - low: 712.8, - close: 715.3, - volume: 1686823 - }), - new StockGoogleItem( - { - date: `2016-04-12`, - open: 717.1, - high: 719.3, - low: 709, - close: 713.3, - volume: 1360732 - }), - new StockGoogleItem( - { - date: `2016-04-13`, - open: 711.9, - high: 716.7, - low: 709.3, - close: 710.8, - volume: 1307338 - }), - new StockGoogleItem( - { - date: `2016-04-16`, - open: 709.1, - high: 718.5, - low: 705.6, - close: 716.5, - volume: 1316177 - }), - new StockGoogleItem( - { - date: `2016-04-17`, - open: 716, - high: 721.5, - low: 704.1, - close: 706.2, - volume: 1999456 - }), - new StockGoogleItem( - { - date: `2016-04-18`, - open: 703.7, - high: 711.6, - low: 700.6, - close: 706.6, - volume: 1763394 - }), - new StockGoogleItem( - { - date: `2016-04-19`, - open: 702.4, - high: 706, - low: 696.8, - close: 700.3, - volume: 1656321 - }), - new StockGoogleItem( - { - date: `2016-04-20`, - open: 701.6, - high: 714.6, - low: 700.5, - close: 709.7, - volume: 1816027 - }), - new StockGoogleItem( - { - date: `2016-04-23`, - open: 706.5, - high: 711.5, - low: 704.2, - close: 704.2, - volume: 1320927 - }), - new StockGoogleItem( - { - date: `2016-04-24`, - open: 706.9, - high: 721, - low: 706.9, - close: 720.1, - volume: 1920411 - }), - new StockGoogleItem( - { - date: `2016-04-25`, - open: 720.8, - high: 727.5, - low: 719.7, - close: 725.3, - volume: 1629198 - }), - new StockGoogleItem( - { - date: `2016-04-26`, - open: 722.9, - high: 728.3, - low: 720.3, - close: 724.1, - volume: 1542866 - }), - new StockGoogleItem( - { - date: `2016-04-27`, - open: 724, - high: 733.9, - low: 724, - close: 732.7, - volume: 1974026 - }), - new StockGoogleItem( - { - date: `2016-04-31`, - open: 731.7, - high: 739.7, - low: 731.3, - close: 735.7, - volume: 2129545 - }), - new StockGoogleItem( - { - date: `2016-05-01`, - open: 734.5, - high: 737.2, - low: 730.7, - close: 734.1, - volume: 1253593 - }), - new StockGoogleItem( - { - date: `2016-05-02`, - open: 732.5, - high: 733, - low: 724.2, - close: 730.4, - volume: 1341807 - }), - new StockGoogleItem( - { - date: `2016-05-03`, - open: 729.3, - high: 729.5, - low: 720.6, - close: 722.3, - volume: 1226253 - }), - new StockGoogleItem( - { - date: `2016-05-06`, - open: 724.9, - high: 724.9, - low: 714.6, - close: 716.5, - volume: 1566059 - }), - new StockGoogleItem( - { - date: `2016-05-07`, - open: 719.8, - high: 722, - low: 716.5, - close: 716.6, - volume: 1336754 - }), - new StockGoogleItem( - { - date: `2016-05-08`, - open: 724, - high: 728.6, - low: 720.6, - close: 728.3, - volume: 1583701 - }), - new StockGoogleItem( - { - date: `2016-05-09`, - open: 722.9, - high: 729.5, - low: 722.3, - close: 728.6, - volume: 988914 - }), - new StockGoogleItem( - { - date: `2016-05-10`, - open: 719.5, - high: 725.9, - low: 716.4, - close: 719.4, - volume: 1216443 - }), - new StockGoogleItem( - { - date: `2016-05-13`, - open: 716.5, - high: 725.4, - low: 716.5, - close: 718.4, - volume: 1258930 - }), - new StockGoogleItem( - { - date: `2016-05-14`, - open: 716.5, - high: 722.5, - low: 713.1, - close: 718.3, - volume: 1306065 - }), - new StockGoogleItem( - { - date: `2016-05-15`, - open: 719, - high: 723, - low: 717.3, - close: 718.9, - volume: 1214517 - }), - new StockGoogleItem( - { - date: `2016-05-16`, - open: 714.9, - high: 716.6, - low: 703.3, - close: 710.4, - volume: 1982471 - }), - new StockGoogleItem( - { - date: `2016-05-17`, - open: 708.6, - high: 708.8, - low: 688.5, - close: 691.7, - volume: 3402357 - }), - new StockGoogleItem( - { - date: `2016-05-20`, - open: 698.8, - high: 702.5, - low: 693.4, - close: 693.7, - volume: 2082538 - }), - new StockGoogleItem( - { - date: `2016-05-21`, - open: 698.4, - high: 702.8, - low: 692, - close: 695.9, - volume: 1465634 - }), - new StockGoogleItem( - { - date: `2016-05-22`, - open: 699.1, - high: 700.9, - low: 693.1, - close: 697.5, - volume: 1184318 - }), - new StockGoogleItem( - { - date: `2016-05-23`, - open: 697.5, - high: 702, - low: 687, - close: 701.9, - volume: 2171415 - }), - new StockGoogleItem( - { - date: `2016-05-24`, - open: 675.2, - high: 689.4, - low: 673.5, - close: 675.2, - volume: 4449022 - }), - new StockGoogleItem( - { - date: `2016-05-27`, - open: 671, - high: 672.3, - low: 663.3, - close: 668.3, - volume: 2641085 - }), - new StockGoogleItem( - { - date: `2016-05-28`, - open: 679, - high: 680.3, - low: 673, - close: 680, - volume: 2173762 - }), - new StockGoogleItem( - { - date: `2016-05-29`, - open: 683, - high: 687.4, - low: 681.4, - close: 684.1, - volume: 1932561 - }), - new StockGoogleItem( - { - date: `2016-05-30`, - open: 685.5, - high: 692.3, - low: 683.6, - close: 692.1, - volume: 1597714 - }), - new StockGoogleItem( - { - date: `2016-06-01`, - open: 692.2, - high: 700.6, - low: 692.1, - close: 699.2, - volume: 1344710 - }), - new StockGoogleItem( - { - date: `2016-06-05`, - open: 696.1, - high: 696.9, - low: 688.9, - close: 694.5, - volume: 1462616 - }), - new StockGoogleItem( - { - date: `2016-06-06`, - open: 690, - high: 701.7, - low: 689.1, - close: 697.8, - volume: 1411925 - }), - new StockGoogleItem( - { - date: `2016-06-07`, - open: 698.1, - high: 698.2, - low: 688.2, - close: 695.4, - volume: 1304200 - }), - new StockGoogleItem( - { - date: `2016-06-08`, - open: 699.5, - high: 705.7, - low: 696.4, - close: 705.6, - volume: 1575166 - }), - new StockGoogleItem( - { - date: `2016-06-11`, - open: 708, - high: 716.5, - low: 707.2, - close: 715.1, - volume: 1111762 - }), - new StockGoogleItem( - { - date: `2016-06-12`, - open: 719.1, - high: 722.9, - low: 715.9, - close: 720.6, - volume: 1336921 - }), - new StockGoogleItem( - { - date: `2016-06-13`, - open: 723.6, - high: 724, - low: 716.9, - close: 717, - volume: 935876 - }), - new StockGoogleItem( - { - date: `2016-06-14`, - open: 721.6, - high: 722.2, - low: 718, - close: 721, - volume: 950193 - }), - new StockGoogleItem( - { - date: `2016-06-15`, - open: 725.7, - high: 725.7, - low: 719.1, - close: 719.9, - volume: 1279339 - }), - new StockGoogleItem( - { - date: `2016-06-18`, - open: 722.7, - high: 736.1, - low: 721.2, - close: 733.8, - volume: 1295476 - }), - new StockGoogleItem( - { - date: `2016-06-19`, - open: 729.9, - high: 737, - low: 729, - close: 737, - volume: 1227486 - }), - new StockGoogleItem( - { - date: `2016-06-20`, - open: 737.3, - high: 742.1, - low: 737.1, - close: 741.2, - volume: 1289671 - }), - new StockGoogleItem( - { - date: `2016-06-21`, - open: 740.4, - high: 741.7, - low: 735.8, - close: 738.6, - volume: 1026306 - }), - new StockGoogleItem( - { - date: `2016-06-22`, - open: 741.9, - high: 743.2, - low: 736.6, - close: 742.7, - volume: 1259823 - }), - new StockGoogleItem( - { - date: `2016-06-25`, - open: 740.7, - high: 742.6, - low: 737.5, - close: 739.8, - volume: 1032432 - }), - new StockGoogleItem( - { - date: `2016-06-26`, - open: 739, - high: 741.7, - low: 734.3, - close: 738.4, - volume: 1186738 - }), - new StockGoogleItem( - { - date: `2016-06-27`, - open: 738.3, - high: 744.5, - low: 737, - close: 741.8, - volume: 1512517 - }), - new StockGoogleItem( - { - date: `2016-06-28`, - open: 747, - high: 748.6, - low: 739.3, - close: 745.9, - volume: 3530169 - }), - new StockGoogleItem( - { - date: `2016-06-29`, - open: 772.7, - high: 778.5, - low: 766.8, - close: 768.8, - volume: 3841482 - }), - new StockGoogleItem( - { - date: `2016-07-01`, - open: 761.1, - high: 780.4, - low: 761.1, - close: 772.9, - volume: 2700470 - }), - new StockGoogleItem( - { - date: `2016-07-02`, - open: 768.7, - high: 775.8, - low: 767.9, - close: 771.1, - volume: 1784525 - }), - new StockGoogleItem( - { - date: `2016-07-03`, - open: 767.2, - high: 773.2, - low: 766.8, - close: 773.2, - volume: 1287421 - }), - new StockGoogleItem( - { - date: `2016-07-04`, - open: 772.2, - high: 774.1, - low: 768.8, - close: 771.6, - volume: 1140254 - }), - new StockGoogleItem( - { - date: `2016-07-05`, - open: 773.8, - high: 783, - low: 772.3, - close: 782.2, - volume: 1801205 - }), - new StockGoogleItem( - { - date: `2016-07-08`, - open: 782, - high: 782.6, - low: 778.1, - close: 781.8, - volume: 1107857 - }), - new StockGoogleItem( - { - date: `2016-07-09`, - open: 781.1, - high: 788.9, - low: 780.6, - close: 784.3, - volume: 1318894 - }), - new StockGoogleItem( - { - date: `2016-07-10`, - open: 783.8, - high: 786.8, - low: 782.8, - close: 784.7, - volume: 786363 - }), - new StockGoogleItem( - { - date: `2016-07-11`, - open: 785, - high: 789.8, - low: 783, - close: 784.9, - volume: 975113 - }), - new StockGoogleItem( - { - date: `2016-07-12`, - open: 781.5, - high: 783.4, - low: 780.4, - close: 783.2, - volume: 740498 - }), - new StockGoogleItem( - { - date: `2016-07-15`, - open: 783.8, - high: 787.5, - low: 780.1, - close: 782.4, - volume: 938186 - }), - new StockGoogleItem( - { - date: `2016-07-16`, - open: 780.3, - high: 781, - low: 773.4, - close: 777.1, - volume: 1028047 - }), - new StockGoogleItem( - { - date: `2016-07-17`, - open: 777.3, - high: 780.8, - low: 773.5, - close: 779.9, - volume: 924226 - }), - new StockGoogleItem( - { - date: `2016-07-18`, - open: 780, - high: 782.9, - low: 777, - close: 777.5, - volume: 719429 - }), - new StockGoogleItem( - { - date: `2016-07-19`, - open: 775, - high: 777.1, - low: 773.1, - close: 775.4, - volume: 861546 - }), - new StockGoogleItem( - { - date: `2016-07-22`, - open: 773.3, - high: 774.5, - low: 770, - close: 772.1, - volume: 951362 - }), - new StockGoogleItem( - { - date: `2016-07-23`, - open: 775.5, - high: 776.4, - low: 771.8, - close: 772.1, - volume: 928232 - }), - new StockGoogleItem( - { - date: `2016-07-24`, - open: 770.6, - high: 774.5, - low: 767.1, - close: 769.6, - volume: 1071999 - }), - new StockGoogleItem( - { - date: `2016-07-25`, - open: 767, - high: 771.9, - low: 763.2, - close: 769.4, - volume: 926883 - }), - new StockGoogleItem( - { - date: `2016-07-26`, - open: 769, - high: 776.1, - low: 765.9, - close: 769.5, - volume: 1166681 - }), - new StockGoogleItem( - { - date: `2016-07-29`, - open: 768.7, - high: 775, - low: 766.6, - close: 772.1, - volume: 847565 - }), - new StockGoogleItem( - { - date: `2016-07-30`, - open: 769.3, - high: 774.5, - low: 766.8, - close: 769.1, - volume: 1130029 - }), - new StockGoogleItem( - { - date: `2016-07-31`, - open: 767, - high: 769.1, - low: 765.4, - close: 767, - volume: 1248556 - }), - new StockGoogleItem( - { - date: `2016-08-01`, - open: 769.3, - high: 771, - low: 764.3, - close: 768.8, - volume: 925131 - }), - new StockGoogleItem( - { - date: `2016-08-02`, - open: 773, - high: 773.9, - low: 768.4, - close: 771.5, - volume: 1072658 - }), - new StockGoogleItem( - { - date: `2016-08-06`, - open: 773.5, - high: 782, - low: 771, - close: 780.1, - volume: 1442822 - }), - new StockGoogleItem( - { - date: `2016-08-07`, - open: 780, - high: 782.7, - low: 776.2, - close: 780.4, - volume: 894021 - }), - new StockGoogleItem( - { - date: `2016-08-08`, - open: 778.6, - high: 780.4, - low: 773.6, - close: 775.3, - volume: 1270264 - }), - new StockGoogleItem( - { - date: `2016-08-09`, - open: 770.1, - high: 773.2, - low: 759.7, - close: 759.7, - volume: 1885496 - }), - new StockGoogleItem( - { - date: `2016-08-12`, - open: 755.1, - high: 770.3, - low: 754, - close: 769, - volume: 1310986 - }), - new StockGoogleItem( - { - date: `2016-08-13`, - open: 764.5, - high: 766.2, - low: 755.8, - close: 759.7, - volume: 1395046 - }), - new StockGoogleItem( - { - date: `2016-08-14`, - open: 759.6, - high: 767.7, - low: 759.1, - close: 762.5, - volume: 1094490 - }), - new StockGoogleItem( - { - date: `2016-08-15`, - open: 762.9, - high: 773.8, - low: 760, - close: 771.8, - volume: 1346751 - }), - new StockGoogleItem( - { - date: `2016-08-16`, - open: 769.8, - high: 769.8, - low: 764.7, - close: 768.9, - volume: 2049338 - }), - new StockGoogleItem( - { - date: `2016-08-19`, - open: 772.4, - high: 774, - low: 764.4, - close: 765.7, - volume: 1172824 - }), - new StockGoogleItem( - { - date: `2016-08-20`, - open: 769, - high: 773.3, - low: 768.5, - close: 771.4, - volume: 978631 - }), - new StockGoogleItem( - { - date: `2016-08-21`, - open: 772.7, - high: 777.2, - low: 768.3, - close: 776.2, - volume: 1167810 - }), - new StockGoogleItem( - { - date: `2016-08-22`, - open: 780, - high: 789.9, - low: 778.4, - close: 787.2, - volume: 1486223 - }), - new StockGoogleItem( - { - date: `2016-08-23`, - open: 786.6, - high: 788.9, - low: 784.1, - close: 786.9, - volume: 1411937 - }), - new StockGoogleItem( - { - date: `2016-08-26`, - open: 782.7, - high: 782.7, - low: 773.1, - close: 774.2, - volume: 1533206 - }), - new StockGoogleItem( - { - date: `2016-08-27`, - open: 775.5, - high: 786, - low: 774.3, - close: 783, - volume: 1153247 - }), - new StockGoogleItem( - { - date: `2016-08-28`, - open: 777.9, - high: 781.8, - low: 775, - close: 781.6, - volume: 1109834 - }), - new StockGoogleItem( - { - date: `2016-08-29`, - open: 781.4, - high: 785.8, - low: 774.2, - close: 775, - volume: 1314746 - }), - new StockGoogleItem( - { - date: `2016-08-30`, - open: 776.3, - high: 780.9, - low: 774.1, - close: 777.3, - volume: 1585333 - }), - new StockGoogleItem( - { - date: `2016-09-03`, - open: 774.3, - high: 776.1, - low: 769.5, - close: 772.6, - volume: 1278821 - }), - new StockGoogleItem( - { - date: `2016-09-04`, - open: 776, - high: 778.7, - low: 772.9, - close: 776.4, - volume: 1201350 - }), - new StockGoogleItem( - { - date: `2016-09-05`, - open: 779.3, - high: 782.1, - low: 775.6, - close: 776.5, - volume: 1461151 - }), - new StockGoogleItem( - { - date: `2016-09-06`, - open: 779, - high: 780.5, - low: 775.5, - close: 776.9, - volume: 1070692 - }), - new StockGoogleItem( - { - date: `2016-09-07`, - open: 779.7, - high: 779.7, - low: 770.8, - close: 775.1, - volume: 933158 - }), - new StockGoogleItem( - { - date: `2016-09-10`, - open: 777.7, - high: 789.4, - low: 775.9, - close: 785.9, - volume: 1174923 - }), - new StockGoogleItem( - { - date: `2016-09-11`, - open: 786.7, - high: 792.3, - low: 780.6, - close: 783.1, - volume: 1372461 - }), - new StockGoogleItem( - { - date: `2016-09-12`, - open: 783.8, - high: 788.1, - low: 782.1, - close: 786.1, - volume: 937435 - }), - new StockGoogleItem( - { - date: `2016-09-13`, - open: 781.2, - high: 781.2, - low: 773, - close: 778.2, - volume: 1365277 - }), - new StockGoogleItem( - { - date: `2016-09-14`, - open: 781.6, - high: 784, - low: 776, - close: 778.5, - volume: 852487 - }), - new StockGoogleItem( - { - date: `2016-09-17`, - open: 779.8, - high: 785.9, - low: 777.5, - close: 780, - volume: 1092973 - }), - new StockGoogleItem( - { - date: `2016-09-18`, - open: 787.9, - high: 801.6, - low: 785.6, - close: 795.3, - volume: 2056903 - }), - new StockGoogleItem( - { - date: `2016-09-19`, - open: 798.9, - high: 804.6, - low: 797.6, - close: 801.6, - volume: 1766798 - }), - new StockGoogleItem( - { - date: `2016-09-20`, - open: 803.3, - high: 804, - low: 796, - close: 797, - volume: 1757528 - }), - new StockGoogleItem( - { - date: `2016-09-21`, - open: 795, - high: 799.5, - low: 794, - close: 799.4, - volume: 1266181 - }), - new StockGoogleItem( - { - date: `2016-09-24`, - open: 804.9, - high: 815.2, - low: 804.8, - close: 813.1, - volume: 1697514 - }), - new StockGoogleItem( - { - date: `2016-09-25`, - open: 816.7, - high: 816.7, - low: 805.1, - close: 807.7, - volume: 1576404 - }), - new StockGoogleItem( - { - date: `2016-09-26`, - open: 806.3, - high: 807, - low: 796.3, - close: 799.1, - volume: 1647733 - }), - new StockGoogleItem( - { - date: `2016-09-27`, - open: 801, - high: 803.5, - low: 791.5, - close: 795.4, - volume: 2749221 - }), - new StockGoogleItem( - { - date: `2016-09-28`, - open: 808.4, - high: 815.5, - low: 793.6, - close: 795.4, - volume: 4269902 - }), - new StockGoogleItem( - { - date: `2016-09-31`, - open: 795.5, - high: 796.9, - low: 784, - close: 784.5, - volume: 2427284 - }), - new StockGoogleItem( - { - date: `2016-10-01`, - open: 782.9, - high: 789.5, - low: 775.5, - close: 783.6, - volume: 2406356 - }), - new StockGoogleItem( - { - date: `2016-10-02`, - open: 778.2, - high: 781.6, - low: 763.5, - close: 768.7, - volume: 1918414 - }), - new StockGoogleItem( - { - date: `2016-10-03`, - open: 767.3, - high: 770, - low: 759, - close: 762.1, - volume: 1943175 - }), - new StockGoogleItem( - { - date: `2016-10-04`, - open: 750.7, - high: 770.4, - low: 750.6, - close: 762, - volume: 2134812 - }), - new StockGoogleItem( - { - date: `2016-10-07`, - open: 774.5, - high: 785.2, - low: 772.5, - close: 782.5, - volume: 1585070 - }), - new StockGoogleItem( - { - date: `2016-10-08`, - open: 783.4, - high: 795.6, - low: 780.2, - close: 790.5, - volume: 1366873 - }), - new StockGoogleItem( - { - date: `2016-10-09`, - open: 779.9, - high: 791.2, - low: 771.7, - close: 785.3, - volume: 2607121 - }), - new StockGoogleItem( - { - date: `2016-10-10`, - open: 791.2, - high: 791.2, - low: 752.2, - close: 762.6, - volume: 4745183 - }), - new StockGoogleItem( - { - date: `2016-10-11`, - open: 756.5, - high: 760.8, - low: 750.4, - close: 754, - volume: 2431815 - }), - new StockGoogleItem( - { - date: `2016-10-14`, - open: 755.6, - high: 757.9, - low: 727.5, - close: 736.1, - volume: 3654385 - }), - new StockGoogleItem( - { - date: `2016-10-15`, - open: 747, - high: 764.4, - low: 747, - close: 758.5, - volume: 2384001 - }), - new StockGoogleItem( - { - date: `2016-10-16`, - open: 755.2, - high: 766.4, - low: 750.5, - close: 764.5, - volume: 1472594 - }), - new StockGoogleItem( - { - date: `2016-10-17`, - open: 766.9, - high: 772.7, - low: 764.2, - close: 771.2, - volume: 1286961 - }), - new StockGoogleItem( - { - date: `2016-10-18`, - open: 771.4, - high: 775, - low: 760, - close: 760.5, - volume: 1547145 - }), - new StockGoogleItem( - { - date: `2016-10-21`, - open: 762.6, - high: 769.7, - low: 760.6, - close: 769.2, - volume: 1330639 - }), - new StockGoogleItem( - { - date: `2016-10-22`, - open: 772.6, - high: 777, - low: 767, - close: 768.3, - volume: 1593108 - }), - new StockGoogleItem( - { - date: `2016-10-23`, - open: 767.7, - high: 768.3, - low: 755.3, - close: 761, - volume: 1478417 - }), - new StockGoogleItem( - { - date: `2016-10-25`, - open: 764.3, - high: 765, - low: 760.5, - close: 761.7, - volume: 587421 - }), - new StockGoogleItem( - { - date: `2016-10-28`, - open: 760, - high: 779.5, - low: 759.8, - close: 768.2, - volume: 2188151 - }), - new StockGoogleItem( - { - date: `2016-10-29`, - open: 771.5, - high: 778.5, - low: 768.2, - close: 770.8, - volume: 1616618 - }), - new StockGoogleItem( - { - date: `2016-10-30`, - open: 770.1, - high: 773, - low: 754.8, - close: 758, - volume: 2392890 - }), - new StockGoogleItem( - { - date: `2016-11-01`, - open: 757.4, - high: 759.9, - low: 737, - close: 747.9, - volume: 3017947 - }), - new StockGoogleItem( - { - date: `2016-11-02`, - open: 744.6, - high: 754, - low: 743.1, - close: 750.5, - volume: 1452484 - }), - new StockGoogleItem( - { - date: `2016-11-05`, - open: 757.7, - high: 763.9, - low: 752.9, - close: 762.5, - volume: 1394223 - }), - new StockGoogleItem( - { - date: `2016-11-06`, - open: 764.7, - high: 768.8, - low: 757.3, - close: 759.1, - volume: 1690689 - }), - new StockGoogleItem( - { - date: `2016-11-07`, - open: 761, - high: 771.4, - low: 755.8, - close: 771.2, - volume: 1760966 - }), - new StockGoogleItem( - { - date: `2016-11-08`, - open: 772.5, - high: 778.2, - low: 767.2, - close: 776.4, - volume: 1488059 - }), - new StockGoogleItem( - { - date: `2016-11-09`, - open: 780, - high: 789.4, - low: 779, - close: 789.3, - volume: 1821914 - }), - new StockGoogleItem( - { - date: `2016-11-12`, - open: 785, - high: 791.3, - low: 784.4, - close: 789.3, - volume: 2104117 - }), - new StockGoogleItem( - { - date: `2016-11-13`, - open: 793.9, - high: 804.4, - low: 793.3, - close: 796.1, - volume: 2145209 - }), - new StockGoogleItem( - { - date: `2016-11-14`, - open: 797.4, - high: 804, - low: 794, - close: 797.1, - volume: 1704150 - }), - new StockGoogleItem( - { - date: `2016-11-15`, - open: 797.3, - high: 803, - low: 792.9, - close: 797.9, - volume: 1626499 - }), - new StockGoogleItem( - { - date: `2016-11-16`, - open: 800.4, - high: 800.9, - low: 790.3, - close: 790.8, - volume: 2443796 - }), - new StockGoogleItem( - { - date: `2016-11-19`, - open: 790.2, - high: 797.7, - low: 786.3, - close: 794.2, - volume: 1232087 - }), - new StockGoogleItem( - { - date: `2016-11-20`, - open: 796.8, - high: 798.6, - low: 793.3, - close: 796.4, - volume: 951014 - }), - new StockGoogleItem( - { - date: `2016-11-21`, - open: 795.8, - high: 796.7, - low: 787.1, - close: 794.6, - volume: 1211346 - }), - new StockGoogleItem( - { - date: `2016-11-22`, - open: 792.4, - high: 793.3, - low: 788.6, - close: 791.3, - volume: 972169 - }), - new StockGoogleItem( - { - date: `2016-11-23`, - open: 790.9, - high: 792.7, - low: 787.3, - close: 789.9, - volume: 623944 - }), - new StockGoogleItem( - { - date: `2016-11-27`, - open: 790.7, - high: 797.9, - low: 787.7, - close: 791.5, - volume: 789321 - }), - new StockGoogleItem( - { - date: `2016-11-28`, - open: 793.7, - high: 794.2, - low: 783.2, - close: 785, - volume: 1153824 - }), - new StockGoogleItem( - { - date: `2016-11-29`, - open: 783.3, - high: 785.9, - low: 778.9, - close: 782.8, - volume: 744272 - }), - new StockGoogleItem( - { - date: `2016-11-30`, - open: 782.8, - high: 782.8, - low: 770.4, - close: 771.8, - volume: 1769950 - }), - new StockGoogleItem( - { - date: `2017-00-03`, - open: 778.8, - high: 789.6, - low: 775.8, - close: 786.1, - volume: 1657268 - }), - new StockGoogleItem( - { - date: `2017-00-04`, - open: 788.4, - high: 791.3, - low: 783.2, - close: 786.9, - volume: 1072958 - }), - new StockGoogleItem( - { - date: `2017-00-05`, - open: 786.1, - high: 794.5, - low: 785, - close: 794, - volume: 1335167 - }), - new StockGoogleItem( - { - date: `2017-00-06`, - open: 795.3, - high: 807.9, - low: 792.2, - close: 806.1, - volume: 1640170 - }), - new StockGoogleItem( - { - date: `2017-00-09`, - open: 806.4, - high: 810, - low: 802.8, - close: 806.6, - volume: 1274645 - }), - new StockGoogleItem( - { - date: `2017-00-10`, - open: 807.9, - high: 809.1, - low: 803.5, - close: 804.8, - volume: 1176780 - }), - new StockGoogleItem( - { - date: `2017-00-11`, - open: 805, - high: 808.1, - low: 801.4, - close: 807.9, - volume: 1065936 - }), - new StockGoogleItem( - { - date: `2017-00-12`, - open: 807.1, - high: 807.4, - low: 799.2, - close: 806.4, - volume: 1353057 - }), - new StockGoogleItem( - { - date: `2017-00-13`, - open: 807.5, - high: 811.2, - low: 806.7, - close: 807.9, - volume: 1099215 - }), - new StockGoogleItem( - { - date: `2017-00-17`, - open: 807.1, - high: 807.1, - low: 800.4, - close: 804.6, - volume: 1362115 - }), - new StockGoogleItem( - { - date: `2017-00-18`, - open: 805.8, - high: 806.2, - low: 801, - close: 806.1, - volume: 1294407 - }), - new StockGoogleItem( - { - date: `2017-00-19`, - open: 805.1, - high: 809.5, - low: 801.8, - close: 802.2, - volume: 919325 - }), - new StockGoogleItem( - { - date: `2017-00-20`, - open: 806.9, - high: 806.9, - low: 801.7, - close: 805, - volume: 1670045 - }), - new StockGoogleItem( - { - date: `2017-00-23`, - open: 807.3, - high: 820.9, - low: 803.7, - close: 819.3, - volume: 1963628 - }), - new StockGoogleItem( - { - date: `2017-00-24`, - open: 822.3, - high: 825.9, - low: 817.8, - close: 823.9, - volume: 1474010 - }), - new StockGoogleItem( - { - date: `2017-00-25`, - open: 829.6, - high: 835.8, - low: 825.1, - close: 835.7, - volume: 1627304 - }), - new StockGoogleItem( - { - date: `2017-00-26`, - open: 837.8, - high: 838, - low: 827, - close: 832.1, - volume: 2973891 - }), - new StockGoogleItem( - { - date: `2017-00-27`, - open: 834.7, - high: 842, - low: 820.4, - close: 823.3, - volume: 2965771 - }), - new StockGoogleItem( - { - date: `2017-00-30`, - open: 814.7, - high: 815.8, - low: 799.8, - close: 802.3, - volume: 3246573 - }), - new StockGoogleItem( - { - date: `2017-00-31`, - open: 796.9, - high: 801.3, - low: 790.5, - close: 796.8, - volume: 2160556 - }), - new StockGoogleItem( - { - date: `2017-01-01`, - open: 799.7, - high: 801.2, - low: 791.2, - close: 795.7, - volume: 2029744 - }), - new StockGoogleItem( - { - date: `2017-01-02`, - open: 793.8, - high: 802.7, - low: 792, - close: 798.5, - volume: 1532138 - }), - new StockGoogleItem( - { - date: `2017-01-03`, - open: 803, - high: 806, - low: 800.4, - close: 801.5, - volume: 1463448 - }), - new StockGoogleItem( - { - date: `2017-01-06`, - open: 799.7, - high: 801.7, - low: 795.3, - close: 801.3, - volume: 1184483 - }), - new StockGoogleItem( - { - date: `2017-01-07`, - open: 804, - high: 810.5, - low: 801.8, - close: 807, - volume: 1241221 - }), - new StockGoogleItem( - { - date: `2017-01-08`, - open: 807, - high: 811.8, - low: 803.2, - close: 808.4, - volume: 1155990 - }), - new StockGoogleItem( - { - date: `2017-01-09`, - open: 809.5, - high: 810.7, - low: 804.5, - close: 809.6, - volume: 990391 - }), - new StockGoogleItem( - { - date: `2017-01-10`, - open: 811.7, - high: 815.3, - low: 809.8, - close: 813.7, - volume: 1134976 - }), - new StockGoogleItem( - { - date: `2017-01-13`, - open: 816, - high: 821, - low: 815.5, - close: 819.2, - volume: 1213324 - }), - new StockGoogleItem( - { - date: `2017-01-14`, - open: 819, - high: 823, - low: 816, - close: 820.5, - volume: 1054732 - }), - new StockGoogleItem( - { - date: `2017-01-15`, - open: 819.4, - high: 823, - low: 818.5, - close: 819, - volume: 1313617 - }), - new StockGoogleItem( - { - date: `2017-01-16`, - open: 819.9, - high: 824.4, - low: 819, - close: 824.2, - volume: 1287626 - }), - new StockGoogleItem( - { - date: `2017-01-17`, - open: 823, - high: 828.1, - low: 821.7, - close: 828.1, - volume: 1611039 - }), - new StockGoogleItem( - { - date: `2017-01-21`, - open: 828.7, - high: 833.5, - low: 828.4, - close: 831.7, - volume: 1262337 - }), - new StockGoogleItem( - { - date: `2017-01-22`, - open: 828.7, - high: 833.3, - low: 828.6, - close: 830.8, - volume: 987248 - }), - new StockGoogleItem( - { - date: `2017-01-23`, - open: 830.1, - high: 832.5, - low: 822.9, - close: 831.3, - volume: 1472771 - }), - new StockGoogleItem( - { - date: `2017-01-24`, - open: 827.7, - high: 829, - low: 824.2, - close: 828.6, - volume: 1392202 - }), - new StockGoogleItem( - { - date: `2017-01-27`, - open: 824.5, - high: 830.5, - low: 824, - close: 829.3, - volume: 1101466 - }), - new StockGoogleItem( - { - date: `2017-01-28`, - open: 825.6, - high: 828.5, - low: 820.2, - close: 823.2, - volume: 2260769 - }), - new StockGoogleItem( - { - date: `2017-02-01`, - open: 828.9, - high: 836.3, - low: 827.3, - close: 835.2, - volume: 1496540 - }), - new StockGoogleItem( - { - date: `2017-02-02`, - open: 833.9, - high: 834.5, - low: 829.6, - close: 830.6, - volume: 942476 - }), - new StockGoogleItem( - { - date: `2017-02-03`, - open: 830.6, - high: 831.4, - low: 825.8, - close: 829.1, - volume: 896378 - }), - new StockGoogleItem( - { - date: `2017-02-06`, - open: 827, - high: 828.9, - low: 822.4, - close: 827.8, - volume: 1109037 - }), - new StockGoogleItem( - { - date: `2017-02-07`, - open: 827.4, - high: 833.4, - low: 826.5, - close: 831.9, - volume: 1037630 - }), - new StockGoogleItem( - { - date: `2017-02-08`, - open: 833.5, - high: 838.1, - low: 831.8, - close: 835.4, - volume: 989773 - }), - new StockGoogleItem( - { - date: `2017-02-09`, - open: 836, - high: 842, - low: 834.2, - close: 838.7, - volume: 1261517 - }), - new StockGoogleItem( - { - date: `2017-02-10`, - open: 843.3, - high: 844.9, - low: 839.5, - close: 843.3, - volume: 1704024 - }), - new StockGoogleItem( - { - date: `2017-02-13`, - open: 844, - high: 848.7, - low: 843.3, - close: 845.5, - volume: 1223647 - }), - new StockGoogleItem( - { - date: `2017-02-14`, - open: 843.6, - high: 847.2, - low: 840.8, - close: 845.6, - volume: 780198 - }), - new StockGoogleItem( - { - date: `2017-02-15`, - open: 847.6, - high: 848.6, - low: 840.8, - close: 847.2, - volume: 1381474 - }), - new StockGoogleItem( - { - date: `2017-02-16`, - open: 849, - high: 850.9, - low: 846.1, - close: 848.8, - volume: 977560 - }), - new StockGoogleItem( - { - date: `2017-02-17`, - open: 851.6, - high: 853.4, - low: 847.1, - close: 852.1, - volume: 1716471 - }), - new StockGoogleItem( - { - date: `2017-02-20`, - open: 850, - high: 850.2, - low: 845.1, - close: 848.4, - volume: 1231521 - }), - new StockGoogleItem( - { - date: `2017-02-21`, - open: 851.4, - high: 853.5, - low: 829, - close: 830.5, - volume: 2463484 - }), - new StockGoogleItem( - { - date: `2017-02-22`, - open: 831.9, - high: 835.5, - low: 827.2, - close: 829.6, - volume: 1401465 - }), - new StockGoogleItem( - { - date: `2017-02-23`, - open: 821, - high: 822.6, - low: 812.3, - close: 817.6, - volume: 3487056 - }), - new StockGoogleItem( - { - date: `2017-02-24`, - open: 820.1, - high: 821.9, - low: 808.9, - close: 814.4, - volume: 1981006 - }), - new StockGoogleItem( - { - date: `2017-02-27`, - open: 807, - high: 821.6, - low: 803.4, - close: 819.5, - volume: 1894990 - }), - new StockGoogleItem( - { - date: `2017-02-28`, - open: 820.4, - high: 826, - low: 814, - close: 820.9, - volume: 1620542 - }), - new StockGoogleItem( - { - date: `2017-02-29`, - open: 825, - high: 832.8, - low: 822.4, - close: 831.4, - volume: 1786321 - }), - new StockGoogleItem( - { - date: `2017-02-30`, - open: 833.5, - high: 833.7, - low: 829, - close: 831.5, - volume: 1055339 - }), - new StockGoogleItem( - { - date: `2017-02-31`, - open: 829, - high: 831.6, - low: 827.4, - close: 829.6, - volume: 1401893 - }), - new StockGoogleItem( - { - date: `2017-03-03`, - open: 829.2, - high: 840.9, - low: 829.2, - close: 838.5, - volume: 1671503 - }), - new StockGoogleItem( - { - date: `2017-03-04`, - open: 831.4, - high: 835.2, - low: 829, - close: 834.6, - volume: 1045363 - }), - new StockGoogleItem( - { - date: `2017-03-05`, - open: 835.5, - high: 842.5, - low: 830.7, - close: 831.4, - volume: 1555328 - }), - new StockGoogleItem( - { - date: `2017-03-06`, - open: 832.4, - high: 836.4, - low: 826.5, - close: 827.9, - volume: 1254433 - }), - new StockGoogleItem( - { - date: `2017-03-07`, - open: 828, - high: 828.5, - low: 820.5, - close: 824.7, - volume: 1057253 - }), - new StockGoogleItem( - { - date: `2017-03-10`, - open: 825.4, - high: 829.4, - low: 823.8, - close: 824.7, - volume: 978905 - }), - new StockGoogleItem( - { - date: `2017-03-11`, - open: 824.7, - high: 827.4, - low: 817, - close: 823.4, - volume: 1079732 - }), - new StockGoogleItem( - { - date: `2017-03-12`, - open: 821.9, - high: 826.7, - low: 821, - close: 824.3, - volume: 900480 - }), - new StockGoogleItem( - { - date: `2017-03-13`, - open: 822.1, - high: 826.4, - low: 821.4, - close: 823.6, - volume: 1122362 - }), - new StockGoogleItem( - { - date: `2017-03-17`, - open: 825, - high: 837.8, - low: 824.5, - close: 837.2, - volume: 895015 - }), - new StockGoogleItem( - { - date: `2017-03-18`, - open: 834.2, - high: 838.9, - low: 832.7, - close: 836.8, - volume: 836722 - }), - new StockGoogleItem( - { - date: `2017-03-19`, - open: 839.8, - high: 842.2, - low: 836.3, - close: 838.2, - volume: 954330 - }), - new StockGoogleItem( - { - date: `2017-03-20`, - open: 841.4, - high: 845.2, - low: 839.3, - close: 841.6, - volume: 959031 - }), - new StockGoogleItem( - { - date: `2017-03-21`, - open: 842.9, - high: 843.9, - low: 840.6, - close: 843.2, - volume: 1323583 - }), - new StockGoogleItem( - { - date: `2017-03-24`, - open: 851.2, - high: 863.5, - low: 849.9, - close: 862.8, - volume: 1372541 - }), - new StockGoogleItem( - { - date: `2017-03-25`, - open: 865, - high: 875, - low: 862.8, - close: 872.3, - volume: 1671972 - }), - new StockGoogleItem( - { - date: `2017-03-26`, - open: 874.2, - high: 876, - low: 867.8, - close: 871.7, - volume: 1237167 - }), - new StockGoogleItem( - { - date: `2017-03-27`, - open: 873.6, - high: 875.4, - low: 870.4, - close: 874.3, - volume: 2026816 - }), - new StockGoogleItem( - { - date: `2017-03-28`, - open: 910.7, - high: 916.9, - low: 905.8, - close: 906, - volume: 3276255 - }), - new StockGoogleItem( - { - date: `2017-04-01`, - open: 901.9, - high: 915.7, - low: 901.5, - close: 912.6, - volume: 2115993 - }), - new StockGoogleItem( - { - date: `2017-04-02`, - open: 909.6, - high: 920.8, - low: 909.5, - close: 916.4, - volume: 1587219 - }), - new StockGoogleItem( - { - date: `2017-04-03`, - open: 914.9, - high: 928.1, - low: 912.5, - close: 927, - volume: 1499532 - }), - new StockGoogleItem( - { - date: `2017-04-04`, - open: 926.1, - high: 935.9, - low: 924.6, - close: 931.7, - volume: 1422144 - }), - new StockGoogleItem( - { - date: `2017-04-05`, - open: 933.5, - high: 934.9, - low: 925.2, - close: 927.1, - volume: 1911275 - }), - new StockGoogleItem( - { - date: `2017-04-08`, - open: 926.1, - high: 936.9, - low: 925.3, - close: 934.3, - volume: 1329825 - }), - new StockGoogleItem( - { - date: `2017-04-09`, - open: 937, - high: 937.5, - low: 929.5, - close: 932.2, - volume: 1581809 - }), - new StockGoogleItem( - { - date: `2017-04-10`, - open: 932, - high: 932, - low: 925.2, - close: 928.8, - volume: 1173925 - }), - new StockGoogleItem( - { - date: `2017-04-11`, - open: 925.3, - high: 932.5, - low: 923, - close: 930.6, - volume: 835386 - }), - new StockGoogleItem( - { - date: `2017-04-12`, - open: 931.5, - high: 933.4, - low: 927.9, - close: 932.2, - volume: 1050601 - }), - new StockGoogleItem( - { - date: `2017-04-15`, - open: 933, - high: 938.3, - low: 929.3, - close: 937.1, - volume: 1108496 - }), - new StockGoogleItem( - { - date: `2017-04-16`, - open: 940, - high: 943.1, - low: 937.6, - close: 943, - volume: 969479 - }), - new StockGoogleItem( - { - date: `2017-04-17`, - open: 935.7, - high: 939.3, - low: 918.1, - close: 919.6, - volume: 2362072 - }), - new StockGoogleItem( - { - date: `2017-04-18`, - open: 921, - high: 933.2, - low: 918.8, - close: 930.2, - volume: 1596897 - }), - new StockGoogleItem( - { - date: `2017-04-19`, - open: 931.5, - high: 937.8, - low: 931, - close: 934, - volume: 1393024 - }), - new StockGoogleItem( - { - date: `2017-04-22`, - open: 935, - high: 941.9, - low: 935, - close: 941.9, - volume: 1120385 - }), - new StockGoogleItem( - { - date: `2017-04-23`, - open: 947.9, - high: 951.5, - low: 942.6, - close: 948.8, - volume: 1270817 - }), - new StockGoogleItem( - { - date: `2017-04-24`, - open: 953, - high: 955.1, - low: 949.5, - close: 955, - volume: 1034199 - }), - new StockGoogleItem( - { - date: `2017-04-25`, - open: 957.3, - high: 972.6, - low: 955.5, - close: 969.5, - volume: 1660474 - }), - new StockGoogleItem( - { - date: `2017-04-26`, - open: 969.7, - high: 975, - low: 965, - close: 971.5, - volume: 1252010 - }), - new StockGoogleItem( - { - date: `2017-04-30`, - open: 970.3, - high: 976.2, - low: 969.5, - close: 975.9, - volume: 1466654 - }), - new StockGoogleItem( - { - date: `2017-04-31`, - open: 975, - high: 979.3, - low: 960.2, - close: 964.9, - volume: 2448067 - }), - new StockGoogleItem( - { - date: `2017-05-01`, - open: 969, - high: 971.5, - low: 960, - close: 967, - volume: 1410458 - }), - new StockGoogleItem( - { - date: `2017-05-02`, - open: 969.5, - high: 975.9, - low: 966, - close: 975.6, - volume: 1750955 - }), - new StockGoogleItem( - { - date: `2017-05-05`, - open: 976.5, - high: 986.9, - low: 975.1, - close: 983.7, - volume: 1252106 - }), - new StockGoogleItem( - { - date: `2017-05-06`, - open: 983.2, - high: 988.3, - low: 975.1, - close: 976.6, - volume: 1814624 - }), - new StockGoogleItem( - { - date: `2017-05-07`, - open: 979.6, - high: 984.1, - low: 975.8, - close: 981.1, - volume: 1453874 - }), - new StockGoogleItem( - { - date: `2017-05-08`, - open: 982.4, - high: 984.6, - low: 977.2, - close: 983.4, - volume: 1481916 - }), - new StockGoogleItem( - { - date: `2017-05-09`, - open: 984.5, - high: 984.5, - low: 935.6, - close: 949.8, - volume: 3309389 - }), - new StockGoogleItem( - { - date: `2017-05-12`, - open: 939.6, - high: 949.4, - low: 915.2, - close: 942.9, - volume: 3763529 - }), - new StockGoogleItem( - { - date: `2017-05-13`, - open: 951.9, - high: 960, - low: 944.1, - close: 953.4, - volume: 2013337 - }), - new StockGoogleItem( - { - date: `2017-05-14`, - open: 959.9, - high: 961.1, - low: 942.3, - close: 950.8, - volume: 1489715 - }), - new StockGoogleItem( - { - date: `2017-05-15`, - open: 934, - high: 943.3, - low: 924.4, - close: 942.3, - volume: 2133050 - }), - new StockGoogleItem( - { - date: `2017-05-16`, - open: 940, - high: 942, - low: 931.6, - close: 939.8, - volume: 3094711 - }), - new StockGoogleItem( - { - date: `2017-05-19`, - open: 950, - high: 960, - low: 949, - close: 957.4, - volume: 1533336 - }), - new StockGoogleItem( - { - date: `2017-05-20`, - open: 957.5, - high: 961.6, - low: 950, - close: 950.6, - volume: 1125990 - }), - new StockGoogleItem( - { - date: `2017-05-21`, - open: 953.6, - high: 960.1, - low: 950.8, - close: 959.5, - volume: 1202233 - }), - new StockGoogleItem( - { - date: `2017-05-22`, - open: 958.7, - high: 960.7, - low: 954.5, - close: 957.1, - volume: 941958 - }), - new StockGoogleItem( - { - date: `2017-05-23`, - open: 956.8, - high: 966, - low: 954.2, - close: 965.6, - volume: 1527856 - }), - new StockGoogleItem( - { - date: `2017-05-26`, - open: 969.9, - high: 973.3, - low: 950.8, - close: 952.3, - volume: 1598355 - }), - new StockGoogleItem( - { - date: `2017-05-27`, - open: 942.5, - high: 948.3, - low: 926.9, - close: 927.3, - volume: 2579930 - }), - new StockGoogleItem( - { - date: `2017-05-28`, - open: 929, - high: 942.8, - low: 916, - close: 940.5, - volume: 2721406 - }), - new StockGoogleItem( - { - date: `2017-05-29`, - open: 929.9, - high: 931.3, - low: 910.6, - close: 917.8, - volume: 3299176 - }), - new StockGoogleItem( - { - date: `2017-05-30`, - open: 926, - high: 926, - low: 908.3, - close: 908.7, - volume: 2090226 - }), - new StockGoogleItem( - { - date: `2017-06-03`, - open: 912.2, - high: 913.9, - low: 894.8, - close: 898.7, - volume: 1710373 - }), - new StockGoogleItem( - { - date: `2017-06-05`, - open: 901.8, - high: 914.5, - low: 898.5, - close: 911.7, - volume: 1813884 - }), - new StockGoogleItem( - { - date: `2017-06-06`, - open: 904.1, - high: 914.9, - low: 899.7, - close: 906.7, - volume: 1424503 - }), - new StockGoogleItem( - { - date: `2017-06-07`, - open: 908.9, - high: 921.5, - low: 908.9, - close: 918.6, - volume: 1637785 - }), - new StockGoogleItem( - { - date: `2017-06-10`, - open: 921.8, - high: 930.4, - low: 919.6, - close: 928.8, - volume: 1192825 - }), - new StockGoogleItem( - { - date: `2017-06-11`, - open: 929.5, - high: 931.4, - low: 922, - close: 930.1, - volume: 1113235 - }), - new StockGoogleItem( - { - date: `2017-06-12`, - open: 938.7, - high: 946.3, - low: 934.5, - close: 943.8, - volume: 1532144 - }), - new StockGoogleItem( - { - date: `2017-06-13`, - open: 946.3, - high: 954.5, - low: 943, - close: 947.2, - volume: 1294687 - }), - new StockGoogleItem( - { - date: `2017-06-14`, - open: 952, - high: 956.9, - low: 948, - close: 956, - volume: 1053774 - }), - new StockGoogleItem( - { - date: `2017-06-17`, - open: 957, - high: 960.7, - low: 949.2, - close: 953.4, - volume: 1165537 - }), - new StockGoogleItem( - { - date: `2017-06-18`, - open: 953, - high: 968, - low: 950.6, - close: 965.4, - volume: 1153964 - }), - new StockGoogleItem( - { - date: `2017-06-19`, - open: 967.8, - high: 973, - low: 964, - close: 970.9, - volume: 1224540 - }), - new StockGoogleItem( - { - date: `2017-06-20`, - open: 975, - high: 975.9, - low: 961.5, - close: 968.1, - volume: 1624463 - }), - new StockGoogleItem( - { - date: `2017-06-21`, - open: 962.3, - high: 973.2, - low: 960.1, - close: 972.9, - volume: 1711000 - }), - new StockGoogleItem( - { - date: `2017-06-24`, - open: 972.2, - high: 986.2, - low: 970.8, - close: 980.3, - volume: 3248347 - }), - new StockGoogleItem( - { - date: `2017-06-25`, - open: 953.8, - high: 959.7, - low: 945.4, - close: 950.7, - volume: 4660979 - }), - new StockGoogleItem( - { - date: `2017-06-26`, - open: 954.7, - high: 955, - low: 942.3, - close: 947.8, - volume: 2088256 - }), - new StockGoogleItem( - { - date: `2017-06-27`, - open: 951.8, - high: 951.8, - low: 920, - close: 934.1, - volume: 3212996 - }), - new StockGoogleItem( - { - date: `2017-06-28`, - open: 929.4, - high: 943.8, - low: 927.5, - close: 941.5, - volume: 1846351 - }), - new StockGoogleItem( - { - date: `2017-06-31`, - open: 941.9, - high: 943.6, - low: 926, - close: 930.5, - volume: 1970095 - }), - new StockGoogleItem( - { - date: `2017-07-01`, - open: 932.4, - high: 937.5, - low: 929.3, - close: 930.8, - volume: 1277734 - }), - new StockGoogleItem( - { - date: `2017-07-02`, - open: 928.6, - high: 932.6, - low: 916.7, - close: 930.4, - volume: 1824448 - }), - new StockGoogleItem( - { - date: `2017-07-03`, - open: 930.3, - high: 932.2, - low: 922.2, - close: 923.6, - volume: 1202512 - }), - new StockGoogleItem( - { - date: `2017-07-04`, - open: 926.8, - high: 930.3, - low: 923, - close: 928, - volume: 1082267 - }), - new StockGoogleItem( - { - date: `2017-07-07`, - open: 929.1, - high: 931.7, - low: 926.5, - close: 929.4, - volume: 1032239 - }), - new StockGoogleItem( - { - date: `2017-07-08`, - open: 927.1, - high: 935.8, - low: 925.6, - close: 926.8, - volume: 1061579 - }), - new StockGoogleItem( - { - date: `2017-07-09`, - open: 920.6, - high: 926, - low: 917.3, - close: 922.9, - volume: 1192081 - }), - new StockGoogleItem( - { - date: `2017-07-10`, - open: 917.5, - high: 919.3, - low: 906.1, - close: 907.2, - volume: 1823967 - }), - new StockGoogleItem( - { - date: `2017-07-11`, - open: 908, - high: 917.8, - low: 905.6, - close: 914.4, - volume: 1206782 - }), - new StockGoogleItem( - { - date: `2017-07-14`, - open: 922.5, - high: 924.7, - low: 918.2, - close: 922.7, - volume: 1064530 - }), - new StockGoogleItem( - { - date: `2017-07-15`, - open: 924.2, - high: 926.5, - low: 919.8, - close: 922.2, - volume: 883369 - }), - new StockGoogleItem( - { - date: `2017-07-16`, - open: 925.3, - high: 932.7, - low: 923.4, - close: 927, - volume: 1006711 - }), - new StockGoogleItem( - { - date: `2017-07-17`, - open: 925.8, - high: 926.9, - low: 911, - close: 911, - volume: 1277238 - }), - new StockGoogleItem( - { - date: `2017-07-18`, - open: 910.3, - high: 915.3, - low: 907.1, - close: 910.7, - volume: 1342689 - }), - new StockGoogleItem( - { - date: `2017-07-21`, - open: 910, - high: 913, - low: 903.4, - close: 906.7, - volume: 943441 - }), - new StockGoogleItem( - { - date: `2017-07-22`, - open: 912.7, - high: 925.9, - low: 911.5, - close: 924.7, - volume: 1166737 - }), - new StockGoogleItem( - { - date: `2017-07-23`, - open: 921.9, - high: 929.9, - low: 919.4, - close: 927, - volume: 1090248 - }), - new StockGoogleItem( - { - date: `2017-07-24`, - open: 928.7, - high: 930.8, - low: 915.5, - close: 921.3, - volume: 1270306 - }), - new StockGoogleItem( - { - date: `2017-07-25`, - open: 923.5, - high: 925.6, - low: 915.5, - close: 915.9, - volume: 1053376 - }), - new StockGoogleItem( - { - date: `2017-07-28`, - open: 916, - high: 919.2, - low: 911.9, - close: 913.8, - volume: 1086484 - }), - new StockGoogleItem( - { - date: `2017-07-29`, - open: 905.1, - high: 923.3, - low: 905, - close: 921.3, - volume: 1185564 - }), - new StockGoogleItem( - { - date: `2017-07-30`, - open: 920, - high: 930.8, - low: 919.6, - close: 929.6, - volume: 1301225 - }), - new StockGoogleItem( - { - date: `2017-07-31`, - open: 931.8, - high: 942, - low: 931.8, - close: 939.3, - volume: 1582579 - }), - new StockGoogleItem( - { - date: `2017-08-01`, - open: 941.1, - high: 942.5, - low: 935.1, - close: 937.3, - volume: 947374 - }), - new StockGoogleItem( - { - date: `2017-08-05`, - open: 933.1, - high: 937, - low: 922, - close: 928.5, - volume: 1348292 - }), - new StockGoogleItem( - { - date: `2017-08-06`, - open: 930.1, - high: 930.9, - low: 919.3, - close: 927.8, - volume: 1527650 - }), - new StockGoogleItem( - { - date: `2017-08-07`, - open: 931.7, - high: 936.4, - low: 923.6, - close: 936, - volume: 1212743 - }), - new StockGoogleItem( - { - date: `2017-08-08`, - open: 936.5, - high: 937, - low: 924.9, - close: 926.5, - volume: 1011538 - }), - new StockGoogleItem( - { - date: `2017-08-11`, - open: 934.3, - high: 938.4, - low: 926.9, - close: 929.1, - volume: 1266991 - }), - new StockGoogleItem( - { - date: `2017-08-12`, - open: 932.6, - high: 933.5, - low: 923.9, - close: 932.1, - volume: 1134397 - }), - new StockGoogleItem( - { - date: `2017-08-13`, - open: 930.7, - high: 937.3, - low: 929.9, - close: 935.1, - volume: 1102631 - }), - new StockGoogleItem( - { - date: `2017-08-14`, - open: 931.3, - high: 932.8, - low: 924, - close: 925.1, - volume: 1397644 - }), - new StockGoogleItem( - { - date: `2017-08-15`, - open: 924.7, - high: 926.5, - low: 916.4, - close: 920.3, - volume: 2505430 - }), - new StockGoogleItem( - { - date: `2017-08-18`, - open: 920, - high: 922.1, - low: 910.6, - close: 915, - volume: 1306922 - }), - new StockGoogleItem( - { - date: `2017-08-19`, - open: 917.4, - high: 922.4, - low: 912.5, - close: 921.8, - volume: 936654 - }), - new StockGoogleItem( - { - date: `2017-08-20`, - open: 923, - high: 933.9, - low: 922, - close: 931.6, - volume: 1669763 - }), - new StockGoogleItem( - { - date: `2017-08-21`, - open: 933, - high: 936.5, - low: 923.8, - close: 932.5, - volume: 1290607 - }), - new StockGoogleItem( - { - date: `2017-08-22`, - open: 927.8, - high: 934.7, - low: 926.5, - close: 928.5, - volume: 1052704 - }), - new StockGoogleItem( - { - date: `2017-08-25`, - open: 925.5, - high: 926.4, - low: 909.7, - close: 921, - volume: 1856822 - }), - new StockGoogleItem( - { - date: `2017-08-26`, - open: 923.7, - high: 930.8, - low: 921.1, - close: 924.9, - volume: 1666861 - }), - new StockGoogleItem( - { - date: `2017-08-27`, - open: 927.7, - high: 949.9, - low: 927.7, - close: 944.5, - volume: 2212600 - }), - new StockGoogleItem( - { - date: `2017-08-28`, - open: 941.4, - high: 950.7, - low: 940.5, - close: 949.5, - volume: 1020312 - }), - new StockGoogleItem( - { - date: `2017-08-29`, - open: 952, - high: 959.8, - low: 951.5, - close: 959.1, - volume: 1580994 - }), - new StockGoogleItem( - { - date: `2017-09-02`, - open: 960, - high: 962.5, - low: 947.8, - close: 953.3, - volume: 1283444 - }), - new StockGoogleItem( - { - date: `2017-09-03`, - open: 954, - high: 958, - low: 949.1, - close: 957.8, - volume: 888346 - }), - new StockGoogleItem( - { - date: `2017-09-04`, - open: 957, - high: 960.4, - low: 950.7, - close: 951.7, - volume: 952391 - }), - new StockGoogleItem( - { - date: `2017-09-05`, - open: 955.5, - high: 970.9, - low: 955.2, - close: 970, - volume: 1213816 - }), - new StockGoogleItem( - { - date: `2017-09-06`, - open: 966.7, - high: 979.5, - low: 963.4, - close: 978.9, - volume: 1173882 - }), - new StockGoogleItem( - { - date: `2017-09-09`, - open: 980, - high: 985.4, - low: 976.1, - close: 977, - volume: 891355 - }), - new StockGoogleItem( - { - date: `2017-09-10`, - open: 980, - high: 981.6, - low: 966.1, - close: 972.6, - volume: 968362 - }), - new StockGoogleItem( - { - date: `2017-09-11`, - open: 973.7, - high: 990.7, - low: 972.3, - close: 989.3, - volume: 1693274 - }), - new StockGoogleItem( - { - date: `2017-09-12`, - open: 987.5, - high: 994.1, - low: 985, - close: 987.8, - volume: 1262793 - }), - new StockGoogleItem( - { - date: `2017-09-13`, - open: 992, - high: 997.2, - low: 989, - close: 989.7, - volume: 1169777 - }), - new StockGoogleItem( - { - date: `2017-09-16`, - open: 992.1, - high: 993.9, - low: 984, - close: 992, - volume: 910543 - }), - new StockGoogleItem( - { - date: `2017-09-17`, - open: 990.3, - high: 996.4, - low: 988.6, - close: 992.2, - volume: 1290186 - }), - new StockGoogleItem( - { - date: `2017-09-18`, - open: 991.8, - high: 996.7, - low: 987, - close: 992.8, - volume: 1057581 - }), - new StockGoogleItem( - { - date: `2017-09-19`, - open: 986, - high: 988.9, - low: 978.4, - close: 984.5, - volume: 1313575 - }), - new StockGoogleItem( - { - date: `2017-09-20`, - open: 989.4, - high: 991, - low: 984.6, - close: 988.2, - volume: 1183186 - }), - new StockGoogleItem( - { - date: `2017-09-23`, - open: 989.5, - high: 989.5, - low: 966.1, - close: 968.5, - volume: 1478448 - }), - new StockGoogleItem( - { - date: `2017-09-24`, - open: 970, - high: 972.2, - low: 961, - close: 970.5, - volume: 1212153 - }), - new StockGoogleItem( - { - date: `2017-09-25`, - open: 968.4, - high: 976.1, - low: 960.5, - close: 973.3, - volume: 1211262 - }), - new StockGoogleItem( - { - date: `2017-09-26`, - open: 980, - high: 987.6, - low: 972.2, - close: 972.6, - volume: 2042149 - }), - new StockGoogleItem( - { - date: `2017-09-27`, - open: 1009.2, - high: 1048.4, - low: 1008.2, - close: 1019.3, - volume: 5167689 - }), - new StockGoogleItem( - { - date: `2017-09-30`, - open: 1014, - high: 1025, - low: 1007.5, - close: 1017.1, - volume: 2085062 - }), - new StockGoogleItem( - { - date: `2017-09-31`, - open: 1015.2, - high: 1024, - low: 1010.4, - close: 1016.6, - volume: 1331391 - }), - new StockGoogleItem( - { - date: `2017-10-01`, - open: 1017.2, - high: 1029.7, - low: 1017, - close: 1025.5, - volume: 1373444 - }), - new StockGoogleItem( - { - date: `2017-10-02`, - open: 1021.8, - high: 1028.1, - low: 1013, - close: 1025.6, - volume: 1048970 - }), - new StockGoogleItem( - { - date: `2017-10-03`, - open: 1022.1, - high: 1032.7, - low: 1020.3, - close: 1032.5, - volume: 1076350 - }), - new StockGoogleItem( - { - date: `2017-10-06`, - open: 1029, - high: 1034.9, - low: 1025, - close: 1025.9, - volume: 1125185 - }), - new StockGoogleItem( - { - date: `2017-10-07`, - open: 1027.3, - high: 1034, - low: 1025.1, - close: 1033.3, - volume: 1112331 - }), - new StockGoogleItem( - { - date: `2017-10-08`, - open: 1030.5, - high: 1043.5, - low: 1028.5, - close: 1039.8, - volume: 1088716 - }), - new StockGoogleItem( - { - date: `2017-10-09`, - open: 1034, - high: 1034, - low: 1019.7, - close: 1031.3, - volume: 1245246 - }), - new StockGoogleItem( - { - date: `2017-10-10`, - open: 1026.5, - high: 1030.8, - low: 1025.3, - close: 1028.1, - volume: 720676 - }), - new StockGoogleItem( - { - date: `2017-10-13`, - open: 1023.4, - high: 1031.6, - low: 1022.6, - close: 1025.8, - volume: 885779 - }), - new StockGoogleItem( - { - date: `2017-10-14`, - open: 1022.6, - high: 1026.8, - low: 1014.1, - close: 1026, - volume: 959222 - }), - new StockGoogleItem( - { - date: `2017-10-15`, - open: 1019.2, - high: 1024.1, - low: 1015.4, - close: 1020.9, - volume: 853992 - }), - new StockGoogleItem( - { - date: `2017-10-16`, - open: 1022.5, - high: 1035.9, - low: 1022.5, - close: 1032.5, - volume: 1129688 - }), - new StockGoogleItem( - { - date: `2017-10-17`, - open: 1034, - high: 1034.4, - low: 1017.8, - close: 1019.1, - volume: 1397064 - }), - new StockGoogleItem( - { - date: `2017-10-20`, - open: 1020.3, - high: 1022.6, - low: 1017.5, - close: 1018.4, - volume: 953470 - }), - new StockGoogleItem( - { - date: `2017-10-21`, - open: 1023.3, - high: 1035.1, - low: 1022.7, - close: 1034.5, - volume: 1096999 - }), - new StockGoogleItem( - { - date: `2017-10-22`, - open: 1035, - high: 1039.7, - low: 1031.4, - close: 1036, - volume: 746878 - }), - new StockGoogleItem( - { - date: `2017-10-24`, - open: 1035.9, - high: 1043.2, - low: 1035, - close: 1040.6, - volume: 536996 - }), - new StockGoogleItem( - { - date: `2017-10-27`, - open: 1040, - high: 1055.5, - low: 1038.4, - close: 1054.2, - volume: 1307881 - }), - new StockGoogleItem( - { - date: `2017-10-28`, - open: 1055.1, - high: 1062.4, - low: 1040, - close: 1047.4, - volume: 1424394 - }), - new StockGoogleItem( - { - date: `2017-10-29`, - open: 1042.7, - high: 1044.1, - low: 1015.6, - close: 1021.7, - volume: 2459426 - }), - new StockGoogleItem( - { - date: `2017-10-30`, - open: 1022.4, - high: 1028.5, - low: 1015, - close: 1021.4, - volume: 1724031 - }), - new StockGoogleItem( - { - date: `2017-11-01`, - open: 1015.8, - high: 1022.5, - low: 1002, - close: 1010.2, - volume: 1909566 - }), - new StockGoogleItem( - { - date: `2017-11-04`, - open: 1012.7, - high: 1016.1, - low: 995.6, - close: 998.7, - volume: 1906439 - }), - new StockGoogleItem( - { - date: `2017-11-05`, - open: 995.9, - high: 1020.6, - low: 988.3, - close: 1005.1, - volume: 2067318 - }), - new StockGoogleItem( - { - date: `2017-11-06`, - open: 1001.5, - high: 1025, - low: 1001.1, - close: 1018.4, - volume: 1271964 - }), - new StockGoogleItem( - { - date: `2017-11-07`, - open: 1020.4, - high: 1034.2, - low: 1018.1, - close: 1030.9, - volume: 1458242 - }), - new StockGoogleItem( - { - date: `2017-11-08`, - open: 1037.5, - high: 1042, - low: 1032.5, - close: 1037, - volume: 1290774 - }), - new StockGoogleItem( - { - date: `2017-11-11`, - open: 1035.5, - high: 1043.8, - low: 1032, - close: 1041.1, - volume: 1192838 - }), - new StockGoogleItem( - { - date: `2017-11-12`, - open: 1039.6, - high: 1050.3, - low: 1033.7, - close: 1040.5, - volume: 1279659 - }), - new StockGoogleItem( - { - date: `2017-11-13`, - open: 1046.1, - high: 1046.7, - low: 1038.4, - close: 1040.6, - volume: 1282677 - }), - new StockGoogleItem( - { - date: `2017-11-14`, - open: 1045, - high: 1058.5, - low: 1043.1, - close: 1049.2, - volume: 1558835 - }), - new StockGoogleItem( - { - date: `2017-11-15`, - open: 1054.6, - high: 1067.6, - low: 1049.5, - close: 1064.2, - volume: 3275931 - }), - new StockGoogleItem( - { - date: `2017-11-18`, - open: 1066.1, - high: 1078.5, - low: 1062, - close: 1077.1, - volume: 1554552 - }), - new StockGoogleItem( - { - date: `2017-11-19`, - open: 1075.2, - high: 1076.8, - low: 1063.5, - close: 1070.7, - volume: 1338725 - }), - new StockGoogleItem( - { - date: `2017-11-20`, - open: 1071.8, - high: 1073.4, - low: 1061.5, - close: 1065, - volume: 1268582 - }), - new StockGoogleItem( - { - date: `2017-11-21`, - open: 1065, - high: 1069.3, - low: 1061.8, - close: 1063.6, - volume: 995703 - }), - new StockGoogleItem( - { - date: `2017-11-22`, - open: 1061.1, - high: 1064.2, - low: 1059.4, - close: 1060.1, - volume: 755095 - }), - new StockGoogleItem( - { - date: `2017-11-26`, - open: 1058.1, - high: 1060.1, - low: 1050.2, - close: 1056.7, - volume: 761237 - }), - new StockGoogleItem( - { - date: `2017-11-27`, - open: 1057.4, - high: 1058.4, - low: 1048, - close: 1049.4, - volume: 1271911 - }), - new StockGoogleItem( - { - date: `2017-11-28`, - open: 1051.6, - high: 1054.8, - low: 1044.8, - close: 1048.1, - volume: 837121 - }), - new StockGoogleItem( - { - date: `2017-11-29`, - open: 1046.7, - high: 1049.7, - low: 1044.9, - close: 1046.4, - volume: 887511 - }), - new StockGoogleItem( - { - date: `2018-00-02`, - open: 1048.3, - high: 1066.9, - low: 1045.2, - close: 1065, - volume: 1237564 - }), - new StockGoogleItem( - { - date: `2018-00-03`, - open: 1064.3, - high: 1086.3, - low: 1063.2, - close: 1082.5, - volume: 1430170 - }), - new StockGoogleItem( - { - date: `2018-00-04`, - open: 1088, - high: 1093.6, - low: 1084, - close: 1086.4, - volume: 1004605 - }), - new StockGoogleItem( - { - date: `2018-00-05`, - open: 1094, - high: 1104.3, - low: 1092, - close: 1102.2, - volume: 1279123 - }), - new StockGoogleItem( - { - date: `2018-00-08`, - open: 1102.2, - high: 1111.3, - low: 1101.6, - close: 1106.9, - volume: 1047603 - }), - new StockGoogleItem( - { - date: `2018-00-09`, - open: 1109.4, - high: 1110.6, - low: 1101.2, - close: 1106.3, - volume: 902541 - }), - new StockGoogleItem( - { - date: `2018-00-10`, - open: 1097.1, - high: 1104.6, - low: 1096.1, - close: 1102.6, - volume: 1042793 - }), - new StockGoogleItem( - { - date: `2018-00-11`, - open: 1106.3, - high: 1106.5, - low: 1099.6, - close: 1105.5, - volume: 978292 - }), - new StockGoogleItem( - { - date: `2018-00-12`, - open: 1102.4, - high: 1124.3, - low: 1101.2, - close: 1122.3, - volume: 1720533 - }), - new StockGoogleItem( - { - date: `2018-00-16`, - open: 1132.5, - high: 1139.9, - low: 1117.8, - close: 1121.8, - volume: 1575261 - }), - new StockGoogleItem( - { - date: `2018-00-17`, - open: 1126.2, - high: 1132.6, - low: 1117, - close: 1132, - volume: 1202639 - }), - new StockGoogleItem( - { - date: `2018-00-18`, - open: 1131.4, - high: 1132.5, - low: 1117.5, - close: 1129.8, - volume: 1198234 - }), - new StockGoogleItem( - { - date: `2018-00-19`, - open: 1131.8, - high: 1137.9, - low: 1128.3, - close: 1137.5, - volume: 1778229 - }), - new StockGoogleItem( - { - date: `2018-00-22`, - open: 1137.5, - high: 1159.9, - low: 1135.1, - close: 1155.8, - volume: 1617975 - }), - new StockGoogleItem( - { - date: `2018-00-23`, - open: 1159.8, - high: 1171.6, - low: 1158.8, - close: 1170, - volume: 1333056 - }), - new StockGoogleItem( - { - date: `2018-00-24`, - open: 1177.3, - high: 1179.9, - low: 1161, - close: 1164.2, - volume: 1416625 - }), - new StockGoogleItem( - { - date: `2018-00-25`, - open: 1172.5, - high: 1175.9, - low: 1162.8, - close: 1170.4, - volume: 1480540 - }), - new StockGoogleItem( - { - date: `2018-00-26`, - open: 1175.1, - high: 1175.8, - low: 1158.1, - close: 1175.8, - volume: 2018755 - }), - new StockGoogleItem( - { - date: `2018-00-29`, - open: 1176.5, - high: 1186.9, - low: 1172, - close: 1175.6, - volume: 1378913 - }), - new StockGoogleItem( - { - date: `2018-00-30`, - open: 1167.8, - high: 1176.5, - low: 1163.5, - close: 1163.7, - volume: 1556346 - }), - new StockGoogleItem( - { - date: `2018-00-31`, - open: 1170.6, - high: 1173, - low: 1159.1, - close: 1169.9, - volume: 1538688 - }), - ]; - super(...newItems.slice(0)); - } - } -} +export class StockItem { + public open?: number; + public close?: number; + public high?: number; + public low?: number; + public volume?: number; + + public date?: Date; + + } + //end data \ No newline at end of file diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/src/index.ts b/samples/charts/financial-chart/data-tooltip-styling-props/src/index.ts index 869daf4f7d..e08cd931ea 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,6 +1,6 @@ import { IgcFinancialChartModule, IgcDataChartInteractivityModule, IgcDataLegendModule } from 'igniteui-webcomponents-charts'; import { IgcFinancialChartComponent } from 'igniteui-webcomponents-charts'; -import { StockGoogleItem, StockGoogle } from './StockGoogle'; +import { StockGoogle } from './StockGoogle'; import { ModuleManager } from 'igniteui-webcomponents-core'; diff --git a/samples/charts/financial-chart/data-tooltip/src/MultipleStocks.ts b/samples/charts/financial-chart/data-tooltip/src/MultipleStocks.ts index 3688676b43..ca994ac344 100644 --- a/samples/charts/financial-chart/data-tooltip/src/MultipleStocks.ts +++ b/samples/charts/financial-chart/data-tooltip/src/MultipleStocks.ts @@ -80,7 +80,7 @@ export class MultipleStocks extends Array> { for (let json of jsonData) { let parts = json.date.split("-"); // "2020-01-01" let item = new StockItem(); - item.date = new Date(parts[0], parts[1], parts[2]); + item.date = new Date(parts[0], parts[1], parts[2],13,0,0); item.open = json.open; item.high = json.high; item.low = json.low; diff --git a/samples/charts/financial-chart/format-specifiers/src/MultipleStocks.ts b/samples/charts/financial-chart/format-specifiers/src/MultipleStocks.ts index 3688676b43..ca994ac344 100644 --- a/samples/charts/financial-chart/format-specifiers/src/MultipleStocks.ts +++ b/samples/charts/financial-chart/format-specifiers/src/MultipleStocks.ts @@ -80,7 +80,7 @@ export class MultipleStocks extends Array> { for (let json of jsonData) { let parts = json.date.split("-"); // "2020-01-01" let item = new StockItem(); - item.date = new Date(parts[0], parts[1], parts[2]); + item.date = new Date(parts[0], parts[1], parts[2],13,0,0); item.open = json.open; item.high = json.high; item.low = json.low; diff --git a/samples/charts/financial-chart/scrollbars/src/MultipleStocks.ts b/samples/charts/financial-chart/scrollbars/src/MultipleStocks.ts index 3688676b43..ca994ac344 100644 --- a/samples/charts/financial-chart/scrollbars/src/MultipleStocks.ts +++ b/samples/charts/financial-chart/scrollbars/src/MultipleStocks.ts @@ -80,7 +80,7 @@ export class MultipleStocks extends Array> { for (let json of jsonData) { let parts = json.date.split("-"); // "2020-01-01" let item = new StockItem(); - item.date = new Date(parts[0], parts[1], parts[2]); + item.date = new Date(parts[0], parts[1], parts[2],13,0,0); item.open = json.open; item.high = json.high; item.low = json.low; diff --git a/samples/charts/toolbar/actions-built-in-category-chart/src/index.ts b/samples/charts/toolbar/actions-built-in-category-chart/src/index.ts index d0f1b6b040..7c6f140ce3 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 @@ -1,5 +1,6 @@ import { IgcLegendModule, IgcCategoryChartModule, IgcCategoryChartToolbarModule } from 'igniteui-webcomponents-charts'; import { IgcToolbarModule } from 'igniteui-webcomponents-layouts'; +import { IgcCheckboxListModule } from 'igniteui-webcomponents-grids'; import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; import { IgcToolbarComponent } from 'igniteui-webcomponents-layouts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; @@ -12,7 +13,8 @@ ModuleManager.register( IgcLegendModule, IgcToolbarModule, IgcCategoryChartModule, - IgcCategoryChartToolbarModule + IgcCategoryChartToolbarModule, + IgcCheckboxListModule ); export class Sample { diff --git a/samples/charts/toolbar/custom-tool/index.html b/samples/charts/toolbar/custom-tool/index.html index 6b1523b0b4..b592fddabc 100644 --- a/samples/charts/toolbar/custom-tool/index.html +++ b/samples/charts/toolbar/custom-tool/index.html @@ -35,6 +35,13 @@ name="CustomIconName" id="CustomIconName"> + +
diff --git a/samples/charts/toolbar/custom-tool/src/index.ts b/samples/charts/toolbar/custom-tool/src/index.ts index 5781777e27..fc671b14f5 100644 --- a/samples/charts/toolbar/custom-tool/src/index.ts +++ b/samples/charts/toolbar/custom-tool/src/index.ts @@ -21,6 +21,7 @@ export class Sample { private legend: IgcLegendComponent private toolbar: IgcToolbarComponent private customIconName: IgcToolActionLabelComponent + private customIconName2: IgcToolActionLabelComponent private chart: IgcCategoryChartComponent private _bind: () => void; @@ -28,6 +29,7 @@ export class Sample { var legend = this.legend = document.getElementById('legend') as IgcLegendComponent; var toolbar = this.toolbar = document.getElementById('toolbar') as IgcToolbarComponent; var customIconName = this.customIconName = document.getElementById('CustomIconName') as IgcToolActionLabelComponent; + var customIconName2 = this.customIconName2 = document.getElementById('CustomIconName2') as IgcToolActionLabelComponent; var chart = this.chart = document.getElementById('chart') as IgcCategoryChartComponent; this._bind = () => { @@ -55,6 +57,8 @@ export class Sample { const icon = ''; toolbar.registerIconFromText("CustomCollection", "CustomIcon", icon); + toolbar.registerIconFromDataURL("CustomCollection2", "CustomIcon2", "https://www.svgrepo.com/show/678/calculator.svg"); + } } diff --git a/samples/charts/toolbar/theming/index.html b/samples/charts/toolbar/theming/index.html index b28f681e1c..d88ef9ecab 100644 --- a/samples/charts/toolbar/theming/index.html +++ b/samples/charts/toolbar/theming/index.html @@ -27,6 +27,8 @@ id="propertyEditorPanel1"> Date: Wed, 26 Feb 2025 12:48:30 -0500 Subject: [PATCH 57/63] Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.26.1 (#948) Co-authored-by: tfsbuild --- .../others/src/EnergyGlobalDemand.ts | 51 -------------- .../layout-actions-for-data-chart/index.html | 63 +++++++++++++---- .../src/index.ts | 70 +++++++++++++++++-- 3 files changed, 112 insertions(+), 72 deletions(-) delete mode 100644 samples/charts/data-pie-chart/others/src/EnergyGlobalDemand.ts diff --git a/samples/charts/data-pie-chart/others/src/EnergyGlobalDemand.ts b/samples/charts/data-pie-chart/others/src/EnergyGlobalDemand.ts deleted file mode 100644 index 3d2ed388a0..0000000000 --- a/samples/charts/data-pie-chart/others/src/EnergyGlobalDemand.ts +++ /dev/null @@ -1,51 +0,0 @@ -export class EnergyGlobalDemandItem { - public constructor(init: Partial) { - Object.assign(this, init); - } - - public value: number; - public category: string; - public summary: string; - -} -export class EnergyGlobalDemand extends Array { - public constructor(items: Array | number = -1) { - if (Array.isArray(items)) { - super(...items); - } else { - const newItems = [ - new EnergyGlobalDemandItem( - { - value: 37, - category: `Cooling`, - summary: `Cooling 37%` - }), - new EnergyGlobalDemandItem( - { - value: 25, - category: `Residential`, - summary: `Residential 25%` - }), - new EnergyGlobalDemandItem( - { - value: 12, - category: `Heating`, - summary: `Heating 12%` - }), - new EnergyGlobalDemandItem( - { - value: 11, - category: `Lighting`, - summary: `Lighting 11%` - }), - new EnergyGlobalDemandItem( - { - value: 15, - category: `Other`, - summary: `Other 15%` - }), - ]; - super(...newItems.slice(0)); - } - } -} diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/index.html b/samples/charts/toolbar/layout-actions-for-data-chart/index.html index 30c87d4b8e..e2b8147e73 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/index.html +++ b/samples/charts/toolbar/layout-actions-for-data-chart/index.html @@ -24,19 +24,41 @@ name="toolbar" id="toolbar" orientation="Horizontal"> - - - - + + + + + + + + + + + + + command-id="ZoomReset" + is-highlighted="true"> + + + +
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 dd4c785d56..30a536180b 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 @@ -1,10 +1,10 @@ import { IgcToolbarModule } from 'igniteui-webcomponents-layouts'; import { IgcDataChartToolbarModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartAnnotationModule, IgcDataChartInteractivityModule, IgcDataChartCategoryTrendLineModule } from 'igniteui-webcomponents-charts'; -import { IgcToolbarComponent, IgcToolActionCheckboxComponent, IgcToolActionLabelComponent, IgcToolActionIconMenuComponent } from 'igniteui-webcomponents-layouts'; +import { IgcToolbarComponent, IgcToolActionIconMenuComponent, IgcToolActionGroupHeaderComponent, IgcToolActionSubPanelComponent, IgcToolActionCheckboxComponent, IgcToolActionLabelComponent } from 'igniteui-webcomponents-layouts'; import { IgcDataChartComponent, IgcCategoryXAxisComponent, IgcNumericYAxisComponent, IgcLineSeriesComponent } from 'igniteui-webcomponents-charts'; import { CountryRenewableElectricityItem, CountryRenewableElectricity } from './CountryRenewableElectricity'; import { IgcToolCommandEventArgs } from 'igniteui-webcomponents-layouts'; -import { IgcSeriesComponent, IgcDataToolTipLayerComponent } from 'igniteui-webcomponents-charts'; +import { IgcSeriesComponent, IgcDataToolTipLayerComponent, IgcCrosshairLayerComponent, IgcFinalValueLayerComponent } from 'igniteui-webcomponents-charts'; import { ModuleManager } from 'igniteui-webcomponents-core'; @@ -23,10 +23,16 @@ ModuleManager.register( export class Sample { private toolbar: IgcToolbarComponent + private menuForSubPanelTool: IgcToolActionIconMenuComponent + private subPanelGroup: IgcToolActionGroupHeaderComponent + private customSubPanelTools: IgcToolActionSubPanelComponent private enableTooltipsLabel: IgcToolActionCheckboxComponent - private zoomResetHidden: IgcToolActionLabelComponent + private enableCrosshairsLabel: IgcToolActionCheckboxComponent + private enableFinalValuesLabel: IgcToolActionCheckboxComponent private zoomResetLabel: IgcToolActionLabelComponent + private zoomResetHidden: IgcToolActionLabelComponent private analyzeMenu: IgcToolActionIconMenuComponent + private copyMenu: IgcToolActionLabelComponent private chart: IgcDataChartComponent private xAxis: IgcCategoryXAxisComponent private yAxis: IgcNumericYAxisComponent @@ -37,11 +43,17 @@ export class Sample { constructor() { var toolbar = this.toolbar = document.getElementById('toolbar') as IgcToolbarComponent; - this.toolbarToggleTooltip = this.toolbarToggleTooltip.bind(this); + this.toolbarToggleAnnotations = this.toolbarToggleAnnotations.bind(this); + var menuForSubPanelTool = this.menuForSubPanelTool = document.getElementById('MenuForSubPanelTool') as IgcToolActionIconMenuComponent; + var subPanelGroup = this.subPanelGroup = document.getElementById('SubPanelGroup') as IgcToolActionGroupHeaderComponent; + var customSubPanelTools = this.customSubPanelTools = document.getElementById('CustomSubPanelTools') as IgcToolActionSubPanelComponent; var enableTooltipsLabel = this.enableTooltipsLabel = document.getElementById('EnableTooltipsLabel') as IgcToolActionCheckboxComponent; - var zoomResetHidden = this.zoomResetHidden = document.getElementById('zoomResetHidden') as IgcToolActionLabelComponent; + var enableCrosshairsLabel = this.enableCrosshairsLabel = document.getElementById('EnableCrosshairsLabel') as IgcToolActionCheckboxComponent; + var enableFinalValuesLabel = this.enableFinalValuesLabel = document.getElementById('EnableFinalValuesLabel') as IgcToolActionCheckboxComponent; var zoomResetLabel = this.zoomResetLabel = document.getElementById('zoomResetLabel') as IgcToolActionLabelComponent; + var zoomResetHidden = this.zoomResetHidden = document.getElementById('zoomResetHidden') as IgcToolActionLabelComponent; var analyzeMenu = this.analyzeMenu = document.getElementById('AnalyzeMenu') as IgcToolActionIconMenuComponent; + var copyMenu = this.copyMenu = document.getElementById('CopyMenu') as IgcToolActionLabelComponent; var chart = this.chart = document.getElementById('chart') as IgcDataChartComponent; var xAxis = this.xAxis = document.getElementById('xAxis') as IgcCategoryXAxisComponent; var yAxis = this.yAxis = document.getElementById('yAxis') as IgcNumericYAxisComponent; @@ -51,7 +63,7 @@ export class Sample { this._bind = () => { toolbar.target = this.chart; - toolbar.onCommand = this.toolbarToggleTooltip; + toolbar.onCommand = this.toolbarToggleAnnotations; xAxis.dataSource = this.countryRenewableElectricity; lineSeries1.xAxis = this.xAxis; lineSeries1.yAxis = this.yAxis; @@ -77,7 +89,7 @@ export class Sample { } - public toolbarToggleTooltip(sender: any, args: IgcToolCommandEventArgs): void { + public toolbarToggleAnnotations(sender: any, args: IgcToolCommandEventArgs): void { var target = this.chart; switch (args.command.commandId) { @@ -103,6 +115,50 @@ export class Sample { } } break; + case "EnableCrosshairs": + var enable = args.command.argumentsList[0].value as boolean; + if (enable) + { + target.series.add(new IgcCrosshairLayerComponent()); + } + else + { + var toRemove = null; + for (var i = 0; i < target.actualSeries.length; i++) { + let s = target.actualSeries[i] as IgcSeriesComponent; + if (s instanceof IgcCrosshairLayerComponent) + { + toRemove = s; + } + } + if (toRemove != null) + { + target.series.remove(toRemove); + } + } + break; + case "EnableFinalValues": + var enable = args.command.argumentsList[0].value as boolean; + if (enable) + { + target.series.add(new IgcFinalValueLayerComponent()); + } + else + { + var toRemove = null; + for (var i = 0; i < target.actualSeries.length; i++) { + let s = target.actualSeries[i] as IgcSeriesComponent; + if (s instanceof IgcFinalValueLayerComponent) + { + toRemove = s; + } + } + if (toRemove != null) + { + target.series.remove(toRemove); + } + } + break; } } From 58a6ba3618ebe940b26f1ad6aa61dae406f1bb2f Mon Sep 17 00:00:00 2001 From: Adrian Petrov <99720888+adrianptrv@users.noreply.github.com> Date: Thu, 27 Feb 2025 16:31:25 +0200 Subject: [PATCH 58/63] Merge pull request #940 from IgniteUI/apetrov/add-tile-manager-samples-vnext feat(tile-manager): add tile manager samples for wc --- browser/public/index.html | 12 ++ package-lock.json | 26 +-- package.json | 2 +- .../data-chart/selection-matcher/ReadMe.md | 56 +++++ .../data-pie-chart/animation-replay/ReadMe.md | 56 +++++ .../layouts/tile-manager/actions/.prettierrc | 11 + .../layouts/tile-manager/actions/ReadMe.md | 56 +++++ .../layouts/tile-manager/actions/index.html | 56 +++++ .../layouts/tile-manager/actions/package.json | 59 ++++++ .../tile-manager/actions/sandbox.config.json | 7 + .../tile-manager/actions/src/index.css | 2 + .../layouts/tile-manager/actions/src/index.ts | 95 +++++++++ .../tile-manager/actions/src/layout.css | 24 +++ .../tile-manager/actions/tsconfig.json | 20 ++ .../tile-manager/actions/webpack.config.js | 105 ++++++++++ .../tile-manager/columngap/.prettierrc | 11 + .../layouts/tile-manager/columngap/ReadMe.md | 56 +++++ .../layouts/tile-manager/columngap/index.html | 66 ++++++ .../tile-manager/columngap/package.json | 59 ++++++ .../columngap/sandbox.config.json | 7 + .../tile-manager/columngap/src/index.css | 2 + .../tile-manager/columngap/src/index.ts | 29 +++ .../tile-manager/columngap/src/layout.css | 31 +++ .../tile-manager/columngap/tsconfig.json | 20 ++ .../tile-manager/columngap/webpack.config.js | 105 ++++++++++ .../tile-manager/dragndrop/.prettierrc | 11 + .../layouts/tile-manager/dragndrop/ReadMe.md | 56 +++++ .../layouts/tile-manager/dragndrop/index.html | 52 +++++ .../tile-manager/dragndrop/package.json | 59 ++++++ .../dragndrop/sandbox.config.json | 7 + .../tile-manager/dragndrop/src/index.css | 2 + .../tile-manager/dragndrop/src/index.ts | 21 ++ .../tile-manager/dragndrop/src/layout.css | 35 ++++ .../tile-manager/dragndrop/tsconfig.json | 20 ++ .../tile-manager/dragndrop/webpack.config.js | 105 ++++++++++ .../layouts/tile-manager/layout/.prettierrc | 11 + samples/layouts/tile-manager/layout/ReadMe.md | 56 +++++ .../layouts/tile-manager/layout/index.html | 52 +++++ .../layouts/tile-manager/layout/package.json | 59 ++++++ .../tile-manager/layout/sandbox.config.json | 7 + .../layouts/tile-manager/layout/src/index.css | 2 + .../layouts/tile-manager/layout/src/index.ts | 51 +++++ .../tile-manager/layout/src/layout.css | 25 +++ .../layouts/tile-manager/layout/tsconfig.json | 20 ++ .../tile-manager/layout/webpack.config.js | 105 ++++++++++ .../layouts/tile-manager/overview/.prettierrc | 11 + .../layouts/tile-manager/overview/ReadMe.md | 56 +++++ .../layouts/tile-manager/overview/index.html | 46 +++++ .../tile-manager/overview/package.json | 59 ++++++ .../tile-manager/overview/sandbox.config.json | 7 + .../tile-manager/overview/src/index.css | 2 + .../tile-manager/overview/src/index.ts | 12 ++ .../tile-manager/overview/src/layout.css | 8 + .../tile-manager/overview/tsconfig.json | 20 ++ .../tile-manager/overview/webpack.config.js | 105 ++++++++++ .../layouts/tile-manager/resize/.prettierrc | 11 + samples/layouts/tile-manager/resize/ReadMe.md | 56 +++++ .../layouts/tile-manager/resize/index.html | 50 +++++ .../layouts/tile-manager/resize/package.json | 59 ++++++ .../tile-manager/resize/sandbox.config.json | 7 + .../layouts/tile-manager/resize/src/index.css | 2 + .../layouts/tile-manager/resize/src/index.ts | 21 ++ .../tile-manager/resize/src/layout.css | 21 ++ .../layouts/tile-manager/resize/tsconfig.json | 20 ++ .../tile-manager/resize/webpack.config.js | 105 ++++++++++ .../layouts/tile-manager/styling/.prettierrc | 11 + .../layouts/tile-manager/styling/ReadMe.md | 56 +++++ .../layouts/tile-manager/styling/index.html | 194 ++++++++++++++++++ .../layouts/tile-manager/styling/package.json | 59 ++++++ .../tile-manager/styling/sandbox.config.json | 7 + .../tile-manager/styling/src/index.css | 2 + .../layouts/tile-manager/styling/src/index.ts | 13 ++ .../tile-manager/styling/src/layout.css | 50 +++++ .../tile-manager/styling/src/styles.css | 15 ++ .../tile-manager/styling/tsconfig.json | 20 ++ .../tile-manager/styling/webpack.config.js | 105 ++++++++++ 76 files changed, 2926 insertions(+), 13 deletions(-) create mode 100644 samples/charts/data-chart/selection-matcher/ReadMe.md create mode 100644 samples/charts/data-pie-chart/animation-replay/ReadMe.md create mode 100644 samples/layouts/tile-manager/actions/.prettierrc create mode 100644 samples/layouts/tile-manager/actions/ReadMe.md create mode 100644 samples/layouts/tile-manager/actions/index.html create mode 100644 samples/layouts/tile-manager/actions/package.json create mode 100644 samples/layouts/tile-manager/actions/sandbox.config.json create mode 100644 samples/layouts/tile-manager/actions/src/index.css create mode 100644 samples/layouts/tile-manager/actions/src/index.ts create mode 100644 samples/layouts/tile-manager/actions/src/layout.css create mode 100644 samples/layouts/tile-manager/actions/tsconfig.json create mode 100644 samples/layouts/tile-manager/actions/webpack.config.js create mode 100644 samples/layouts/tile-manager/columngap/.prettierrc create mode 100644 samples/layouts/tile-manager/columngap/ReadMe.md create mode 100644 samples/layouts/tile-manager/columngap/index.html create mode 100644 samples/layouts/tile-manager/columngap/package.json create mode 100644 samples/layouts/tile-manager/columngap/sandbox.config.json create mode 100644 samples/layouts/tile-manager/columngap/src/index.css create mode 100644 samples/layouts/tile-manager/columngap/src/index.ts create mode 100644 samples/layouts/tile-manager/columngap/src/layout.css create mode 100644 samples/layouts/tile-manager/columngap/tsconfig.json create mode 100644 samples/layouts/tile-manager/columngap/webpack.config.js create mode 100644 samples/layouts/tile-manager/dragndrop/.prettierrc create mode 100644 samples/layouts/tile-manager/dragndrop/ReadMe.md create mode 100644 samples/layouts/tile-manager/dragndrop/index.html create mode 100644 samples/layouts/tile-manager/dragndrop/package.json create mode 100644 samples/layouts/tile-manager/dragndrop/sandbox.config.json create mode 100644 samples/layouts/tile-manager/dragndrop/src/index.css create mode 100644 samples/layouts/tile-manager/dragndrop/src/index.ts create mode 100644 samples/layouts/tile-manager/dragndrop/src/layout.css create mode 100644 samples/layouts/tile-manager/dragndrop/tsconfig.json create mode 100644 samples/layouts/tile-manager/dragndrop/webpack.config.js create mode 100644 samples/layouts/tile-manager/layout/.prettierrc create mode 100644 samples/layouts/tile-manager/layout/ReadMe.md create mode 100644 samples/layouts/tile-manager/layout/index.html create mode 100644 samples/layouts/tile-manager/layout/package.json create mode 100644 samples/layouts/tile-manager/layout/sandbox.config.json create mode 100644 samples/layouts/tile-manager/layout/src/index.css create mode 100644 samples/layouts/tile-manager/layout/src/index.ts create mode 100644 samples/layouts/tile-manager/layout/src/layout.css create mode 100644 samples/layouts/tile-manager/layout/tsconfig.json create mode 100644 samples/layouts/tile-manager/layout/webpack.config.js create mode 100644 samples/layouts/tile-manager/overview/.prettierrc create mode 100644 samples/layouts/tile-manager/overview/ReadMe.md create mode 100644 samples/layouts/tile-manager/overview/index.html create mode 100644 samples/layouts/tile-manager/overview/package.json create mode 100644 samples/layouts/tile-manager/overview/sandbox.config.json create mode 100644 samples/layouts/tile-manager/overview/src/index.css create mode 100644 samples/layouts/tile-manager/overview/src/index.ts create mode 100644 samples/layouts/tile-manager/overview/src/layout.css create mode 100644 samples/layouts/tile-manager/overview/tsconfig.json create mode 100644 samples/layouts/tile-manager/overview/webpack.config.js create mode 100644 samples/layouts/tile-manager/resize/.prettierrc create mode 100644 samples/layouts/tile-manager/resize/ReadMe.md create mode 100644 samples/layouts/tile-manager/resize/index.html create mode 100644 samples/layouts/tile-manager/resize/package.json create mode 100644 samples/layouts/tile-manager/resize/sandbox.config.json create mode 100644 samples/layouts/tile-manager/resize/src/index.css create mode 100644 samples/layouts/tile-manager/resize/src/index.ts create mode 100644 samples/layouts/tile-manager/resize/src/layout.css create mode 100644 samples/layouts/tile-manager/resize/tsconfig.json create mode 100644 samples/layouts/tile-manager/resize/webpack.config.js create mode 100644 samples/layouts/tile-manager/styling/.prettierrc create mode 100644 samples/layouts/tile-manager/styling/ReadMe.md create mode 100644 samples/layouts/tile-manager/styling/index.html create mode 100644 samples/layouts/tile-manager/styling/package.json create mode 100644 samples/layouts/tile-manager/styling/sandbox.config.json create mode 100644 samples/layouts/tile-manager/styling/src/index.css create mode 100644 samples/layouts/tile-manager/styling/src/index.ts create mode 100644 samples/layouts/tile-manager/styling/src/layout.css create mode 100644 samples/layouts/tile-manager/styling/src/styles.css create mode 100644 samples/layouts/tile-manager/styling/tsconfig.json create mode 100644 samples/layouts/tile-manager/styling/webpack.config.js diff --git a/browser/public/index.html b/browser/public/index.html index 4f23a6bbdd..2d82af848a 100644 --- a/browser/public/index.html +++ b/browser/public/index.html @@ -200,6 +200,7 @@ Scatter Polyline Series Scatter Series Scatter Spline Chart + Selection Matcher Series Animations Series Annotations Series Error Bars @@ -230,6 +231,7 @@ + + diff --git a/package-lock.json b/package-lock.json index e54153a228..1b01d18c68 100644 --- a/package-lock.json +++ b/package-lock.json @@ -21,7 +21,7 @@ "core-js": "^3.6.5", "file-saver": "^2.0.2", "igniteui-dockmanager": "1.16.0", - "igniteui-webcomponents": "5.2.1", + "igniteui-webcomponents": "5.3.0-beta.2", "igniteui-webcomponents-charts": "5.2.1-beta.0", "igniteui-webcomponents-core": "5.2.1-beta.0", "igniteui-webcomponents-dashboards": "5.2.1-beta.0", @@ -1995,18 +1995,20 @@ "integrity": "sha512-wx4aBmgeGvFmOKucFKY+8VFJSYZxs9poN3SDNQFF6lT6NrQUnHiPB2PWz2sc4ieEcAaYYzN+1uWahEeTq2aRIQ==" }, "node_modules/@lit-labs/virtualizer": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/@lit-labs/virtualizer/-/virtualizer-2.0.12.tgz", - "integrity": "sha512-sL7AXhacSdzOJLEQFcPCrV7tu2rZQ10upeGMAxKmTT0Ae4kBFV8nwlFiUEQPBt1idUsAkiDG1yN91IgUWQXVNQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@lit-labs/virtualizer/-/virtualizer-2.1.0.tgz", + "integrity": "sha512-I79sNaalK9rD6FWO/AoxBMnA6jjNBrQu7F6lzz8W/GkQLcqveMWK3IrJAilso+XeFFn7BvlxBv6FqZaoMt+Qkg==", + "license": "BSD-3-Clause", "dependencies": { - "lit": "^3.1.0", + "lit": "^3.2.0", "tslib": "^2.0.3" } }, "node_modules/@lit-labs/virtualizer/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" }, "node_modules/@lit/context": { "version": "1.1.3", @@ -8725,13 +8727,13 @@ "integrity": "sha512-q6thtu+7R6MOB+i9GorFPCcWeOImW43BzCAtKnDAYWwaoueb8Lg1EhBkIhAyfEIH+yZ/9c5lnZdU61/GRPoP+g==" }, "node_modules/igniteui-webcomponents": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-5.2.1.tgz", - "integrity": "sha512-0SJ1Xr9VhYbPGPStw4qLelB+umFqWAboEurQ/4yN1iq4rIqP3w3QaU13hcDm/kLrTL4M9UH++XTisUeII3Bppg==", + "version": "5.3.0-beta.2", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-5.3.0-beta.2.tgz", + "integrity": "sha512-3Az5lo30Wd1441xy76sLJsf3uU7N/ypOHC5FRz0XdMe1GtIzHOUpycroD0MoG+gT2fjUmUypbLdraDOnDDrszQ==", "license": "SEE LICENSE IN LICENSE", "dependencies": { "@floating-ui/dom": "^1.6.0", - "@lit-labs/virtualizer": "^2.0.10", + "@lit-labs/virtualizer": "^2.1.0", "@lit/context": "^1.1.0", "lit": "^3.2.0" }, diff --git a/package.json b/package.json index 84bee7a1df..ecfe7e40d2 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "core-js": "^3.6.5", "file-saver": "^2.0.2", "igniteui-dockmanager": "1.16.0", - "igniteui-webcomponents": "5.2.1", + "igniteui-webcomponents": "5.3.0-beta.2", "igniteui-webcomponents-charts": "5.2.1-beta.0", "igniteui-webcomponents-core": "5.2.1-beta.0", "igniteui-webcomponents-dashboards": "5.2.1-beta.0", diff --git a/samples/charts/data-chart/selection-matcher/ReadMe.md b/samples/charts/data-chart/selection-matcher/ReadMe.md new file mode 100644 index 0000000000..08c4ba9a40 --- /dev/null +++ b/samples/charts/data-chart/selection-matcher/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Selection Matcher feature using [Data Chart](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/charts/data-chart/selection-matcher +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/charts/data-pie-chart/animation-replay/ReadMe.md b/samples/charts/data-pie-chart/animation-replay/ReadMe.md new file mode 100644 index 0000000000..b17c1f5484 --- /dev/null +++ b/samples/charts/data-pie-chart/animation-replay/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Animation Replay feature using [Data Pie Chart](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/charts/data-pie-chart/animation-replay +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/actions/.prettierrc b/samples/layouts/tile-manager/actions/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/layouts/tile-manager/actions/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/actions/ReadMe.md b/samples/layouts/tile-manager/actions/ReadMe.md new file mode 100644 index 0000000000..ba48172e53 --- /dev/null +++ b/samples/layouts/tile-manager/actions/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Actions feature using [Tile Manager](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/layouts/tile-manager/actions +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/actions/index.html b/samples/layouts/tile-manager/actions/index.html new file mode 100644 index 0000000000..c6770f2477 --- /dev/null +++ b/samples/layouts/tile-manager/actions/index.html @@ -0,0 +1,56 @@ + + + + + Tile Manager Actions + + + + + + + + + + +
+
+ + +

Default Actions

+

This tile has default actions and title.

+
+ +

No Fullscreen Action

+

Fullscreen is disabled via property.

+
+ +

Custom Actions

+ +

Replace the default actions with custom ones, and include extra actions when the tile is maximized.

+
+ + +

Display only custom actions in the header.

+
+ +

Only title

+

Display only title in the header.

+
+ +

Content only.

+
+
+
+
+ + + <% if (false) { %> + + <% } %> + + + + \ No newline at end of file diff --git a/samples/layouts/tile-manager/actions/package.json b/samples/layouts/tile-manager/actions/package.json new file mode 100644 index 0000000000..25b28a29f5 --- /dev/null +++ b/samples/layouts/tile-manager/actions/package.json @@ -0,0 +1,59 @@ +{ + "name": "wc-avatar-icon", + "version": "1.0.0", + "description": "This project provides example of Avatar Icon using IgniteUI for Web Components", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "author": "Infragistics", + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents": "5.3.0-beta.2", + "lit": "^3.2.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + }, + "license": "", + "homepage": "." +} diff --git a/samples/layouts/tile-manager/actions/sandbox.config.json b/samples/layouts/tile-manager/actions/sandbox.config.json new file mode 100644 index 0000000000..5c5b54fe21 --- /dev/null +++ b/samples/layouts/tile-manager/actions/sandbox.config.json @@ -0,0 +1,7 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} + \ No newline at end of file diff --git a/samples/layouts/tile-manager/actions/src/index.css b/samples/layouts/tile-manager/actions/src/index.css new file mode 100644 index 0000000000..0fe9368715 --- /dev/null +++ b/samples/layouts/tile-manager/actions/src/index.css @@ -0,0 +1,2 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tile-manager/actions/src/index.ts b/samples/layouts/tile-manager/actions/src/index.ts new file mode 100644 index 0000000000..4e77a222d4 --- /dev/null +++ b/samples/layouts/tile-manager/actions/src/index.ts @@ -0,0 +1,95 @@ +import { defineComponents, IgcTileManagerComponent, IgcIconButtonComponent, IgcIconComponent, IgcButtonComponent, registerIconFromText } from 'igniteui-webcomponents'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; +import './layout.css' + +defineComponents(IgcTileManagerComponent, IgcIconButtonComponent, IgcIconComponent, IgcButtonComponent); + +export class TileManagerActions { + + constructor() { + const northEast = + ''; + registerIconFromText('north_east', northEast, 'material'); + const southWest = + ''; + registerIconFromText('south_west', southWest, 'material'); + const more = + ''; + registerIconFromText('more', more, 'material'); + const chart = + ''; + registerIconFromText('chart', chart, 'material'); + + document.querySelector('#customOne')?.addEventListener('click', (event: Event) => { + + const tile = (event.target as HTMLElement).closest('igc-tile'); + + if (tile) { + tile.maximized = !tile.maximized; + + const actionsSlot = tile.querySelector('[slot="actions"]') as HTMLElement; + const currentBtn = event.target as HTMLElement; + + if (currentBtn) { + if (tile.maximized) { + currentBtn.setAttribute('name', 'south_west'); + currentBtn.setAttribute('aria-label', 'collapse'); + + const chartBtn = document.createElement('igc-icon-button'); + chartBtn.classList.add('additional-action'); + chartBtn.setAttribute('slot', 'actions'); + chartBtn.setAttribute('variant', 'flat'); + chartBtn.setAttribute('collection', 'material'); + chartBtn.setAttribute('name', 'chart'); + chartBtn.setAttribute('aria-label', 'chart'); + + const moreBtn = document.createElement('igc-icon-button'); + moreBtn.classList.add('additional-action'); + moreBtn.setAttribute('slot', 'actions'); + moreBtn.setAttribute('variant', 'flat'); + moreBtn.setAttribute('collection', 'material'); + moreBtn.setAttribute('name', 'more'); + moreBtn.setAttribute('aria-label', 'more'); + + tile.append(chartBtn); + tile.append(moreBtn); + } else { + currentBtn.setAttribute('name', 'north_east'); + currentBtn.setAttribute('aria-label', 'expand'); + + const additionalButtons = + actionsSlot.parentElement?.querySelectorAll('.additional-action'); + additionalButtons?.forEach((btn) => btn.remove()); + } + } + } + }) + + + + document.querySelector('#customTwo')?.addEventListener('click', (event: Event) => { + const tile = (event.target as HTMLElement).closest('igc-tile'); + + if (tile) { + tile.maximized = !tile.maximized; + + const currentBtn = event.target as HTMLElement; + + if (currentBtn) { + if (tile.maximized) { + currentBtn.setAttribute('name', 'south_west'); + currentBtn.setAttribute('aria-label', 'collapse'); + } + else { + currentBtn.setAttribute('name', 'north_east'); + currentBtn.setAttribute('aria-label', 'expand'); + } + } + } + }) + + + } +} + +new TileManagerActions(); diff --git a/samples/layouts/tile-manager/actions/src/layout.css b/samples/layouts/tile-manager/actions/src/layout.css new file mode 100644 index 0000000000..1389f41697 --- /dev/null +++ b/samples/layouts/tile-manager/actions/src/layout.css @@ -0,0 +1,24 @@ +igc-tile-manager { + max-width: 1000px; + margin-bottom: 20px; +} + +igc-tile:nth-child(n + 3):nth-child(-n + 4)::part(actions) { + padding: 13px 16px; +} + +igc-tile:nth-child(n+3)::part(header) { + padding: 0px; +} + +igc-tile:nth-child(5)::part(header) { + padding: 18px 0 18px 0; +} + +p, igc-tile:nth-child(3) h3, igc-tile:nth-child(5) h3 { + margin-left: 20px; +} + +igc-tile:nth-last-child(1) p { + margin-top: 30px; +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/actions/tsconfig.json b/samples/layouts/tile-manager/actions/tsconfig.json new file mode 100644 index 0000000000..de23257dd8 --- /dev/null +++ b/samples/layouts/tile-manager/actions/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/actions/webpack.config.js b/samples/layouts/tile-manager/actions/webpack.config.js new file mode 100644 index 0000000000..9d11a6155c --- /dev/null +++ b/samples/layouts/tile-manager/actions/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/layouts/tile-manager/columngap/.prettierrc b/samples/layouts/tile-manager/columngap/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/layouts/tile-manager/columngap/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/columngap/ReadMe.md b/samples/layouts/tile-manager/columngap/ReadMe.md new file mode 100644 index 0000000000..4cd52c5443 --- /dev/null +++ b/samples/layouts/tile-manager/columngap/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Columngap feature using [Tile Manager](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/layouts/tile-manager/columngap +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/columngap/index.html b/samples/layouts/tile-manager/columngap/index.html new file mode 100644 index 0000000000..77333b090b --- /dev/null +++ b/samples/layouts/tile-manager/columngap/index.html @@ -0,0 +1,66 @@ + + + + + Tile Manager Columns + + + + + + + + + + +
+
+
+ + + + +
+ + +
+ picture +
+
+ +
+ picture +
+
+ +
+ picture +
+
+ +
+ picture +
+
+ +
+ picture +
+
+ +
+ picture +
+
+
+
+
+ + + <% if (false) { %> + + <% } %> + + + + \ No newline at end of file diff --git a/samples/layouts/tile-manager/columngap/package.json b/samples/layouts/tile-manager/columngap/package.json new file mode 100644 index 0000000000..25b28a29f5 --- /dev/null +++ b/samples/layouts/tile-manager/columngap/package.json @@ -0,0 +1,59 @@ +{ + "name": "wc-avatar-icon", + "version": "1.0.0", + "description": "This project provides example of Avatar Icon using IgniteUI for Web Components", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "author": "Infragistics", + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents": "5.3.0-beta.2", + "lit": "^3.2.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + }, + "license": "", + "homepage": "." +} diff --git a/samples/layouts/tile-manager/columngap/sandbox.config.json b/samples/layouts/tile-manager/columngap/sandbox.config.json new file mode 100644 index 0000000000..5c5b54fe21 --- /dev/null +++ b/samples/layouts/tile-manager/columngap/sandbox.config.json @@ -0,0 +1,7 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} + \ No newline at end of file diff --git a/samples/layouts/tile-manager/columngap/src/index.css b/samples/layouts/tile-manager/columngap/src/index.css new file mode 100644 index 0000000000..0fe9368715 --- /dev/null +++ b/samples/layouts/tile-manager/columngap/src/index.css @@ -0,0 +1,2 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tile-manager/columngap/src/index.ts b/samples/layouts/tile-manager/columngap/src/index.ts new file mode 100644 index 0000000000..f3389f1232 --- /dev/null +++ b/samples/layouts/tile-manager/columngap/src/index.ts @@ -0,0 +1,29 @@ +import { defineComponents, IgcTileManagerComponent, IgcInputComponent } from 'igniteui-webcomponents'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; +import './layout.css' + +defineComponents(IgcTileManagerComponent, IgcInputComponent); + +export class TileManagerColumn { + + constructor() { + const tileManager = document.querySelector("igc-tile-manager"); + document.addEventListener('igcChange', (e) => { + const fieldInput = e.target as IgcInputComponent; + if (tileManager) { + switch (fieldInput.label) { + case 'Columns Number': tileManager.columnCount = parseInt(fieldInput.value); + break; + case 'Gap Size': tileManager.gap = fieldInput.value; + break; + case 'Minimum Column Width': tileManager.minColumnWidth = fieldInput.value;; + break; + case 'Minimum Row Height': tileManager.minRowHeight = fieldInput.value;; + break; + } + } + }) + } +} + +new TileManagerColumn(); diff --git a/samples/layouts/tile-manager/columngap/src/layout.css b/samples/layouts/tile-manager/columngap/src/layout.css new file mode 100644 index 0000000000..2d4a65d915 --- /dev/null +++ b/samples/layouts/tile-manager/columngap/src/layout.css @@ -0,0 +1,31 @@ +p { + font-size: 25px; + padding: 10px; +} + +igc-tile-manager { + max-width: 1000px; + margin-bottom: 20px; +} + +igc-input { + width: min-content; + --ig-size: var(--ig-size-small); + margin-right: 50px; +} + +img { + height: 100%; + width: 100%; +} + +.inputWrapper{ + width: 1000px; + display: flex; + justify-content: center; + margin-bottom: 20px; +} + +.sample { + overflow: auto; +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/columngap/tsconfig.json b/samples/layouts/tile-manager/columngap/tsconfig.json new file mode 100644 index 0000000000..de23257dd8 --- /dev/null +++ b/samples/layouts/tile-manager/columngap/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/columngap/webpack.config.js b/samples/layouts/tile-manager/columngap/webpack.config.js new file mode 100644 index 0000000000..9d11a6155c --- /dev/null +++ b/samples/layouts/tile-manager/columngap/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/layouts/tile-manager/dragndrop/.prettierrc b/samples/layouts/tile-manager/dragndrop/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/layouts/tile-manager/dragndrop/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/dragndrop/ReadMe.md b/samples/layouts/tile-manager/dragndrop/ReadMe.md new file mode 100644 index 0000000000..eab96335a1 --- /dev/null +++ b/samples/layouts/tile-manager/dragndrop/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Dragndrop feature using [Tile Manager](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/layouts/tile-manager/dragndrop +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/dragndrop/index.html b/samples/layouts/tile-manager/dragndrop/index.html new file mode 100644 index 0000000000..6529ba332d --- /dev/null +++ b/samples/layouts/tile-manager/dragndrop/index.html @@ -0,0 +1,52 @@ + + + + + Tile Manager Drag and drop + + + + + + + + + + +
+
+
+ + Tile-header + Tile + +
+ + + Tile 1 header +

Content for Tile 1

+
+ + Tile 2 header +

Content for Tile 2

+
+ + Tile 3 header +

Content for Tile 3

+
+ + Tile 4 header +

Content for Tile 4

+
+
+
+
+ + + <% if (false) { %> + + <% } %> + + + + \ No newline at end of file diff --git a/samples/layouts/tile-manager/dragndrop/package.json b/samples/layouts/tile-manager/dragndrop/package.json new file mode 100644 index 0000000000..25b28a29f5 --- /dev/null +++ b/samples/layouts/tile-manager/dragndrop/package.json @@ -0,0 +1,59 @@ +{ + "name": "wc-avatar-icon", + "version": "1.0.0", + "description": "This project provides example of Avatar Icon using IgniteUI for Web Components", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "author": "Infragistics", + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents": "5.3.0-beta.2", + "lit": "^3.2.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + }, + "license": "", + "homepage": "." +} diff --git a/samples/layouts/tile-manager/dragndrop/sandbox.config.json b/samples/layouts/tile-manager/dragndrop/sandbox.config.json new file mode 100644 index 0000000000..5c5b54fe21 --- /dev/null +++ b/samples/layouts/tile-manager/dragndrop/sandbox.config.json @@ -0,0 +1,7 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} + \ No newline at end of file diff --git a/samples/layouts/tile-manager/dragndrop/src/index.css b/samples/layouts/tile-manager/dragndrop/src/index.css new file mode 100644 index 0000000000..0fe9368715 --- /dev/null +++ b/samples/layouts/tile-manager/dragndrop/src/index.css @@ -0,0 +1,2 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tile-manager/dragndrop/src/index.ts b/samples/layouts/tile-manager/dragndrop/src/index.ts new file mode 100644 index 0000000000..a8621b4857 --- /dev/null +++ b/samples/layouts/tile-manager/dragndrop/src/index.ts @@ -0,0 +1,21 @@ +import { defineComponents, IgcTileManagerComponent, IgcRadioGroupComponent, IgcRadioComponent } from 'igniteui-webcomponents'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; +import './layout.css' + +defineComponents(IgcTileManagerComponent, IgcRadioGroupComponent, IgcRadioComponent); + +export class TileManagerDragnDrop { + constructor() { + document.addEventListener('igcChange', (e) => { + const radio = e.target as IgcRadioComponent; + switch (radio.value) { + case 'TileHeader': document.querySelector("igc-tile-manager")?.setAttribute("drag-mode", "tile-header"); + break; + case 'Tile': document.querySelector("igc-tile-manager")?.setAttribute("drag-mode", "tile"); + break; + } + }) + } +} + +new TileManagerDragnDrop(); diff --git a/samples/layouts/tile-manager/dragndrop/src/layout.css b/samples/layouts/tile-manager/dragndrop/src/layout.css new file mode 100644 index 0000000000..e64c1b900e --- /dev/null +++ b/samples/layouts/tile-manager/dragndrop/src/layout.css @@ -0,0 +1,35 @@ + span{ + font-size: 30px; +} + +igc-tile::part(header) { + border-bottom: 2px solid var(--ig-primary-700); +} + +p { + font-size: 25px; + margin-left: 20px; + padding-top: 10px; +} + +igc-radio-group { + margin-left: 20px; + width: fit-content; + padding: 4px 15px; + margin-bottom: 10px; + border: 2px solid var(--ig-primary-700); + background-color: var(--ig-gray-300); +} + +igc-tile-manager { + max-width: 1000px; +} + +igc-tile::part(dragging) { + color: yellow; + +} + +.radioWrapper { + display: flex; +} diff --git a/samples/layouts/tile-manager/dragndrop/tsconfig.json b/samples/layouts/tile-manager/dragndrop/tsconfig.json new file mode 100644 index 0000000000..de23257dd8 --- /dev/null +++ b/samples/layouts/tile-manager/dragndrop/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/dragndrop/webpack.config.js b/samples/layouts/tile-manager/dragndrop/webpack.config.js new file mode 100644 index 0000000000..9d11a6155c --- /dev/null +++ b/samples/layouts/tile-manager/dragndrop/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/layouts/tile-manager/layout/.prettierrc b/samples/layouts/tile-manager/layout/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/layouts/tile-manager/layout/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/layout/ReadMe.md b/samples/layouts/tile-manager/layout/ReadMe.md new file mode 100644 index 0000000000..c4728769ad --- /dev/null +++ b/samples/layouts/tile-manager/layout/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Layout feature using [Tile Manager](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/layouts/tile-manager/layout +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/layout/index.html b/samples/layouts/tile-manager/layout/index.html new file mode 100644 index 0000000000..b4e9b7e82d --- /dev/null +++ b/samples/layouts/tile-manager/layout/index.html @@ -0,0 +1,52 @@ + + + + + Tile Manager Layout + + + + + + + + + + +
+
+
+ Save Layout + Load Layout + Add Tile + Remove Tile +
+ + + Tile 1 header +

Content for Tile 1

+
+ + Tile 2 header +

Content for Tile 2

+
+ + Tile 3 header +

Content for Tile 3

+
+ + Tile 4 header +

Content for Tile 4

+
+
+
+
+ + + <% if (false) { %> + + <% } %> + + + + \ No newline at end of file diff --git a/samples/layouts/tile-manager/layout/package.json b/samples/layouts/tile-manager/layout/package.json new file mode 100644 index 0000000000..25b28a29f5 --- /dev/null +++ b/samples/layouts/tile-manager/layout/package.json @@ -0,0 +1,59 @@ +{ + "name": "wc-avatar-icon", + "version": "1.0.0", + "description": "This project provides example of Avatar Icon using IgniteUI for Web Components", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "author": "Infragistics", + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents": "5.3.0-beta.2", + "lit": "^3.2.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + }, + "license": "", + "homepage": "." +} diff --git a/samples/layouts/tile-manager/layout/sandbox.config.json b/samples/layouts/tile-manager/layout/sandbox.config.json new file mode 100644 index 0000000000..5c5b54fe21 --- /dev/null +++ b/samples/layouts/tile-manager/layout/sandbox.config.json @@ -0,0 +1,7 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} + \ No newline at end of file diff --git a/samples/layouts/tile-manager/layout/src/index.css b/samples/layouts/tile-manager/layout/src/index.css new file mode 100644 index 0000000000..0fe9368715 --- /dev/null +++ b/samples/layouts/tile-manager/layout/src/index.css @@ -0,0 +1,2 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tile-manager/layout/src/index.ts b/samples/layouts/tile-manager/layout/src/index.ts new file mode 100644 index 0000000000..08dbb117d0 --- /dev/null +++ b/samples/layouts/tile-manager/layout/src/index.ts @@ -0,0 +1,51 @@ +import { defineComponents, IgcTileManagerComponent, IgcButtonComponent, IgcButtonGroupComponent } from 'igniteui-webcomponents'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; +import './layout.css' + +defineComponents(IgcTileManagerComponent, IgcButtonComponent, IgcButtonGroupComponent); + +export class TileManagerLayout { + + constructor() { + let serializedData: string; + var tileManager = document.querySelector('#tile-manager1')!; + + document.querySelector('#saveL')?.addEventListener('click', () => { + const tileManager = + document.querySelector('#tile-manager1')!; + + serializedData = tileManager.saveLayout(); + }) + + document.querySelector('#loadL')?.addEventListener('click', () => { + const tileManager = + document.querySelector('#tile-manager1')!; + + tileManager.loadLayout(serializedData); + }) + + document.querySelector('#addT')?.addEventListener('click', () => { + const tiles = tileManager.querySelectorAll('igc-tile'); + const newTile = document.createElement('igc-tile'); + const contentHeader = document.createElement('span'); + const content = document.createElement('p'); + contentHeader.textContent = `Tile ${tileManager.tiles.length + 1} header`; + content.textContent = `Content for Tile ${tileManager.tiles.length + 1}`; + contentHeader.setAttribute('slot', 'title'); + newTile.position = 0; + newTile.append(contentHeader); + newTile.append(content); + tileManager.insertBefore(newTile, tiles[3]); + }) + + document.querySelector('#remT')?.addEventListener('click', () => { + const firstTile = tileManager.querySelector('igc-tile:first-of-type'); + + if (firstTile) { + firstTile.remove(); + } + }) + } +} + +new TileManagerLayout(); diff --git a/samples/layouts/tile-manager/layout/src/layout.css b/samples/layouts/tile-manager/layout/src/layout.css new file mode 100644 index 0000000000..5a0e98aa65 --- /dev/null +++ b/samples/layouts/tile-manager/layout/src/layout.css @@ -0,0 +1,25 @@ +span{ + font-size: 30px; +} + +p { + font-size: 25px; + margin-left: 20px; +} + +.btnWrapper { + margin: 0 0 15px 20px; +} + +igc-button:nth-of-type(-n+3) { + margin-right: 5px;; +} + +igc-tile-manager { + max-width: 1000px; + margin-bottom: 20px; +} + +.sample { + overflow: auto; +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/layout/tsconfig.json b/samples/layouts/tile-manager/layout/tsconfig.json new file mode 100644 index 0000000000..de23257dd8 --- /dev/null +++ b/samples/layouts/tile-manager/layout/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/layout/webpack.config.js b/samples/layouts/tile-manager/layout/webpack.config.js new file mode 100644 index 0000000000..9d11a6155c --- /dev/null +++ b/samples/layouts/tile-manager/layout/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/layouts/tile-manager/overview/.prettierrc b/samples/layouts/tile-manager/overview/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/layouts/tile-manager/overview/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/overview/ReadMe.md b/samples/layouts/tile-manager/overview/ReadMe.md new file mode 100644 index 0000000000..c5376311dc --- /dev/null +++ b/samples/layouts/tile-manager/overview/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Overview feature using [Tile Manager](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/layouts/tile-manager/overview +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/overview/index.html b/samples/layouts/tile-manager/overview/index.html new file mode 100644 index 0000000000..2f66fb2c8b --- /dev/null +++ b/samples/layouts/tile-manager/overview/index.html @@ -0,0 +1,46 @@ + + + + + Tile Manager Overview + + + + + + + + + + +
+
+ + + Tile 1 header +

Content for Tile 1

+
+ + Tile 2 header +

Content for Tile 2

+
+ + Tile 3 header +

Content for Tile 3

+
+ + Tile 4 header +

Content for Tile 4

+
+
+
+
+ + + <% if (false) { %> + + <% } %> + + + + \ No newline at end of file diff --git a/samples/layouts/tile-manager/overview/package.json b/samples/layouts/tile-manager/overview/package.json new file mode 100644 index 0000000000..25b28a29f5 --- /dev/null +++ b/samples/layouts/tile-manager/overview/package.json @@ -0,0 +1,59 @@ +{ + "name": "wc-avatar-icon", + "version": "1.0.0", + "description": "This project provides example of Avatar Icon using IgniteUI for Web Components", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "author": "Infragistics", + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents": "5.3.0-beta.2", + "lit": "^3.2.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + }, + "license": "", + "homepage": "." +} diff --git a/samples/layouts/tile-manager/overview/sandbox.config.json b/samples/layouts/tile-manager/overview/sandbox.config.json new file mode 100644 index 0000000000..5c5b54fe21 --- /dev/null +++ b/samples/layouts/tile-manager/overview/sandbox.config.json @@ -0,0 +1,7 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} + \ No newline at end of file diff --git a/samples/layouts/tile-manager/overview/src/index.css b/samples/layouts/tile-manager/overview/src/index.css new file mode 100644 index 0000000000..0fe9368715 --- /dev/null +++ b/samples/layouts/tile-manager/overview/src/index.css @@ -0,0 +1,2 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tile-manager/overview/src/index.ts b/samples/layouts/tile-manager/overview/src/index.ts new file mode 100644 index 0000000000..b5162d4baa --- /dev/null +++ b/samples/layouts/tile-manager/overview/src/index.ts @@ -0,0 +1,12 @@ +import { defineComponents, IgcTileManagerComponent } from 'igniteui-webcomponents'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; +import './layout.css' + +defineComponents(IgcTileManagerComponent); + +export class TileManagerOverview { + constructor() { + } +} + +new TileManagerOverview(); diff --git a/samples/layouts/tile-manager/overview/src/layout.css b/samples/layouts/tile-manager/overview/src/layout.css new file mode 100644 index 0000000000..5755b133f7 --- /dev/null +++ b/samples/layouts/tile-manager/overview/src/layout.css @@ -0,0 +1,8 @@ +span{ + font-size: 30px; +} + +p { + font-size: 25px; + margin-left : 20px; +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/overview/tsconfig.json b/samples/layouts/tile-manager/overview/tsconfig.json new file mode 100644 index 0000000000..de23257dd8 --- /dev/null +++ b/samples/layouts/tile-manager/overview/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/overview/webpack.config.js b/samples/layouts/tile-manager/overview/webpack.config.js new file mode 100644 index 0000000000..9d11a6155c --- /dev/null +++ b/samples/layouts/tile-manager/overview/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/layouts/tile-manager/resize/.prettierrc b/samples/layouts/tile-manager/resize/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/layouts/tile-manager/resize/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/resize/ReadMe.md b/samples/layouts/tile-manager/resize/ReadMe.md new file mode 100644 index 0000000000..7f0aac25ee --- /dev/null +++ b/samples/layouts/tile-manager/resize/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Resize feature using [Tile Manager](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/layouts/tile-manager/resize +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/resize/index.html b/samples/layouts/tile-manager/resize/index.html new file mode 100644 index 0000000000..142d0c2880 --- /dev/null +++ b/samples/layouts/tile-manager/resize/index.html @@ -0,0 +1,50 @@ + + + + + Tile Manager Resize + + + + + + + + + + +
+
+ + Always + Hover + + + + Tile 1 header +

Content for Tile 1

+
+ + Tile 2 header +

Content for Tile 2

+
+ + Tile 3 header +

Content for Tile 3

+
+ + Tile 4 header +

Content for Tile 4

+
+
+
+
+ + + <% if (false) { %> + + <% } %> + + + + \ No newline at end of file diff --git a/samples/layouts/tile-manager/resize/package.json b/samples/layouts/tile-manager/resize/package.json new file mode 100644 index 0000000000..25b28a29f5 --- /dev/null +++ b/samples/layouts/tile-manager/resize/package.json @@ -0,0 +1,59 @@ +{ + "name": "wc-avatar-icon", + "version": "1.0.0", + "description": "This project provides example of Avatar Icon using IgniteUI for Web Components", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "author": "Infragistics", + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents": "5.3.0-beta.2", + "lit": "^3.2.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + }, + "license": "", + "homepage": "." +} diff --git a/samples/layouts/tile-manager/resize/sandbox.config.json b/samples/layouts/tile-manager/resize/sandbox.config.json new file mode 100644 index 0000000000..5c5b54fe21 --- /dev/null +++ b/samples/layouts/tile-manager/resize/sandbox.config.json @@ -0,0 +1,7 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} + \ No newline at end of file diff --git a/samples/layouts/tile-manager/resize/src/index.css b/samples/layouts/tile-manager/resize/src/index.css new file mode 100644 index 0000000000..0fe9368715 --- /dev/null +++ b/samples/layouts/tile-manager/resize/src/index.css @@ -0,0 +1,2 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tile-manager/resize/src/index.ts b/samples/layouts/tile-manager/resize/src/index.ts new file mode 100644 index 0000000000..2783040161 --- /dev/null +++ b/samples/layouts/tile-manager/resize/src/index.ts @@ -0,0 +1,21 @@ +import { defineComponents, IgcTileManagerComponent, IgcRadioGroupComponent, IgcRadioComponent } from 'igniteui-webcomponents'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; +import './layout.css' + +defineComponents(IgcTileManagerComponent, IgcRadioGroupComponent, IgcRadioComponent); + +export class TileManagerResize { + constructor() { + document.addEventListener('igcChange', (e) => { + const radio = e.target as IgcRadioComponent; + if (radio.value === "Hover") { + document.querySelector("igc-tile-manager")?.setAttribute("resize-mode", "hover"); + } + else { + document.querySelector("igc-tile-manager")?.setAttribute("resize-mode", "always"); + } + }) + } +} + +new TileManagerResize(); diff --git a/samples/layouts/tile-manager/resize/src/layout.css b/samples/layouts/tile-manager/resize/src/layout.css new file mode 100644 index 0000000000..df8afd2277 --- /dev/null +++ b/samples/layouts/tile-manager/resize/src/layout.css @@ -0,0 +1,21 @@ +span{ + font-size: 30px; +} + +p { + font-size: 25px; + padding-left: 20px; +} + +igc-radio-group { + margin-left: 20px; + width: fit-content; + padding: 4px 15px; + margin-bottom: 10px; + border: 2px solid var(--ig-primary-700); + background-color: var(--ig-gray-300); +} + +igc-tile-manager { + max-width: 1000px; +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/resize/tsconfig.json b/samples/layouts/tile-manager/resize/tsconfig.json new file mode 100644 index 0000000000..de23257dd8 --- /dev/null +++ b/samples/layouts/tile-manager/resize/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/resize/webpack.config.js b/samples/layouts/tile-manager/resize/webpack.config.js new file mode 100644 index 0000000000..9d11a6155c --- /dev/null +++ b/samples/layouts/tile-manager/resize/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; diff --git a/samples/layouts/tile-manager/styling/.prettierrc b/samples/layouts/tile-manager/styling/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/layouts/tile-manager/styling/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/styling/ReadMe.md b/samples/layouts/tile-manager/styling/ReadMe.md new file mode 100644 index 0000000000..eac5234415 --- /dev/null +++ b/samples/layouts/tile-manager/styling/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of Web Components application with example of Styling feature using [Tile Manager](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +To set up this project locally, execute these commands: + +``` +git clone https://github.com/IgniteUI/igniteui-wc-examples.git +git checkout master +cd ./igniteui-wc-examples +cd ./samples/layouts/tile-manager/styling +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: + +``` +npm install +npm run start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/styling/index.html b/samples/layouts/tile-manager/styling/index.html new file mode 100644 index 0000000000..28a61f3d8c --- /dev/null +++ b/samples/layouts/tile-manager/styling/index.html @@ -0,0 +1,194 @@ + + + + + Tile Manager Styling + + + + + + + + + + +
+
+ + +

Order info

+ + + + list_alt + +
+

OrderID

+

10293

+
+
+ + + list_alt + +
+

Customer Name

+

Tortuga Restaurante

+
+
+ + + calendar_month + +
+

Order Date

+

August 29, 1996

+
+
+ + + calendar_month + +
+

Shipped Date

+

September 11, 1996

+
+
+ + + list_alt + +
+

Product Name

+

Carnavon Tigers

+
+
+ + + list_alt + +
+

Ship Country

+

Mexico

+
+
+
+
+ +

Order Line Items

+
+ +
+ +
+ + + production_quantity_limits + + +
+

Carnavon Tigers

+
+ +
+ Quantity 12 +
+
+ Unit Price $50 +
+
+
+
+ +
+ +
+ + + production_quantity_limits + + +
+

Guarana Fantastica

+
+ +
+ Quantity 10 +
+
+ Unit Price $4 +
+
+
+
+ +
+ +
+ + + production_quantity_limits + + +
+

Vegie-spread

+
+ +
+ Quantity 5 +
+
+ Unit Price $35 +
+
+
+
+ +
+ +
+ + + production_quantity_limits + + +
+

Rhonbrau Klosterbier

+
+ +
+ Quantity 7 +
+
+ Unit Price $6 +
+
+
+
+
+
+ +

Order Value

+
+

$8.66K

+
+
+ +

Item quantity

+
+

4

+
+
+
+
+
+ + + <% if (false) { %> + + <% } %> + + + + \ No newline at end of file diff --git a/samples/layouts/tile-manager/styling/package.json b/samples/layouts/tile-manager/styling/package.json new file mode 100644 index 0000000000..25b28a29f5 --- /dev/null +++ b/samples/layouts/tile-manager/styling/package.json @@ -0,0 +1,59 @@ +{ + "name": "wc-avatar-icon", + "version": "1.0.0", + "description": "This project provides example of Avatar Icon using IgniteUI for Web Components", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "author": "Infragistics", + "dependencies": { + "@webcomponents/custom-elements": "^1.4.1", + "@webcomponents/template": "^1.4.2", + "babel-runtime": "^6.26.0", + "core-js": "^3.6.5", + "igniteui-webcomponents": "5.3.0-beta.2", + "lit": "^3.2.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-proposal-class-properties": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + }, + "license": "", + "homepage": "." +} diff --git a/samples/layouts/tile-manager/styling/sandbox.config.json b/samples/layouts/tile-manager/styling/sandbox.config.json new file mode 100644 index 0000000000..5c5b54fe21 --- /dev/null +++ b/samples/layouts/tile-manager/styling/sandbox.config.json @@ -0,0 +1,7 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} + \ No newline at end of file diff --git a/samples/layouts/tile-manager/styling/src/index.css b/samples/layouts/tile-manager/styling/src/index.css new file mode 100644 index 0000000000..0fe9368715 --- /dev/null +++ b/samples/layouts/tile-manager/styling/src/index.css @@ -0,0 +1,2 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tile-manager/styling/src/index.ts b/samples/layouts/tile-manager/styling/src/index.ts new file mode 100644 index 0000000000..106e0703d6 --- /dev/null +++ b/samples/layouts/tile-manager/styling/src/index.ts @@ -0,0 +1,13 @@ +import { defineComponents, IgcAvatarComponent, IgcCardComponent, IgcListComponent, IgcTileManagerComponent } from 'igniteui-webcomponents'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; +import './layout.css' +import './styles.css' + +defineComponents(IgcTileManagerComponent, IgcListComponent, IgcAvatarComponent, IgcCardComponent); + +export class TileManagerStyling { + constructor() { + } +} + +new TileManagerStyling(); diff --git a/samples/layouts/tile-manager/styling/src/layout.css b/samples/layouts/tile-manager/styling/src/layout.css new file mode 100644 index 0000000000..3bb1373621 --- /dev/null +++ b/samples/layouts/tile-manager/styling/src/layout.css @@ -0,0 +1,50 @@ +igc-tile-manager { + max-width: 1000px; + margin-bottom: 20px; +} + +.sample { + overflow: auto; +} + +.group { + display: flex; + flex-direction: row; + justify-content: space-evenly; + flex-wrap: wrap; + margin-top: 25px; + +} + +.card { + min-height: 30px; + width: 285px; + min-width: 285px; + max-width: 285px; +} + +igc-card-content { + color: var(--content-text-color); +} + +.body-content { + width: 100%; + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: center; +} + +.card:nth-child(n+3) { + margin-top: 10px; +} + +h2 { + font-size: 22px; +} + +.string { + text-align: center; + margin-top: 50px; + color: var(--ig-gray-800); +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/styling/src/styles.css b/samples/layouts/tile-manager/styling/src/styles.css new file mode 100644 index 0000000000..46c00c9fbc --- /dev/null +++ b/samples/layouts/tile-manager/styling/src/styles.css @@ -0,0 +1,15 @@ +igc-tile-manager::part(base) { + background-color: var(--ig-surface-900); +} + +igc-tile::part(content-container) { + color: var(--ig-secondary-200); +} + +igc-tile::part(header) { + background-color: var(--ig-gray-300); +} + +igc-tile::part(title) { + color: var(--ig-primary-400); +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/styling/tsconfig.json b/samples/layouts/tile-manager/styling/tsconfig.json new file mode 100644 index 0000000000..de23257dd8 --- /dev/null +++ b/samples/layouts/tile-manager/styling/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/layouts/tile-manager/styling/webpack.config.js b/samples/layouts/tile-manager/styling/webpack.config.js new file mode 100644 index 0000000000..9d11a6155c --- /dev/null +++ b/samples/layouts/tile-manager/styling/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), + path.resolve(__dirname, 'node_modules/@webcomponents/template'), + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-proposal-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; From 8689ff8825e92366824efb36bfd1d290fbe225aa Mon Sep 17 00:00:00 2001 From: "azure-pipelines[bot]" <36771401+azure-pipelines[bot]@users.noreply.github.com> Date: Thu, 27 Feb 2025 14:59:13 -0500 Subject: [PATCH 59/63] Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.26.2 (#949) Co-authored-by: tfsbuild Co-authored-by: mddifilippo89 --- samples/charts/data-chart/selection-matcher/src/index.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/samples/charts/data-chart/selection-matcher/src/index.ts b/samples/charts/data-chart/selection-matcher/src/index.ts index 620a8427cc..ab2d9062c1 100644 --- a/samples/charts/data-chart/selection-matcher/src/index.ts +++ b/samples/charts/data-chart/selection-matcher/src/index.ts @@ -83,11 +83,12 @@ export class Sample { selection.matcher = matcher; chart.selectedSeriesItems.add(selection); + let matcher2: IgcSeriesMatcher = new IgcSeriesMatcher(); let selection2: IgcChartSelection = new IgcChartSelection(); selection2.item = data[2]; - matcher.memberPath = "wind"; - matcher.memberPathType = "ValueMemberPath"; - selection2.matcher = matcher; + matcher2.memberPath = "wind"; + matcher2.memberPathType = "ValueMemberPath"; + selection2.matcher = matcher2; chart.selectedSeriesItems.add(selection2); From 670216a8a3e94c7a8f5e5d89b829122e7b8be951 Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Fri, 28 Feb 2025 16:10:35 +0200 Subject: [PATCH 60/63] Adding changes from build igniteui-xplat-examples-output+PRs_2025.2.28.1 --- .../selection-matcher/.prettierrc | 11 ++ .../selection-matcher/index.html | 54 +++++++++ .../selection-matcher/package.json | 58 ++++++++++ .../selection-matcher/sandbox.config.json | 6 + .../src/EnergyRenewableConsumption.ts | 69 ++++++++++++ .../selection-matcher/src/index.css | 3 + .../selection-matcher/src/index.ts | 92 +++++++++++++++ .../selection-matcher/tsconfig.json | 41 +++++++ .../selection-matcher/tslint.json | 54 +++++++++ .../selection-matcher/webpack.config.js | 105 ++++++++++++++++++ 10 files changed, 493 insertions(+) create mode 100644 samples/charts/category-chart/selection-matcher/.prettierrc create mode 100644 samples/charts/category-chart/selection-matcher/index.html create mode 100644 samples/charts/category-chart/selection-matcher/package.json create mode 100644 samples/charts/category-chart/selection-matcher/sandbox.config.json create mode 100644 samples/charts/category-chart/selection-matcher/src/EnergyRenewableConsumption.ts create mode 100644 samples/charts/category-chart/selection-matcher/src/index.css create mode 100644 samples/charts/category-chart/selection-matcher/src/index.ts create mode 100644 samples/charts/category-chart/selection-matcher/tsconfig.json create mode 100644 samples/charts/category-chart/selection-matcher/tslint.json create mode 100644 samples/charts/category-chart/selection-matcher/webpack.config.js diff --git a/samples/charts/category-chart/selection-matcher/.prettierrc b/samples/charts/category-chart/selection-matcher/.prettierrc new file mode 100644 index 0000000000..15a7c7c6cf --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 250, + "tabWidth": 4, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "none", + "bracketSpacing": true, + "jsxBracketSameLine": false, + "fluid": false +} \ No newline at end of file diff --git a/samples/charts/category-chart/selection-matcher/index.html b/samples/charts/category-chart/selection-matcher/index.html new file mode 100644 index 0000000000..52ebe657e9 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/index.html @@ -0,0 +1,54 @@ + + + + Sample | Ignite UI | Web Components | infragistics + + + + + + + + + + + + +
+ +
+ +
+ Renewable Electricity Generated +
+ +
+ + +
+ +
+ + +
+
+ +
+ + + <% if (false) { %><% } %> + + \ No newline at end of file diff --git a/samples/charts/category-chart/selection-matcher/package.json b/samples/charts/category-chart/selection-matcher/package.json new file mode 100644 index 0000000000..41360f32e8 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/package.json @@ -0,0 +1,58 @@ +{ + "name": "example-ignite-ui-web-components", + "description": "This project provides example of using Ignite UI for Web Components", + "author": "Infragistics", + "version": "1.0.0", + "license": "", + "private": true, + "homepage": ".", + "main": "src/index.ts", + "scripts": { + "build": "npm run build:prod", + "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start": "npm run serve:dev", + "build:legacy": "npm run build:prod:legacy", + "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", + "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", + "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", + "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", + "start:legacy": "npm run serve:dev:legacy" + }, + "dependencies": { + "babel-runtime": "^6.26.0", + "igniteui-webcomponents-charts": "5.2.1-beta.0", + "igniteui-webcomponents-core": "5.2.1-beta.0", + "lit-html": "^3.2.0", + "tslib": "^2.0.0" + }, + "devDependencies": { + "@babel/cli": "^7.8.3", + "@babel/core": "^7.8.3", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-runtime": "^7.10.0", + "@babel/preset-env": "^7.8.3", + "@babel/preset-typescript": "^7.8.3", + "@types/source-map": "^0.5.7", + "babel-loader": "^8.1.0", + "babel-plugin-transform-custom-element-classes": "^0.1.0", + "css-loader": "^1.0.0", + "csv-loader": "^3.0.2", + "file-loader": "^4.2.0", + "fork-ts-checker-webpack-plugin": "^4.1.5", + "html-webpack-plugin": "^4.3.0", + "parcel-bundler": "^1.6.1", + "source-map": "^0.7.3", + "style-loader": "^0.22.1", + "tsconfig-paths-webpack-plugin": "^4.0.0", + "typescript": "^4.4.4", + "webpack": "^5.96.1", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.11.1", + "worker-loader": "^3.0.8", + "xml-loader": "^1.2.1" + } +} diff --git a/samples/charts/category-chart/selection-matcher/sandbox.config.json b/samples/charts/category-chart/selection-matcher/sandbox.config.json new file mode 100644 index 0000000000..52c7875103 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/sandbox.config.json @@ -0,0 +1,6 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser", + "template": "parcel" +} \ No newline at end of file diff --git a/samples/charts/category-chart/selection-matcher/src/EnergyRenewableConsumption.ts b/samples/charts/category-chart/selection-matcher/src/EnergyRenewableConsumption.ts new file mode 100644 index 0000000000..f742bbef3b --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/EnergyRenewableConsumption.ts @@ -0,0 +1,69 @@ +export class EnergyRenewableConsumptionItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public location: string; + public year: number; + public hydro: number; + public solar: number; + public wind: number; + public other: number; + +} +export class EnergyRenewableConsumption extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EnergyRenewableConsumptionItem( + { + location: `China`, + year: 2019, + hydro: 1269.5, + solar: 223, + wind: 405.2, + other: 102.8 + }), + new EnergyRenewableConsumptionItem( + { + location: `Europe`, + year: 2019, + hydro: 632.54, + solar: 154, + wind: 461.3, + other: 220.3 + }), + new EnergyRenewableConsumptionItem( + { + location: `USA`, + year: 2019, + hydro: 271.16, + solar: 108, + wind: 303.4, + other: 78.34 + }), + new EnergyRenewableConsumptionItem( + { + location: `Brazil`, + year: 2019, + hydro: 399.3, + solar: 5.5, + wind: 55.83, + other: 56.25 + }), + new EnergyRenewableConsumptionItem( + { + location: `Canada`, + year: 2019, + hydro: 381.98, + solar: 4.3, + wind: 34.17, + other: 10.81 + }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/charts/category-chart/selection-matcher/src/index.css b/samples/charts/category-chart/selection-matcher/src/index.css new file mode 100644 index 0000000000..8b42ec3ed2 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/index.css @@ -0,0 +1,3 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + diff --git a/samples/charts/category-chart/selection-matcher/src/index.ts b/samples/charts/category-chart/selection-matcher/src/index.ts new file mode 100644 index 0000000000..03891beeca --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/src/index.ts @@ -0,0 +1,92 @@ +import { IgcLegendModule, IgcCategoryChartModule, IgcDataChartAnnotationModule, IgcDataChartInteractivityModule, IgcDataChartCoreModule } from 'igniteui-webcomponents-charts'; +import { ComponentRenderer, LegendDescriptionModule, CategoryChartDescriptionModule, DataChartAnnotationDescriptionModule, DataChartInteractivityDescriptionModule, DataChartCoreDescriptionModule } from 'igniteui-webcomponents-core'; +import { IgcLegendComponent, IgcCategoryChartComponent } from 'igniteui-webcomponents-charts'; +import { EnergyRenewableConsumptionItem, EnergyRenewableConsumption } from './EnergyRenewableConsumption'; +import { IgcChartSelection, IgcSeriesMatcher } from 'igniteui-webcomponents-charts'; + +import { ModuleManager } from 'igniteui-webcomponents-core'; + +import "./index.css"; + +ModuleManager.register( + IgcLegendModule, + IgcCategoryChartModule, + IgcDataChartAnnotationModule, + IgcDataChartInteractivityModule, + IgcDataChartCoreModule +); + +export class Sample { + + private legend: IgcLegendComponent + private chart: IgcCategoryChartComponent + private _bind: () => void; + + constructor() { + var legend = this.legend = document.getElementById('legend') as IgcLegendComponent; + var chart = this.chart = document.getElementById('chart') as IgcCategoryChartComponent; + + this._bind = () => { + chart.legend = this.legend; + chart.dataSource = this.energyRenewableConsumption; + } + this._bind(); + + this.selectionMatcherOnViewInit(); + } + + private _energyRenewableConsumption: EnergyRenewableConsumption = null; + public get energyRenewableConsumption(): EnergyRenewableConsumption { + if (this._energyRenewableConsumption == null) + { + this._energyRenewableConsumption = new EnergyRenewableConsumption(); + } + return this._energyRenewableConsumption; + } + + private _componentRenderer: ComponentRenderer = null; + public get renderer(): ComponentRenderer { + if (this._componentRenderer == null) { + this._componentRenderer = new ComponentRenderer(); + var context = this._componentRenderer.context; + LegendDescriptionModule.register(context); + CategoryChartDescriptionModule.register(context); + DataChartAnnotationDescriptionModule.register(context); + DataChartInteractivityDescriptionModule.register(context); + DataChartCoreDescriptionModule.register(context); + } + return this._componentRenderer; + } + + private _timer: ReturnType; + + public selectionMatcherOnViewInit(): void { + + var chart = this.chart; + + this._timer = setTimeout(() => { + var data = this.energyRenewableConsumption; + let matcher: IgcSeriesMatcher = new IgcSeriesMatcher(); + + let selection: IgcChartSelection = new IgcChartSelection(); + selection.item = data[1]; + matcher.memberPath = "hydro"; + matcher.memberPathType = "ValueMemberPath"; + selection.matcher = matcher; + chart.selectedSeriesItems.add(selection); + + let matcher2: IgcSeriesMatcher = new IgcSeriesMatcher(); + let selection2: IgcChartSelection = new IgcChartSelection(); + selection2.item = data[2]; + matcher2.memberPath = "wind"; + matcher2.memberPathType = "ValueMemberPath"; + selection2.matcher = matcher2; + + chart.selectedSeriesItems.add(selection2); + + }, 100); + } + +} + +new Sample(); diff --git a/samples/charts/category-chart/selection-matcher/tsconfig.json b/samples/charts/category-chart/selection-matcher/tsconfig.json new file mode 100644 index 0000000000..e7c370def4 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/tsconfig.json @@ -0,0 +1,41 @@ +{ + "compilerOptions": { + "noImplicitReturns": true, + "esModuleInterop": true, + "resolveJsonModule": true, + "noImplicitAny": true, + "declarationDir": "dist/types", + "moduleResolution": "node", + "declaration": true, + "target": "es2015", + "module": "es2015", + "strict": true, + "strictNullChecks": false, + "baseUrl": ".", + "paths": { + "igniteui-webcomponents-core": [ "node_modules/igniteui-webcomponents-core", "node_modules/@infragistics/igniteui-webcomponents-core" ], + "igniteui-webcomponents-charts": [ "node_modules/igniteui-webcomponents-charts", "node_modules/@infragistics/igniteui-webcomponents-charts" ], + "igniteui-webcomponents-gauges": [ "node_modules/igniteui-webcomponents-gauges", "node_modules/@infragistics/igniteui-webcomponents-gauges" ], + "igniteui-webcomponents-datasources": [ "node_modules/igniteui-webcomponents-datasources", "node_modules/@infragistics/igniteui-webcomponents-datasources" ], + "igniteui-webcomponents-excel": [ "node_modules/igniteui-webcomponents-excel", "node_modules/@infragistics/igniteui-webcomponents-excel" ], + "igniteui-webcomponents-inputs": [ "node_modules/igniteui-webcomponents-inputs", "node_modules/@infragistics/igniteui-webcomponents-inputs" ], + "igniteui-webcomponents-grids": [ "node_modules/igniteui-webcomponents-grids", "node_modules/@infragistics/igniteui-webcomponents-grids" ], + "igniteui-webcomponents-maps": [ "node_modules/igniteui-webcomponents-maps", "node_modules/@infragistics/igniteui-webcomponents-maps" ], + "igniteui-webcomponents-spreadsheet": [ "node_modules/igniteui-webcomponents-spreadsheet", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet" ], + "igniteui-webcomponents-spreadsheet-chart-adapter": [ "node_modules/igniteui-webcomponents-spreadsheet-chart-adapter", "node_modules/@infragistics/igniteui-webcomponents-spreadsheet-chart-adapter" ], + "igniteui-webcomponents-grids/*": [ "node_modules/igniteui-webcomponents-grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/*" ], + "igniteui-webcomponents-grids/grids": [ "node_modules/igniteui-webcomponents-grids/grids", "node_modules/@infragistics/igniteui-webcomponents-grids/grids" ], + "igniteui-webcomponents-grids/grids/*": [ "node_modules/igniteui-webcomponents-grids/grids/*", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/*" ], + "igniteui-webcomponents-grids/grids/combined": [ "node_modules/igniteui-webcomponents-grids/grids/combined", "node_modules/@infragistics/igniteui-webcomponents-grids/grids/combined" ], + "igniteui-webcomponents-layouts": [ "node_modules/igniteui-webcomponents-layouts", "node_modules/@infragistics/igniteui-webcomponents-layouts" ], + "igniteui-webcomponents-dashboards": [ "node_modules/igniteui-webcomponents-dashboards", "node_modules/@infragistics/igniteui-webcomponents-dashboards" ] + } + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file diff --git a/samples/charts/category-chart/selection-matcher/tslint.json b/samples/charts/category-chart/selection-matcher/tslint.json new file mode 100644 index 0000000000..e3b56e93a1 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/tslint.json @@ -0,0 +1,54 @@ +{ + "extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"], + "linterOptions": { + "exclude": [ + "node_modules/**/*.ts", + "**/odatajs-4.0.0.js", + "src/images/*.*" + ] + }, + "rules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "member-ordering": false, + "no-console": false, + "no-string-literal": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-trailing-whitespace": false, + "no-var": false, + "no-var-requires": false, + "no-var-keyword": false, + "ordered-imports": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/type-annotation-spacing": "off" + }, + "jsRules": { + "curly": [false, "ignore-same-line"], + "jsx-no-lambda": false, + "jsx-self-close": false, + "jsx-wrap-multiline": false, + "max-classes-per-file": [true, 10], + "no-console": false, + "no-unused-vars": false, + "no-useless-constructor": false, + "no-var-requires": false, + "object-literal-sort-keys": false, + "object-literal-shorthand": false, + "only-arrow-functions": false, + "ordered-imports": false, + "prefer-const": false, + "prefer-for-of": false, + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-useless-constructor": "off" + } + } \ No newline at end of file diff --git a/samples/charts/category-chart/selection-matcher/webpack.config.js b/samples/charts/category-chart/selection-matcher/webpack.config.js new file mode 100644 index 0000000000..e90479cd73 --- /dev/null +++ b/samples/charts/category-chart/selection-matcher/webpack.config.js @@ -0,0 +1,105 @@ +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); +const HtmlWebpackPlugin = require('html-webpack-plugin'); +const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); +const path = require('path'); +const webpack = require('webpack'); + +module.exports = env => { + const nodeEnv = process.env.NODE_ENV || 'development'; + const isProd = nodeEnv === 'production'; + const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); + console.log(">> webpack nodeEnv=" + nodeEnv); + console.log(">> webpack isProd=" + isProd); + console.log(">> webpack isLegacy=" + isLegacy); + const presets = [ + ["@babel/preset-env", { + "useBuiltIns": "usage", + "corejs": 3, + "targets": { + "browsers": isLegacy ? ["defaults"] : [ + "last 2 Chrome versions", + "last 2 Safari versions", + "last 2 iOS versions", + "last 2 Firefox versions", + "last 2 Edge versions"] + } + }], + "@babel/preset-typescript" + ]; + + return { + entry: isLegacy ? [ + path.resolve(__dirname, 'src') + ] : path.resolve(__dirname, 'src'), + devtool: isProd ? false : 'source-map', + output: { + filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', + globalObject: 'this', + path: path.resolve(__dirname, 'dist'), + }, + + resolve: { + mainFields: ['esm2015', 'module', 'main'], + extensions: ['.ts', '.js', '.json'], + plugins: [new TsconfigPathsPlugin({ + configFile: './tsconfig.json', + extensions: ['.ts', '.js'], + mainFields: ['esm2015', 'module', 'main'] + })] + }, + + module: { + rules: [ + { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, + { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, + { test: /\.xml$/, use: ['xml-loader'] }, + { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, + { + test: /worker\.(ts|js)$/, + use: [ + { loader: 'worker-loader' }, + { + loader: 'babel-loader', options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", + "@babel/plugin-transform-runtime" + ] + } + } + ] + }, + { + test: /\.(ts|js)$/, loader: 'babel-loader', + options: { + "compact": isProd ? true : false, + "presets": presets, + "plugins": [ + "@babel/plugin-transform-class-static-block", + "@babel/plugin-transform-class-properties", + "@babel/plugin-transform-runtime" + ] + }, + exclude: + function (modulePath) { + return /node_modules/.test(modulePath) && + !/igniteui-webcomponents/.test(modulePath) && + !/lit-html/.test(modulePath); + } + }], + }, + + plugins: [ + new webpack.DefinePlugin({ + 'process.env.NODE_ENV': JSON.stringify(nodeEnv) + }), + new HtmlWebpackPlugin({ + title: 'for-cs', + template: 'index.html' + }), + new ForkTsCheckerWebpackPlugin() + ] + }; +}; From 848fd6589ac2c83b8073069530c92c1191905a6e Mon Sep 17 00:00:00 2001 From: Stamen Stoychev Date: Tue, 4 Mar 2025 13:59:34 +0200 Subject: [PATCH 61/63] =?UTF-8?q?Revert=20"Merge=20pull=20request=20#940?= =?UTF-8?q?=20from=20IgniteUI/apetrov/add-tile-manager-sample=E2=80=A6"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 58a6ba3618ebe940b26f1ad6aa61dae406f1bb2f. --- browser/public/index.html | 12 -- package-lock.json | 26 ++- package.json | 2 +- .../data-chart/selection-matcher/ReadMe.md | 56 ----- .../data-pie-chart/animation-replay/ReadMe.md | 56 ----- .../layouts/tile-manager/actions/.prettierrc | 11 - .../layouts/tile-manager/actions/ReadMe.md | 56 ----- .../layouts/tile-manager/actions/index.html | 56 ----- .../layouts/tile-manager/actions/package.json | 59 ------ .../tile-manager/actions/sandbox.config.json | 7 - .../tile-manager/actions/src/index.css | 2 - .../layouts/tile-manager/actions/src/index.ts | 95 --------- .../tile-manager/actions/src/layout.css | 24 --- .../tile-manager/actions/tsconfig.json | 20 -- .../tile-manager/actions/webpack.config.js | 105 ---------- .../tile-manager/columngap/.prettierrc | 11 - .../layouts/tile-manager/columngap/ReadMe.md | 56 ----- .../layouts/tile-manager/columngap/index.html | 66 ------ .../tile-manager/columngap/package.json | 59 ------ .../columngap/sandbox.config.json | 7 - .../tile-manager/columngap/src/index.css | 2 - .../tile-manager/columngap/src/index.ts | 29 --- .../tile-manager/columngap/src/layout.css | 31 --- .../tile-manager/columngap/tsconfig.json | 20 -- .../tile-manager/columngap/webpack.config.js | 105 ---------- .../tile-manager/dragndrop/.prettierrc | 11 - .../layouts/tile-manager/dragndrop/ReadMe.md | 56 ----- .../layouts/tile-manager/dragndrop/index.html | 52 ----- .../tile-manager/dragndrop/package.json | 59 ------ .../dragndrop/sandbox.config.json | 7 - .../tile-manager/dragndrop/src/index.css | 2 - .../tile-manager/dragndrop/src/index.ts | 21 -- .../tile-manager/dragndrop/src/layout.css | 35 ---- .../tile-manager/dragndrop/tsconfig.json | 20 -- .../tile-manager/dragndrop/webpack.config.js | 105 ---------- .../layouts/tile-manager/layout/.prettierrc | 11 - samples/layouts/tile-manager/layout/ReadMe.md | 56 ----- .../layouts/tile-manager/layout/index.html | 52 ----- .../layouts/tile-manager/layout/package.json | 59 ------ .../tile-manager/layout/sandbox.config.json | 7 - .../layouts/tile-manager/layout/src/index.css | 2 - .../layouts/tile-manager/layout/src/index.ts | 51 ----- .../tile-manager/layout/src/layout.css | 25 --- .../layouts/tile-manager/layout/tsconfig.json | 20 -- .../tile-manager/layout/webpack.config.js | 105 ---------- .../layouts/tile-manager/overview/.prettierrc | 11 - .../layouts/tile-manager/overview/ReadMe.md | 56 ----- .../layouts/tile-manager/overview/index.html | 46 ----- .../tile-manager/overview/package.json | 59 ------ .../tile-manager/overview/sandbox.config.json | 7 - .../tile-manager/overview/src/index.css | 2 - .../tile-manager/overview/src/index.ts | 12 -- .../tile-manager/overview/src/layout.css | 8 - .../tile-manager/overview/tsconfig.json | 20 -- .../tile-manager/overview/webpack.config.js | 105 ---------- .../layouts/tile-manager/resize/.prettierrc | 11 - samples/layouts/tile-manager/resize/ReadMe.md | 56 ----- .../layouts/tile-manager/resize/index.html | 50 ----- .../layouts/tile-manager/resize/package.json | 59 ------ .../tile-manager/resize/sandbox.config.json | 7 - .../layouts/tile-manager/resize/src/index.css | 2 - .../layouts/tile-manager/resize/src/index.ts | 21 -- .../tile-manager/resize/src/layout.css | 21 -- .../layouts/tile-manager/resize/tsconfig.json | 20 -- .../tile-manager/resize/webpack.config.js | 105 ---------- .../layouts/tile-manager/styling/.prettierrc | 11 - .../layouts/tile-manager/styling/ReadMe.md | 56 ----- .../layouts/tile-manager/styling/index.html | 194 ------------------ .../layouts/tile-manager/styling/package.json | 59 ------ .../tile-manager/styling/sandbox.config.json | 7 - .../tile-manager/styling/src/index.css | 2 - .../layouts/tile-manager/styling/src/index.ts | 13 -- .../tile-manager/styling/src/layout.css | 50 ----- .../tile-manager/styling/src/styles.css | 15 -- .../tile-manager/styling/tsconfig.json | 20 -- .../tile-manager/styling/webpack.config.js | 105 ---------- 76 files changed, 13 insertions(+), 2926 deletions(-) delete mode 100644 samples/charts/data-chart/selection-matcher/ReadMe.md delete mode 100644 samples/charts/data-pie-chart/animation-replay/ReadMe.md delete mode 100644 samples/layouts/tile-manager/actions/.prettierrc delete mode 100644 samples/layouts/tile-manager/actions/ReadMe.md delete mode 100644 samples/layouts/tile-manager/actions/index.html delete mode 100644 samples/layouts/tile-manager/actions/package.json delete mode 100644 samples/layouts/tile-manager/actions/sandbox.config.json delete mode 100644 samples/layouts/tile-manager/actions/src/index.css delete mode 100644 samples/layouts/tile-manager/actions/src/index.ts delete mode 100644 samples/layouts/tile-manager/actions/src/layout.css delete mode 100644 samples/layouts/tile-manager/actions/tsconfig.json delete mode 100644 samples/layouts/tile-manager/actions/webpack.config.js delete mode 100644 samples/layouts/tile-manager/columngap/.prettierrc delete mode 100644 samples/layouts/tile-manager/columngap/ReadMe.md delete mode 100644 samples/layouts/tile-manager/columngap/index.html delete mode 100644 samples/layouts/tile-manager/columngap/package.json delete mode 100644 samples/layouts/tile-manager/columngap/sandbox.config.json delete mode 100644 samples/layouts/tile-manager/columngap/src/index.css delete mode 100644 samples/layouts/tile-manager/columngap/src/index.ts delete mode 100644 samples/layouts/tile-manager/columngap/src/layout.css delete mode 100644 samples/layouts/tile-manager/columngap/tsconfig.json delete mode 100644 samples/layouts/tile-manager/columngap/webpack.config.js delete mode 100644 samples/layouts/tile-manager/dragndrop/.prettierrc delete mode 100644 samples/layouts/tile-manager/dragndrop/ReadMe.md delete mode 100644 samples/layouts/tile-manager/dragndrop/index.html delete mode 100644 samples/layouts/tile-manager/dragndrop/package.json delete mode 100644 samples/layouts/tile-manager/dragndrop/sandbox.config.json delete mode 100644 samples/layouts/tile-manager/dragndrop/src/index.css delete mode 100644 samples/layouts/tile-manager/dragndrop/src/index.ts delete mode 100644 samples/layouts/tile-manager/dragndrop/src/layout.css delete mode 100644 samples/layouts/tile-manager/dragndrop/tsconfig.json delete mode 100644 samples/layouts/tile-manager/dragndrop/webpack.config.js delete mode 100644 samples/layouts/tile-manager/layout/.prettierrc delete mode 100644 samples/layouts/tile-manager/layout/ReadMe.md delete mode 100644 samples/layouts/tile-manager/layout/index.html delete mode 100644 samples/layouts/tile-manager/layout/package.json delete mode 100644 samples/layouts/tile-manager/layout/sandbox.config.json delete mode 100644 samples/layouts/tile-manager/layout/src/index.css delete mode 100644 samples/layouts/tile-manager/layout/src/index.ts delete mode 100644 samples/layouts/tile-manager/layout/src/layout.css delete mode 100644 samples/layouts/tile-manager/layout/tsconfig.json delete mode 100644 samples/layouts/tile-manager/layout/webpack.config.js delete mode 100644 samples/layouts/tile-manager/overview/.prettierrc delete mode 100644 samples/layouts/tile-manager/overview/ReadMe.md delete mode 100644 samples/layouts/tile-manager/overview/index.html delete mode 100644 samples/layouts/tile-manager/overview/package.json delete mode 100644 samples/layouts/tile-manager/overview/sandbox.config.json delete mode 100644 samples/layouts/tile-manager/overview/src/index.css delete mode 100644 samples/layouts/tile-manager/overview/src/index.ts delete mode 100644 samples/layouts/tile-manager/overview/src/layout.css delete mode 100644 samples/layouts/tile-manager/overview/tsconfig.json delete mode 100644 samples/layouts/tile-manager/overview/webpack.config.js delete mode 100644 samples/layouts/tile-manager/resize/.prettierrc delete mode 100644 samples/layouts/tile-manager/resize/ReadMe.md delete mode 100644 samples/layouts/tile-manager/resize/index.html delete mode 100644 samples/layouts/tile-manager/resize/package.json delete mode 100644 samples/layouts/tile-manager/resize/sandbox.config.json delete mode 100644 samples/layouts/tile-manager/resize/src/index.css delete mode 100644 samples/layouts/tile-manager/resize/src/index.ts delete mode 100644 samples/layouts/tile-manager/resize/src/layout.css delete mode 100644 samples/layouts/tile-manager/resize/tsconfig.json delete mode 100644 samples/layouts/tile-manager/resize/webpack.config.js delete mode 100644 samples/layouts/tile-manager/styling/.prettierrc delete mode 100644 samples/layouts/tile-manager/styling/ReadMe.md delete mode 100644 samples/layouts/tile-manager/styling/index.html delete mode 100644 samples/layouts/tile-manager/styling/package.json delete mode 100644 samples/layouts/tile-manager/styling/sandbox.config.json delete mode 100644 samples/layouts/tile-manager/styling/src/index.css delete mode 100644 samples/layouts/tile-manager/styling/src/index.ts delete mode 100644 samples/layouts/tile-manager/styling/src/layout.css delete mode 100644 samples/layouts/tile-manager/styling/src/styles.css delete mode 100644 samples/layouts/tile-manager/styling/tsconfig.json delete mode 100644 samples/layouts/tile-manager/styling/webpack.config.js diff --git a/browser/public/index.html b/browser/public/index.html index 2d82af848a..4f23a6bbdd 100644 --- a/browser/public/index.html +++ b/browser/public/index.html @@ -200,7 +200,6 @@ Scatter Polyline Series Scatter Series Scatter Spline Chart - Selection Matcher Series Animations Series Annotations Series Error Bars @@ -231,7 +230,6 @@ - - diff --git a/package-lock.json b/package-lock.json index 1b01d18c68..e54153a228 100644 --- a/package-lock.json +++ b/package-lock.json @@ -21,7 +21,7 @@ "core-js": "^3.6.5", "file-saver": "^2.0.2", "igniteui-dockmanager": "1.16.0", - "igniteui-webcomponents": "5.3.0-beta.2", + "igniteui-webcomponents": "5.2.1", "igniteui-webcomponents-charts": "5.2.1-beta.0", "igniteui-webcomponents-core": "5.2.1-beta.0", "igniteui-webcomponents-dashboards": "5.2.1-beta.0", @@ -1995,20 +1995,18 @@ "integrity": "sha512-wx4aBmgeGvFmOKucFKY+8VFJSYZxs9poN3SDNQFF6lT6NrQUnHiPB2PWz2sc4ieEcAaYYzN+1uWahEeTq2aRIQ==" }, "node_modules/@lit-labs/virtualizer": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@lit-labs/virtualizer/-/virtualizer-2.1.0.tgz", - "integrity": "sha512-I79sNaalK9rD6FWO/AoxBMnA6jjNBrQu7F6lzz8W/GkQLcqveMWK3IrJAilso+XeFFn7BvlxBv6FqZaoMt+Qkg==", - "license": "BSD-3-Clause", + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/@lit-labs/virtualizer/-/virtualizer-2.0.12.tgz", + "integrity": "sha512-sL7AXhacSdzOJLEQFcPCrV7tu2rZQ10upeGMAxKmTT0Ae4kBFV8nwlFiUEQPBt1idUsAkiDG1yN91IgUWQXVNQ==", "dependencies": { - "lit": "^3.2.0", + "lit": "^3.1.0", "tslib": "^2.0.3" } }, "node_modules/@lit-labs/virtualizer/node_modules/tslib": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", - "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", - "license": "0BSD" + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" }, "node_modules/@lit/context": { "version": "1.1.3", @@ -8727,13 +8725,13 @@ "integrity": "sha512-q6thtu+7R6MOB+i9GorFPCcWeOImW43BzCAtKnDAYWwaoueb8Lg1EhBkIhAyfEIH+yZ/9c5lnZdU61/GRPoP+g==" }, "node_modules/igniteui-webcomponents": { - "version": "5.3.0-beta.2", - "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-5.3.0-beta.2.tgz", - "integrity": "sha512-3Az5lo30Wd1441xy76sLJsf3uU7N/ypOHC5FRz0XdMe1GtIzHOUpycroD0MoG+gT2fjUmUypbLdraDOnDDrszQ==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-5.2.1.tgz", + "integrity": "sha512-0SJ1Xr9VhYbPGPStw4qLelB+umFqWAboEurQ/4yN1iq4rIqP3w3QaU13hcDm/kLrTL4M9UH++XTisUeII3Bppg==", "license": "SEE LICENSE IN LICENSE", "dependencies": { "@floating-ui/dom": "^1.6.0", - "@lit-labs/virtualizer": "^2.1.0", + "@lit-labs/virtualizer": "^2.0.10", "@lit/context": "^1.1.0", "lit": "^3.2.0" }, diff --git a/package.json b/package.json index ecfe7e40d2..84bee7a1df 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "core-js": "^3.6.5", "file-saver": "^2.0.2", "igniteui-dockmanager": "1.16.0", - "igniteui-webcomponents": "5.3.0-beta.2", + "igniteui-webcomponents": "5.2.1", "igniteui-webcomponents-charts": "5.2.1-beta.0", "igniteui-webcomponents-core": "5.2.1-beta.0", "igniteui-webcomponents-dashboards": "5.2.1-beta.0", diff --git a/samples/charts/data-chart/selection-matcher/ReadMe.md b/samples/charts/data-chart/selection-matcher/ReadMe.md deleted file mode 100644 index 08c4ba9a40..0000000000 --- a/samples/charts/data-chart/selection-matcher/ReadMe.md +++ /dev/null @@ -1,56 +0,0 @@ - - - -This folder contains implementation of Web Components application with example of Selection Matcher feature using [Data Chart](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. - - - - - - View Docs - - - View Code - - - Run Sample - - - Run Sample - - - - -## Branches - -> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. - -## Instructions - -To set up this project locally, execute these commands: - -``` -git clone https://github.com/IgniteUI/igniteui-wc-examples.git -git checkout master -cd ./igniteui-wc-examples -cd ./samples/charts/data-chart/selection-matcher -``` - -open above folder in VS Code or type: -``` -code . -``` - -In terminal window, run: - -``` -npm install -npm run start -``` - -Then open http://localhost:4200/ in your browser - - -## Learn More - -To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/charts/data-pie-chart/animation-replay/ReadMe.md b/samples/charts/data-pie-chart/animation-replay/ReadMe.md deleted file mode 100644 index b17c1f5484..0000000000 --- a/samples/charts/data-pie-chart/animation-replay/ReadMe.md +++ /dev/null @@ -1,56 +0,0 @@ - - - -This folder contains implementation of Web Components application with example of Animation Replay feature using [Data Pie Chart](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. - - - - - - View Docs - - - View Code - - - Run Sample - - - Run Sample - - - - -## Branches - -> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. - -## Instructions - -To set up this project locally, execute these commands: - -``` -git clone https://github.com/IgniteUI/igniteui-wc-examples.git -git checkout master -cd ./igniteui-wc-examples -cd ./samples/charts/data-pie-chart/animation-replay -``` - -open above folder in VS Code or type: -``` -code . -``` - -In terminal window, run: - -``` -npm install -npm run start -``` - -Then open http://localhost:4200/ in your browser - - -## Learn More - -To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/actions/.prettierrc b/samples/layouts/tile-manager/actions/.prettierrc deleted file mode 100644 index 15a7c7c6cf..0000000000 --- a/samples/layouts/tile-manager/actions/.prettierrc +++ /dev/null @@ -1,11 +0,0 @@ -{ - "printWidth": 250, - "tabWidth": 4, - "useTabs": false, - "semi": true, - "singleQuote": false, - "trailingComma": "none", - "bracketSpacing": true, - "jsxBracketSameLine": false, - "fluid": false -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/actions/ReadMe.md b/samples/layouts/tile-manager/actions/ReadMe.md deleted file mode 100644 index ba48172e53..0000000000 --- a/samples/layouts/tile-manager/actions/ReadMe.md +++ /dev/null @@ -1,56 +0,0 @@ - - - -This folder contains implementation of Web Components application with example of Actions feature using [Tile Manager](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. - - - - - - View Docs - - - View Code - - - Run Sample - - - Run Sample - - - - -## Branches - -> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. - -## Instructions - -To set up this project locally, execute these commands: - -``` -git clone https://github.com/IgniteUI/igniteui-wc-examples.git -git checkout master -cd ./igniteui-wc-examples -cd ./samples/layouts/tile-manager/actions -``` - -open above folder in VS Code or type: -``` -code . -``` - -In terminal window, run: - -``` -npm install -npm run start -``` - -Then open http://localhost:4200/ in your browser - - -## Learn More - -To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/actions/index.html b/samples/layouts/tile-manager/actions/index.html deleted file mode 100644 index c6770f2477..0000000000 --- a/samples/layouts/tile-manager/actions/index.html +++ /dev/null @@ -1,56 +0,0 @@ - - - - - Tile Manager Actions - - - - - - - - - - -
-
- - -

Default Actions

-

This tile has default actions and title.

-
- -

No Fullscreen Action

-

Fullscreen is disabled via property.

-
- -

Custom Actions

- -

Replace the default actions with custom ones, and include extra actions when the tile is maximized.

-
- - -

Display only custom actions in the header.

-
- -

Only title

-

Display only title in the header.

-
- -

Content only.

-
-
-
-
- - - <% if (false) { %> - - <% } %> - - - - \ No newline at end of file diff --git a/samples/layouts/tile-manager/actions/package.json b/samples/layouts/tile-manager/actions/package.json deleted file mode 100644 index 25b28a29f5..0000000000 --- a/samples/layouts/tile-manager/actions/package.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "name": "wc-avatar-icon", - "version": "1.0.0", - "description": "This project provides example of Avatar Icon using IgniteUI for Web Components", - "main": "src/index.ts", - "scripts": { - "build": "npm run build:prod", - "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start": "npm run serve:dev", - "build:legacy": "npm run build:prod:legacy", - "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start:legacy": "npm run serve:dev:legacy" - }, - "author": "Infragistics", - "dependencies": { - "@webcomponents/custom-elements": "^1.4.1", - "@webcomponents/template": "^1.4.2", - "babel-runtime": "^6.26.0", - "core-js": "^3.6.5", - "igniteui-webcomponents": "5.3.0-beta.2", - "lit": "^3.2.0", - "lit-html": "^3.2.0", - "tslib": "^2.0.0" - }, - "devDependencies": { - "@babel/cli": "^7.8.3", - "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.10.0", - "@babel/preset-env": "^7.8.3", - "@babel/preset-typescript": "^7.8.3", - "@types/source-map": "^0.5.7", - "babel-loader": "^8.1.0", - "babel-plugin-transform-custom-element-classes": "^0.1.0", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "fork-ts-checker-webpack-plugin": "^4.1.5", - "html-webpack-plugin": "^4.3.0", - "parcel-bundler": "^1.6.1", - "source-map": "^0.7.3", - "style-loader": "^0.22.1", - "tsconfig-paths-webpack-plugin": "^4.0.0", - "typescript": "^4.4.4", - "webpack": "^5.96.1", - "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.11.1", - "worker-loader": "^3.0.8", - "xml-loader": "^1.2.1" - }, - "license": "", - "homepage": "." -} diff --git a/samples/layouts/tile-manager/actions/sandbox.config.json b/samples/layouts/tile-manager/actions/sandbox.config.json deleted file mode 100644 index 5c5b54fe21..0000000000 --- a/samples/layouts/tile-manager/actions/sandbox.config.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser", - "template": "parcel" -} - \ No newline at end of file diff --git a/samples/layouts/tile-manager/actions/src/index.css b/samples/layouts/tile-manager/actions/src/index.css deleted file mode 100644 index 0fe9368715..0000000000 --- a/samples/layouts/tile-manager/actions/src/index.css +++ /dev/null @@ -1,2 +0,0 @@ -/* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tile-manager/actions/src/index.ts b/samples/layouts/tile-manager/actions/src/index.ts deleted file mode 100644 index 4e77a222d4..0000000000 --- a/samples/layouts/tile-manager/actions/src/index.ts +++ /dev/null @@ -1,95 +0,0 @@ -import { defineComponents, IgcTileManagerComponent, IgcIconButtonComponent, IgcIconComponent, IgcButtonComponent, registerIconFromText } from 'igniteui-webcomponents'; -import 'igniteui-webcomponents/themes/light/bootstrap.css'; -import './layout.css' - -defineComponents(IgcTileManagerComponent, IgcIconButtonComponent, IgcIconComponent, IgcButtonComponent); - -export class TileManagerActions { - - constructor() { - const northEast = - ''; - registerIconFromText('north_east', northEast, 'material'); - const southWest = - ''; - registerIconFromText('south_west', southWest, 'material'); - const more = - ''; - registerIconFromText('more', more, 'material'); - const chart = - ''; - registerIconFromText('chart', chart, 'material'); - - document.querySelector('#customOne')?.addEventListener('click', (event: Event) => { - - const tile = (event.target as HTMLElement).closest('igc-tile'); - - if (tile) { - tile.maximized = !tile.maximized; - - const actionsSlot = tile.querySelector('[slot="actions"]') as HTMLElement; - const currentBtn = event.target as HTMLElement; - - if (currentBtn) { - if (tile.maximized) { - currentBtn.setAttribute('name', 'south_west'); - currentBtn.setAttribute('aria-label', 'collapse'); - - const chartBtn = document.createElement('igc-icon-button'); - chartBtn.classList.add('additional-action'); - chartBtn.setAttribute('slot', 'actions'); - chartBtn.setAttribute('variant', 'flat'); - chartBtn.setAttribute('collection', 'material'); - chartBtn.setAttribute('name', 'chart'); - chartBtn.setAttribute('aria-label', 'chart'); - - const moreBtn = document.createElement('igc-icon-button'); - moreBtn.classList.add('additional-action'); - moreBtn.setAttribute('slot', 'actions'); - moreBtn.setAttribute('variant', 'flat'); - moreBtn.setAttribute('collection', 'material'); - moreBtn.setAttribute('name', 'more'); - moreBtn.setAttribute('aria-label', 'more'); - - tile.append(chartBtn); - tile.append(moreBtn); - } else { - currentBtn.setAttribute('name', 'north_east'); - currentBtn.setAttribute('aria-label', 'expand'); - - const additionalButtons = - actionsSlot.parentElement?.querySelectorAll('.additional-action'); - additionalButtons?.forEach((btn) => btn.remove()); - } - } - } - }) - - - - document.querySelector('#customTwo')?.addEventListener('click', (event: Event) => { - const tile = (event.target as HTMLElement).closest('igc-tile'); - - if (tile) { - tile.maximized = !tile.maximized; - - const currentBtn = event.target as HTMLElement; - - if (currentBtn) { - if (tile.maximized) { - currentBtn.setAttribute('name', 'south_west'); - currentBtn.setAttribute('aria-label', 'collapse'); - } - else { - currentBtn.setAttribute('name', 'north_east'); - currentBtn.setAttribute('aria-label', 'expand'); - } - } - } - }) - - - } -} - -new TileManagerActions(); diff --git a/samples/layouts/tile-manager/actions/src/layout.css b/samples/layouts/tile-manager/actions/src/layout.css deleted file mode 100644 index 1389f41697..0000000000 --- a/samples/layouts/tile-manager/actions/src/layout.css +++ /dev/null @@ -1,24 +0,0 @@ -igc-tile-manager { - max-width: 1000px; - margin-bottom: 20px; -} - -igc-tile:nth-child(n + 3):nth-child(-n + 4)::part(actions) { - padding: 13px 16px; -} - -igc-tile:nth-child(n+3)::part(header) { - padding: 0px; -} - -igc-tile:nth-child(5)::part(header) { - padding: 18px 0 18px 0; -} - -p, igc-tile:nth-child(3) h3, igc-tile:nth-child(5) h3 { - margin-left: 20px; -} - -igc-tile:nth-last-child(1) p { - margin-top: 30px; -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/actions/tsconfig.json b/samples/layouts/tile-manager/actions/tsconfig.json deleted file mode 100644 index de23257dd8..0000000000 --- a/samples/layouts/tile-manager/actions/tsconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true - }, - "include": [ - "src/**/*" - ], - "exclude": [ - "node_modules", - "dist" - ] -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/actions/webpack.config.js b/samples/layouts/tile-manager/actions/webpack.config.js deleted file mode 100644 index 9d11a6155c..0000000000 --- a/samples/layouts/tile-manager/actions/webpack.config.js +++ /dev/null @@ -1,105 +0,0 @@ -const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); -const HtmlWebpackPlugin = require('html-webpack-plugin'); -const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); -const path = require('path'); -const webpack = require('webpack'); - -module.exports = env => { - const nodeEnv = process.env.NODE_ENV || 'development'; - const isProd = nodeEnv === 'production'; - const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); - console.log(">> webpack nodeEnv=" + nodeEnv); - console.log(">> webpack isProd=" + isProd); - console.log(">> webpack isLegacy=" + isLegacy); - const presets = [ - ["@babel/preset-env", { - "useBuiltIns": "usage", - "corejs": 3, - "targets": { - "browsers": isLegacy ? ["defaults"] : [ - "last 2 Chrome versions", - "last 2 Safari versions", - "last 2 iOS versions", - "last 2 Firefox versions", - "last 2 Edge versions"] - } - }], - "@babel/preset-typescript" - ]; - - return { - entry: isLegacy ? [ - path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), - path.resolve(__dirname, 'node_modules/@webcomponents/template'), - path.resolve(__dirname, 'src') - ] : path.resolve(__dirname, 'src'), - devtool: isProd ? false : 'source-map', - output: { - filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', - globalObject: 'this', - path: path.resolve(__dirname, 'dist'), - }, - - resolve: { - mainFields: ['esm2015', 'module', 'main'], - extensions: ['.ts', '.js', '.json'], - plugins: [new TsconfigPathsPlugin({ - configFile: './tsconfig.json', - extensions: ['.ts', '.js'], - mainFields: ['esm2015', 'module', 'main'] - })] - }, - - module: { - rules: [ - { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, - { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, - { test: /\.xml$/, use: ['xml-loader'] }, - { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, - { - test: /worker\.(ts|js)$/, - use: [ - { loader: 'worker-loader' }, - { - loader: 'babel-loader', options: { - "compact": isProd ? true : false, - "presets": presets, - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-runtime" - ] - } - } - ] - }, - { - test: /\.(ts|js)$/, loader: 'babel-loader', - options: { - "compact": isProd ? true : false, - "presets": presets, - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-runtime" - ] - }, - exclude: - function (modulePath) { - return /node_modules/.test(modulePath) && - !/igniteui-webcomponents/.test(modulePath) && - !/lit-html/.test(modulePath); - } - }], - }, - - plugins: [ - new webpack.DefinePlugin({ - 'process.env.NODE_ENV': JSON.stringify(nodeEnv) - }), - new HtmlWebpackPlugin({ - title: 'for-cs', - template: 'index.html' - }), - new ForkTsCheckerWebpackPlugin() - ] - }; -}; diff --git a/samples/layouts/tile-manager/columngap/.prettierrc b/samples/layouts/tile-manager/columngap/.prettierrc deleted file mode 100644 index 15a7c7c6cf..0000000000 --- a/samples/layouts/tile-manager/columngap/.prettierrc +++ /dev/null @@ -1,11 +0,0 @@ -{ - "printWidth": 250, - "tabWidth": 4, - "useTabs": false, - "semi": true, - "singleQuote": false, - "trailingComma": "none", - "bracketSpacing": true, - "jsxBracketSameLine": false, - "fluid": false -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/columngap/ReadMe.md b/samples/layouts/tile-manager/columngap/ReadMe.md deleted file mode 100644 index 4cd52c5443..0000000000 --- a/samples/layouts/tile-manager/columngap/ReadMe.md +++ /dev/null @@ -1,56 +0,0 @@ - - - -This folder contains implementation of Web Components application with example of Columngap feature using [Tile Manager](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. - - - - - - View Docs - - - View Code - - - Run Sample - - - Run Sample - - - - -## Branches - -> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. - -## Instructions - -To set up this project locally, execute these commands: - -``` -git clone https://github.com/IgniteUI/igniteui-wc-examples.git -git checkout master -cd ./igniteui-wc-examples -cd ./samples/layouts/tile-manager/columngap -``` - -open above folder in VS Code or type: -``` -code . -``` - -In terminal window, run: - -``` -npm install -npm run start -``` - -Then open http://localhost:4200/ in your browser - - -## Learn More - -To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/columngap/index.html b/samples/layouts/tile-manager/columngap/index.html deleted file mode 100644 index 77333b090b..0000000000 --- a/samples/layouts/tile-manager/columngap/index.html +++ /dev/null @@ -1,66 +0,0 @@ - - - - - Tile Manager Columns - - - - - - - - - - -
-
-
- - - - -
- - -
- picture -
-
- -
- picture -
-
- -
- picture -
-
- -
- picture -
-
- -
- picture -
-
- -
- picture -
-
-
-
-
- - - <% if (false) { %> - - <% } %> - - - - \ No newline at end of file diff --git a/samples/layouts/tile-manager/columngap/package.json b/samples/layouts/tile-manager/columngap/package.json deleted file mode 100644 index 25b28a29f5..0000000000 --- a/samples/layouts/tile-manager/columngap/package.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "name": "wc-avatar-icon", - "version": "1.0.0", - "description": "This project provides example of Avatar Icon using IgniteUI for Web Components", - "main": "src/index.ts", - "scripts": { - "build": "npm run build:prod", - "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start": "npm run serve:dev", - "build:legacy": "npm run build:prod:legacy", - "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start:legacy": "npm run serve:dev:legacy" - }, - "author": "Infragistics", - "dependencies": { - "@webcomponents/custom-elements": "^1.4.1", - "@webcomponents/template": "^1.4.2", - "babel-runtime": "^6.26.0", - "core-js": "^3.6.5", - "igniteui-webcomponents": "5.3.0-beta.2", - "lit": "^3.2.0", - "lit-html": "^3.2.0", - "tslib": "^2.0.0" - }, - "devDependencies": { - "@babel/cli": "^7.8.3", - "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.10.0", - "@babel/preset-env": "^7.8.3", - "@babel/preset-typescript": "^7.8.3", - "@types/source-map": "^0.5.7", - "babel-loader": "^8.1.0", - "babel-plugin-transform-custom-element-classes": "^0.1.0", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "fork-ts-checker-webpack-plugin": "^4.1.5", - "html-webpack-plugin": "^4.3.0", - "parcel-bundler": "^1.6.1", - "source-map": "^0.7.3", - "style-loader": "^0.22.1", - "tsconfig-paths-webpack-plugin": "^4.0.0", - "typescript": "^4.4.4", - "webpack": "^5.96.1", - "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.11.1", - "worker-loader": "^3.0.8", - "xml-loader": "^1.2.1" - }, - "license": "", - "homepage": "." -} diff --git a/samples/layouts/tile-manager/columngap/sandbox.config.json b/samples/layouts/tile-manager/columngap/sandbox.config.json deleted file mode 100644 index 5c5b54fe21..0000000000 --- a/samples/layouts/tile-manager/columngap/sandbox.config.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser", - "template": "parcel" -} - \ No newline at end of file diff --git a/samples/layouts/tile-manager/columngap/src/index.css b/samples/layouts/tile-manager/columngap/src/index.css deleted file mode 100644 index 0fe9368715..0000000000 --- a/samples/layouts/tile-manager/columngap/src/index.css +++ /dev/null @@ -1,2 +0,0 @@ -/* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tile-manager/columngap/src/index.ts b/samples/layouts/tile-manager/columngap/src/index.ts deleted file mode 100644 index f3389f1232..0000000000 --- a/samples/layouts/tile-manager/columngap/src/index.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { defineComponents, IgcTileManagerComponent, IgcInputComponent } from 'igniteui-webcomponents'; -import 'igniteui-webcomponents/themes/light/bootstrap.css'; -import './layout.css' - -defineComponents(IgcTileManagerComponent, IgcInputComponent); - -export class TileManagerColumn { - - constructor() { - const tileManager = document.querySelector("igc-tile-manager"); - document.addEventListener('igcChange', (e) => { - const fieldInput = e.target as IgcInputComponent; - if (tileManager) { - switch (fieldInput.label) { - case 'Columns Number': tileManager.columnCount = parseInt(fieldInput.value); - break; - case 'Gap Size': tileManager.gap = fieldInput.value; - break; - case 'Minimum Column Width': tileManager.minColumnWidth = fieldInput.value;; - break; - case 'Minimum Row Height': tileManager.minRowHeight = fieldInput.value;; - break; - } - } - }) - } -} - -new TileManagerColumn(); diff --git a/samples/layouts/tile-manager/columngap/src/layout.css b/samples/layouts/tile-manager/columngap/src/layout.css deleted file mode 100644 index 2d4a65d915..0000000000 --- a/samples/layouts/tile-manager/columngap/src/layout.css +++ /dev/null @@ -1,31 +0,0 @@ -p { - font-size: 25px; - padding: 10px; -} - -igc-tile-manager { - max-width: 1000px; - margin-bottom: 20px; -} - -igc-input { - width: min-content; - --ig-size: var(--ig-size-small); - margin-right: 50px; -} - -img { - height: 100%; - width: 100%; -} - -.inputWrapper{ - width: 1000px; - display: flex; - justify-content: center; - margin-bottom: 20px; -} - -.sample { - overflow: auto; -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/columngap/tsconfig.json b/samples/layouts/tile-manager/columngap/tsconfig.json deleted file mode 100644 index de23257dd8..0000000000 --- a/samples/layouts/tile-manager/columngap/tsconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true - }, - "include": [ - "src/**/*" - ], - "exclude": [ - "node_modules", - "dist" - ] -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/columngap/webpack.config.js b/samples/layouts/tile-manager/columngap/webpack.config.js deleted file mode 100644 index 9d11a6155c..0000000000 --- a/samples/layouts/tile-manager/columngap/webpack.config.js +++ /dev/null @@ -1,105 +0,0 @@ -const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); -const HtmlWebpackPlugin = require('html-webpack-plugin'); -const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); -const path = require('path'); -const webpack = require('webpack'); - -module.exports = env => { - const nodeEnv = process.env.NODE_ENV || 'development'; - const isProd = nodeEnv === 'production'; - const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); - console.log(">> webpack nodeEnv=" + nodeEnv); - console.log(">> webpack isProd=" + isProd); - console.log(">> webpack isLegacy=" + isLegacy); - const presets = [ - ["@babel/preset-env", { - "useBuiltIns": "usage", - "corejs": 3, - "targets": { - "browsers": isLegacy ? ["defaults"] : [ - "last 2 Chrome versions", - "last 2 Safari versions", - "last 2 iOS versions", - "last 2 Firefox versions", - "last 2 Edge versions"] - } - }], - "@babel/preset-typescript" - ]; - - return { - entry: isLegacy ? [ - path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), - path.resolve(__dirname, 'node_modules/@webcomponents/template'), - path.resolve(__dirname, 'src') - ] : path.resolve(__dirname, 'src'), - devtool: isProd ? false : 'source-map', - output: { - filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', - globalObject: 'this', - path: path.resolve(__dirname, 'dist'), - }, - - resolve: { - mainFields: ['esm2015', 'module', 'main'], - extensions: ['.ts', '.js', '.json'], - plugins: [new TsconfigPathsPlugin({ - configFile: './tsconfig.json', - extensions: ['.ts', '.js'], - mainFields: ['esm2015', 'module', 'main'] - })] - }, - - module: { - rules: [ - { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, - { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, - { test: /\.xml$/, use: ['xml-loader'] }, - { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, - { - test: /worker\.(ts|js)$/, - use: [ - { loader: 'worker-loader' }, - { - loader: 'babel-loader', options: { - "compact": isProd ? true : false, - "presets": presets, - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-runtime" - ] - } - } - ] - }, - { - test: /\.(ts|js)$/, loader: 'babel-loader', - options: { - "compact": isProd ? true : false, - "presets": presets, - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-runtime" - ] - }, - exclude: - function (modulePath) { - return /node_modules/.test(modulePath) && - !/igniteui-webcomponents/.test(modulePath) && - !/lit-html/.test(modulePath); - } - }], - }, - - plugins: [ - new webpack.DefinePlugin({ - 'process.env.NODE_ENV': JSON.stringify(nodeEnv) - }), - new HtmlWebpackPlugin({ - title: 'for-cs', - template: 'index.html' - }), - new ForkTsCheckerWebpackPlugin() - ] - }; -}; diff --git a/samples/layouts/tile-manager/dragndrop/.prettierrc b/samples/layouts/tile-manager/dragndrop/.prettierrc deleted file mode 100644 index 15a7c7c6cf..0000000000 --- a/samples/layouts/tile-manager/dragndrop/.prettierrc +++ /dev/null @@ -1,11 +0,0 @@ -{ - "printWidth": 250, - "tabWidth": 4, - "useTabs": false, - "semi": true, - "singleQuote": false, - "trailingComma": "none", - "bracketSpacing": true, - "jsxBracketSameLine": false, - "fluid": false -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/dragndrop/ReadMe.md b/samples/layouts/tile-manager/dragndrop/ReadMe.md deleted file mode 100644 index eab96335a1..0000000000 --- a/samples/layouts/tile-manager/dragndrop/ReadMe.md +++ /dev/null @@ -1,56 +0,0 @@ - - - -This folder contains implementation of Web Components application with example of Dragndrop feature using [Tile Manager](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. - - - - - - View Docs - - - View Code - - - Run Sample - - - Run Sample - - - - -## Branches - -> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. - -## Instructions - -To set up this project locally, execute these commands: - -``` -git clone https://github.com/IgniteUI/igniteui-wc-examples.git -git checkout master -cd ./igniteui-wc-examples -cd ./samples/layouts/tile-manager/dragndrop -``` - -open above folder in VS Code or type: -``` -code . -``` - -In terminal window, run: - -``` -npm install -npm run start -``` - -Then open http://localhost:4200/ in your browser - - -## Learn More - -To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/dragndrop/index.html b/samples/layouts/tile-manager/dragndrop/index.html deleted file mode 100644 index 6529ba332d..0000000000 --- a/samples/layouts/tile-manager/dragndrop/index.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - Tile Manager Drag and drop - - - - - - - - - - -
-
-
- - Tile-header - Tile - -
- - - Tile 1 header -

Content for Tile 1

-
- - Tile 2 header -

Content for Tile 2

-
- - Tile 3 header -

Content for Tile 3

-
- - Tile 4 header -

Content for Tile 4

-
-
-
-
- - - <% if (false) { %> - - <% } %> - - - - \ No newline at end of file diff --git a/samples/layouts/tile-manager/dragndrop/package.json b/samples/layouts/tile-manager/dragndrop/package.json deleted file mode 100644 index 25b28a29f5..0000000000 --- a/samples/layouts/tile-manager/dragndrop/package.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "name": "wc-avatar-icon", - "version": "1.0.0", - "description": "This project provides example of Avatar Icon using IgniteUI for Web Components", - "main": "src/index.ts", - "scripts": { - "build": "npm run build:prod", - "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start": "npm run serve:dev", - "build:legacy": "npm run build:prod:legacy", - "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start:legacy": "npm run serve:dev:legacy" - }, - "author": "Infragistics", - "dependencies": { - "@webcomponents/custom-elements": "^1.4.1", - "@webcomponents/template": "^1.4.2", - "babel-runtime": "^6.26.0", - "core-js": "^3.6.5", - "igniteui-webcomponents": "5.3.0-beta.2", - "lit": "^3.2.0", - "lit-html": "^3.2.0", - "tslib": "^2.0.0" - }, - "devDependencies": { - "@babel/cli": "^7.8.3", - "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.10.0", - "@babel/preset-env": "^7.8.3", - "@babel/preset-typescript": "^7.8.3", - "@types/source-map": "^0.5.7", - "babel-loader": "^8.1.0", - "babel-plugin-transform-custom-element-classes": "^0.1.0", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "fork-ts-checker-webpack-plugin": "^4.1.5", - "html-webpack-plugin": "^4.3.0", - "parcel-bundler": "^1.6.1", - "source-map": "^0.7.3", - "style-loader": "^0.22.1", - "tsconfig-paths-webpack-plugin": "^4.0.0", - "typescript": "^4.4.4", - "webpack": "^5.96.1", - "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.11.1", - "worker-loader": "^3.0.8", - "xml-loader": "^1.2.1" - }, - "license": "", - "homepage": "." -} diff --git a/samples/layouts/tile-manager/dragndrop/sandbox.config.json b/samples/layouts/tile-manager/dragndrop/sandbox.config.json deleted file mode 100644 index 5c5b54fe21..0000000000 --- a/samples/layouts/tile-manager/dragndrop/sandbox.config.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser", - "template": "parcel" -} - \ No newline at end of file diff --git a/samples/layouts/tile-manager/dragndrop/src/index.css b/samples/layouts/tile-manager/dragndrop/src/index.css deleted file mode 100644 index 0fe9368715..0000000000 --- a/samples/layouts/tile-manager/dragndrop/src/index.css +++ /dev/null @@ -1,2 +0,0 @@ -/* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tile-manager/dragndrop/src/index.ts b/samples/layouts/tile-manager/dragndrop/src/index.ts deleted file mode 100644 index a8621b4857..0000000000 --- a/samples/layouts/tile-manager/dragndrop/src/index.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { defineComponents, IgcTileManagerComponent, IgcRadioGroupComponent, IgcRadioComponent } from 'igniteui-webcomponents'; -import 'igniteui-webcomponents/themes/light/bootstrap.css'; -import './layout.css' - -defineComponents(IgcTileManagerComponent, IgcRadioGroupComponent, IgcRadioComponent); - -export class TileManagerDragnDrop { - constructor() { - document.addEventListener('igcChange', (e) => { - const radio = e.target as IgcRadioComponent; - switch (radio.value) { - case 'TileHeader': document.querySelector("igc-tile-manager")?.setAttribute("drag-mode", "tile-header"); - break; - case 'Tile': document.querySelector("igc-tile-manager")?.setAttribute("drag-mode", "tile"); - break; - } - }) - } -} - -new TileManagerDragnDrop(); diff --git a/samples/layouts/tile-manager/dragndrop/src/layout.css b/samples/layouts/tile-manager/dragndrop/src/layout.css deleted file mode 100644 index e64c1b900e..0000000000 --- a/samples/layouts/tile-manager/dragndrop/src/layout.css +++ /dev/null @@ -1,35 +0,0 @@ - span{ - font-size: 30px; -} - -igc-tile::part(header) { - border-bottom: 2px solid var(--ig-primary-700); -} - -p { - font-size: 25px; - margin-left: 20px; - padding-top: 10px; -} - -igc-radio-group { - margin-left: 20px; - width: fit-content; - padding: 4px 15px; - margin-bottom: 10px; - border: 2px solid var(--ig-primary-700); - background-color: var(--ig-gray-300); -} - -igc-tile-manager { - max-width: 1000px; -} - -igc-tile::part(dragging) { - color: yellow; - -} - -.radioWrapper { - display: flex; -} diff --git a/samples/layouts/tile-manager/dragndrop/tsconfig.json b/samples/layouts/tile-manager/dragndrop/tsconfig.json deleted file mode 100644 index de23257dd8..0000000000 --- a/samples/layouts/tile-manager/dragndrop/tsconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true - }, - "include": [ - "src/**/*" - ], - "exclude": [ - "node_modules", - "dist" - ] -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/dragndrop/webpack.config.js b/samples/layouts/tile-manager/dragndrop/webpack.config.js deleted file mode 100644 index 9d11a6155c..0000000000 --- a/samples/layouts/tile-manager/dragndrop/webpack.config.js +++ /dev/null @@ -1,105 +0,0 @@ -const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); -const HtmlWebpackPlugin = require('html-webpack-plugin'); -const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); -const path = require('path'); -const webpack = require('webpack'); - -module.exports = env => { - const nodeEnv = process.env.NODE_ENV || 'development'; - const isProd = nodeEnv === 'production'; - const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); - console.log(">> webpack nodeEnv=" + nodeEnv); - console.log(">> webpack isProd=" + isProd); - console.log(">> webpack isLegacy=" + isLegacy); - const presets = [ - ["@babel/preset-env", { - "useBuiltIns": "usage", - "corejs": 3, - "targets": { - "browsers": isLegacy ? ["defaults"] : [ - "last 2 Chrome versions", - "last 2 Safari versions", - "last 2 iOS versions", - "last 2 Firefox versions", - "last 2 Edge versions"] - } - }], - "@babel/preset-typescript" - ]; - - return { - entry: isLegacy ? [ - path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), - path.resolve(__dirname, 'node_modules/@webcomponents/template'), - path.resolve(__dirname, 'src') - ] : path.resolve(__dirname, 'src'), - devtool: isProd ? false : 'source-map', - output: { - filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', - globalObject: 'this', - path: path.resolve(__dirname, 'dist'), - }, - - resolve: { - mainFields: ['esm2015', 'module', 'main'], - extensions: ['.ts', '.js', '.json'], - plugins: [new TsconfigPathsPlugin({ - configFile: './tsconfig.json', - extensions: ['.ts', '.js'], - mainFields: ['esm2015', 'module', 'main'] - })] - }, - - module: { - rules: [ - { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, - { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, - { test: /\.xml$/, use: ['xml-loader'] }, - { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, - { - test: /worker\.(ts|js)$/, - use: [ - { loader: 'worker-loader' }, - { - loader: 'babel-loader', options: { - "compact": isProd ? true : false, - "presets": presets, - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-runtime" - ] - } - } - ] - }, - { - test: /\.(ts|js)$/, loader: 'babel-loader', - options: { - "compact": isProd ? true : false, - "presets": presets, - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-runtime" - ] - }, - exclude: - function (modulePath) { - return /node_modules/.test(modulePath) && - !/igniteui-webcomponents/.test(modulePath) && - !/lit-html/.test(modulePath); - } - }], - }, - - plugins: [ - new webpack.DefinePlugin({ - 'process.env.NODE_ENV': JSON.stringify(nodeEnv) - }), - new HtmlWebpackPlugin({ - title: 'for-cs', - template: 'index.html' - }), - new ForkTsCheckerWebpackPlugin() - ] - }; -}; diff --git a/samples/layouts/tile-manager/layout/.prettierrc b/samples/layouts/tile-manager/layout/.prettierrc deleted file mode 100644 index 15a7c7c6cf..0000000000 --- a/samples/layouts/tile-manager/layout/.prettierrc +++ /dev/null @@ -1,11 +0,0 @@ -{ - "printWidth": 250, - "tabWidth": 4, - "useTabs": false, - "semi": true, - "singleQuote": false, - "trailingComma": "none", - "bracketSpacing": true, - "jsxBracketSameLine": false, - "fluid": false -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/layout/ReadMe.md b/samples/layouts/tile-manager/layout/ReadMe.md deleted file mode 100644 index c4728769ad..0000000000 --- a/samples/layouts/tile-manager/layout/ReadMe.md +++ /dev/null @@ -1,56 +0,0 @@ - - - -This folder contains implementation of Web Components application with example of Layout feature using [Tile Manager](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. - - - - - - View Docs - - - View Code - - - Run Sample - - - Run Sample - - - - -## Branches - -> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. - -## Instructions - -To set up this project locally, execute these commands: - -``` -git clone https://github.com/IgniteUI/igniteui-wc-examples.git -git checkout master -cd ./igniteui-wc-examples -cd ./samples/layouts/tile-manager/layout -``` - -open above folder in VS Code or type: -``` -code . -``` - -In terminal window, run: - -``` -npm install -npm run start -``` - -Then open http://localhost:4200/ in your browser - - -## Learn More - -To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/layout/index.html b/samples/layouts/tile-manager/layout/index.html deleted file mode 100644 index b4e9b7e82d..0000000000 --- a/samples/layouts/tile-manager/layout/index.html +++ /dev/null @@ -1,52 +0,0 @@ - - - - - Tile Manager Layout - - - - - - - - - - -
-
-
- Save Layout - Load Layout - Add Tile - Remove Tile -
- - - Tile 1 header -

Content for Tile 1

-
- - Tile 2 header -

Content for Tile 2

-
- - Tile 3 header -

Content for Tile 3

-
- - Tile 4 header -

Content for Tile 4

-
-
-
-
- - - <% if (false) { %> - - <% } %> - - - - \ No newline at end of file diff --git a/samples/layouts/tile-manager/layout/package.json b/samples/layouts/tile-manager/layout/package.json deleted file mode 100644 index 25b28a29f5..0000000000 --- a/samples/layouts/tile-manager/layout/package.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "name": "wc-avatar-icon", - "version": "1.0.0", - "description": "This project provides example of Avatar Icon using IgniteUI for Web Components", - "main": "src/index.ts", - "scripts": { - "build": "npm run build:prod", - "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start": "npm run serve:dev", - "build:legacy": "npm run build:prod:legacy", - "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start:legacy": "npm run serve:dev:legacy" - }, - "author": "Infragistics", - "dependencies": { - "@webcomponents/custom-elements": "^1.4.1", - "@webcomponents/template": "^1.4.2", - "babel-runtime": "^6.26.0", - "core-js": "^3.6.5", - "igniteui-webcomponents": "5.3.0-beta.2", - "lit": "^3.2.0", - "lit-html": "^3.2.0", - "tslib": "^2.0.0" - }, - "devDependencies": { - "@babel/cli": "^7.8.3", - "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.10.0", - "@babel/preset-env": "^7.8.3", - "@babel/preset-typescript": "^7.8.3", - "@types/source-map": "^0.5.7", - "babel-loader": "^8.1.0", - "babel-plugin-transform-custom-element-classes": "^0.1.0", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "fork-ts-checker-webpack-plugin": "^4.1.5", - "html-webpack-plugin": "^4.3.0", - "parcel-bundler": "^1.6.1", - "source-map": "^0.7.3", - "style-loader": "^0.22.1", - "tsconfig-paths-webpack-plugin": "^4.0.0", - "typescript": "^4.4.4", - "webpack": "^5.96.1", - "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.11.1", - "worker-loader": "^3.0.8", - "xml-loader": "^1.2.1" - }, - "license": "", - "homepage": "." -} diff --git a/samples/layouts/tile-manager/layout/sandbox.config.json b/samples/layouts/tile-manager/layout/sandbox.config.json deleted file mode 100644 index 5c5b54fe21..0000000000 --- a/samples/layouts/tile-manager/layout/sandbox.config.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser", - "template": "parcel" -} - \ No newline at end of file diff --git a/samples/layouts/tile-manager/layout/src/index.css b/samples/layouts/tile-manager/layout/src/index.css deleted file mode 100644 index 0fe9368715..0000000000 --- a/samples/layouts/tile-manager/layout/src/index.css +++ /dev/null @@ -1,2 +0,0 @@ -/* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tile-manager/layout/src/index.ts b/samples/layouts/tile-manager/layout/src/index.ts deleted file mode 100644 index 08dbb117d0..0000000000 --- a/samples/layouts/tile-manager/layout/src/index.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { defineComponents, IgcTileManagerComponent, IgcButtonComponent, IgcButtonGroupComponent } from 'igniteui-webcomponents'; -import 'igniteui-webcomponents/themes/light/bootstrap.css'; -import './layout.css' - -defineComponents(IgcTileManagerComponent, IgcButtonComponent, IgcButtonGroupComponent); - -export class TileManagerLayout { - - constructor() { - let serializedData: string; - var tileManager = document.querySelector('#tile-manager1')!; - - document.querySelector('#saveL')?.addEventListener('click', () => { - const tileManager = - document.querySelector('#tile-manager1')!; - - serializedData = tileManager.saveLayout(); - }) - - document.querySelector('#loadL')?.addEventListener('click', () => { - const tileManager = - document.querySelector('#tile-manager1')!; - - tileManager.loadLayout(serializedData); - }) - - document.querySelector('#addT')?.addEventListener('click', () => { - const tiles = tileManager.querySelectorAll('igc-tile'); - const newTile = document.createElement('igc-tile'); - const contentHeader = document.createElement('span'); - const content = document.createElement('p'); - contentHeader.textContent = `Tile ${tileManager.tiles.length + 1} header`; - content.textContent = `Content for Tile ${tileManager.tiles.length + 1}`; - contentHeader.setAttribute('slot', 'title'); - newTile.position = 0; - newTile.append(contentHeader); - newTile.append(content); - tileManager.insertBefore(newTile, tiles[3]); - }) - - document.querySelector('#remT')?.addEventListener('click', () => { - const firstTile = tileManager.querySelector('igc-tile:first-of-type'); - - if (firstTile) { - firstTile.remove(); - } - }) - } -} - -new TileManagerLayout(); diff --git a/samples/layouts/tile-manager/layout/src/layout.css b/samples/layouts/tile-manager/layout/src/layout.css deleted file mode 100644 index 5a0e98aa65..0000000000 --- a/samples/layouts/tile-manager/layout/src/layout.css +++ /dev/null @@ -1,25 +0,0 @@ -span{ - font-size: 30px; -} - -p { - font-size: 25px; - margin-left: 20px; -} - -.btnWrapper { - margin: 0 0 15px 20px; -} - -igc-button:nth-of-type(-n+3) { - margin-right: 5px;; -} - -igc-tile-manager { - max-width: 1000px; - margin-bottom: 20px; -} - -.sample { - overflow: auto; -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/layout/tsconfig.json b/samples/layouts/tile-manager/layout/tsconfig.json deleted file mode 100644 index de23257dd8..0000000000 --- a/samples/layouts/tile-manager/layout/tsconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true - }, - "include": [ - "src/**/*" - ], - "exclude": [ - "node_modules", - "dist" - ] -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/layout/webpack.config.js b/samples/layouts/tile-manager/layout/webpack.config.js deleted file mode 100644 index 9d11a6155c..0000000000 --- a/samples/layouts/tile-manager/layout/webpack.config.js +++ /dev/null @@ -1,105 +0,0 @@ -const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); -const HtmlWebpackPlugin = require('html-webpack-plugin'); -const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); -const path = require('path'); -const webpack = require('webpack'); - -module.exports = env => { - const nodeEnv = process.env.NODE_ENV || 'development'; - const isProd = nodeEnv === 'production'; - const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); - console.log(">> webpack nodeEnv=" + nodeEnv); - console.log(">> webpack isProd=" + isProd); - console.log(">> webpack isLegacy=" + isLegacy); - const presets = [ - ["@babel/preset-env", { - "useBuiltIns": "usage", - "corejs": 3, - "targets": { - "browsers": isLegacy ? ["defaults"] : [ - "last 2 Chrome versions", - "last 2 Safari versions", - "last 2 iOS versions", - "last 2 Firefox versions", - "last 2 Edge versions"] - } - }], - "@babel/preset-typescript" - ]; - - return { - entry: isLegacy ? [ - path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), - path.resolve(__dirname, 'node_modules/@webcomponents/template'), - path.resolve(__dirname, 'src') - ] : path.resolve(__dirname, 'src'), - devtool: isProd ? false : 'source-map', - output: { - filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', - globalObject: 'this', - path: path.resolve(__dirname, 'dist'), - }, - - resolve: { - mainFields: ['esm2015', 'module', 'main'], - extensions: ['.ts', '.js', '.json'], - plugins: [new TsconfigPathsPlugin({ - configFile: './tsconfig.json', - extensions: ['.ts', '.js'], - mainFields: ['esm2015', 'module', 'main'] - })] - }, - - module: { - rules: [ - { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, - { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, - { test: /\.xml$/, use: ['xml-loader'] }, - { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, - { - test: /worker\.(ts|js)$/, - use: [ - { loader: 'worker-loader' }, - { - loader: 'babel-loader', options: { - "compact": isProd ? true : false, - "presets": presets, - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-runtime" - ] - } - } - ] - }, - { - test: /\.(ts|js)$/, loader: 'babel-loader', - options: { - "compact": isProd ? true : false, - "presets": presets, - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-runtime" - ] - }, - exclude: - function (modulePath) { - return /node_modules/.test(modulePath) && - !/igniteui-webcomponents/.test(modulePath) && - !/lit-html/.test(modulePath); - } - }], - }, - - plugins: [ - new webpack.DefinePlugin({ - 'process.env.NODE_ENV': JSON.stringify(nodeEnv) - }), - new HtmlWebpackPlugin({ - title: 'for-cs', - template: 'index.html' - }), - new ForkTsCheckerWebpackPlugin() - ] - }; -}; diff --git a/samples/layouts/tile-manager/overview/.prettierrc b/samples/layouts/tile-manager/overview/.prettierrc deleted file mode 100644 index 15a7c7c6cf..0000000000 --- a/samples/layouts/tile-manager/overview/.prettierrc +++ /dev/null @@ -1,11 +0,0 @@ -{ - "printWidth": 250, - "tabWidth": 4, - "useTabs": false, - "semi": true, - "singleQuote": false, - "trailingComma": "none", - "bracketSpacing": true, - "jsxBracketSameLine": false, - "fluid": false -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/overview/ReadMe.md b/samples/layouts/tile-manager/overview/ReadMe.md deleted file mode 100644 index c5376311dc..0000000000 --- a/samples/layouts/tile-manager/overview/ReadMe.md +++ /dev/null @@ -1,56 +0,0 @@ - - - -This folder contains implementation of Web Components application with example of Overview feature using [Tile Manager](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. - - - - - - View Docs - - - View Code - - - Run Sample - - - Run Sample - - - - -## Branches - -> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. - -## Instructions - -To set up this project locally, execute these commands: - -``` -git clone https://github.com/IgniteUI/igniteui-wc-examples.git -git checkout master -cd ./igniteui-wc-examples -cd ./samples/layouts/tile-manager/overview -``` - -open above folder in VS Code or type: -``` -code . -``` - -In terminal window, run: - -``` -npm install -npm run start -``` - -Then open http://localhost:4200/ in your browser - - -## Learn More - -To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/overview/index.html b/samples/layouts/tile-manager/overview/index.html deleted file mode 100644 index 2f66fb2c8b..0000000000 --- a/samples/layouts/tile-manager/overview/index.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - Tile Manager Overview - - - - - - - - - - -
-
- - - Tile 1 header -

Content for Tile 1

-
- - Tile 2 header -

Content for Tile 2

-
- - Tile 3 header -

Content for Tile 3

-
- - Tile 4 header -

Content for Tile 4

-
-
-
-
- - - <% if (false) { %> - - <% } %> - - - - \ No newline at end of file diff --git a/samples/layouts/tile-manager/overview/package.json b/samples/layouts/tile-manager/overview/package.json deleted file mode 100644 index 25b28a29f5..0000000000 --- a/samples/layouts/tile-manager/overview/package.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "name": "wc-avatar-icon", - "version": "1.0.0", - "description": "This project provides example of Avatar Icon using IgniteUI for Web Components", - "main": "src/index.ts", - "scripts": { - "build": "npm run build:prod", - "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start": "npm run serve:dev", - "build:legacy": "npm run build:prod:legacy", - "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start:legacy": "npm run serve:dev:legacy" - }, - "author": "Infragistics", - "dependencies": { - "@webcomponents/custom-elements": "^1.4.1", - "@webcomponents/template": "^1.4.2", - "babel-runtime": "^6.26.0", - "core-js": "^3.6.5", - "igniteui-webcomponents": "5.3.0-beta.2", - "lit": "^3.2.0", - "lit-html": "^3.2.0", - "tslib": "^2.0.0" - }, - "devDependencies": { - "@babel/cli": "^7.8.3", - "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.10.0", - "@babel/preset-env": "^7.8.3", - "@babel/preset-typescript": "^7.8.3", - "@types/source-map": "^0.5.7", - "babel-loader": "^8.1.0", - "babel-plugin-transform-custom-element-classes": "^0.1.0", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "fork-ts-checker-webpack-plugin": "^4.1.5", - "html-webpack-plugin": "^4.3.0", - "parcel-bundler": "^1.6.1", - "source-map": "^0.7.3", - "style-loader": "^0.22.1", - "tsconfig-paths-webpack-plugin": "^4.0.0", - "typescript": "^4.4.4", - "webpack": "^5.96.1", - "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.11.1", - "worker-loader": "^3.0.8", - "xml-loader": "^1.2.1" - }, - "license": "", - "homepage": "." -} diff --git a/samples/layouts/tile-manager/overview/sandbox.config.json b/samples/layouts/tile-manager/overview/sandbox.config.json deleted file mode 100644 index 5c5b54fe21..0000000000 --- a/samples/layouts/tile-manager/overview/sandbox.config.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser", - "template": "parcel" -} - \ No newline at end of file diff --git a/samples/layouts/tile-manager/overview/src/index.css b/samples/layouts/tile-manager/overview/src/index.css deleted file mode 100644 index 0fe9368715..0000000000 --- a/samples/layouts/tile-manager/overview/src/index.css +++ /dev/null @@ -1,2 +0,0 @@ -/* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tile-manager/overview/src/index.ts b/samples/layouts/tile-manager/overview/src/index.ts deleted file mode 100644 index b5162d4baa..0000000000 --- a/samples/layouts/tile-manager/overview/src/index.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { defineComponents, IgcTileManagerComponent } from 'igniteui-webcomponents'; -import 'igniteui-webcomponents/themes/light/bootstrap.css'; -import './layout.css' - -defineComponents(IgcTileManagerComponent); - -export class TileManagerOverview { - constructor() { - } -} - -new TileManagerOverview(); diff --git a/samples/layouts/tile-manager/overview/src/layout.css b/samples/layouts/tile-manager/overview/src/layout.css deleted file mode 100644 index 5755b133f7..0000000000 --- a/samples/layouts/tile-manager/overview/src/layout.css +++ /dev/null @@ -1,8 +0,0 @@ -span{ - font-size: 30px; -} - -p { - font-size: 25px; - margin-left : 20px; -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/overview/tsconfig.json b/samples/layouts/tile-manager/overview/tsconfig.json deleted file mode 100644 index de23257dd8..0000000000 --- a/samples/layouts/tile-manager/overview/tsconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true - }, - "include": [ - "src/**/*" - ], - "exclude": [ - "node_modules", - "dist" - ] -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/overview/webpack.config.js b/samples/layouts/tile-manager/overview/webpack.config.js deleted file mode 100644 index 9d11a6155c..0000000000 --- a/samples/layouts/tile-manager/overview/webpack.config.js +++ /dev/null @@ -1,105 +0,0 @@ -const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); -const HtmlWebpackPlugin = require('html-webpack-plugin'); -const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); -const path = require('path'); -const webpack = require('webpack'); - -module.exports = env => { - const nodeEnv = process.env.NODE_ENV || 'development'; - const isProd = nodeEnv === 'production'; - const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); - console.log(">> webpack nodeEnv=" + nodeEnv); - console.log(">> webpack isProd=" + isProd); - console.log(">> webpack isLegacy=" + isLegacy); - const presets = [ - ["@babel/preset-env", { - "useBuiltIns": "usage", - "corejs": 3, - "targets": { - "browsers": isLegacy ? ["defaults"] : [ - "last 2 Chrome versions", - "last 2 Safari versions", - "last 2 iOS versions", - "last 2 Firefox versions", - "last 2 Edge versions"] - } - }], - "@babel/preset-typescript" - ]; - - return { - entry: isLegacy ? [ - path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), - path.resolve(__dirname, 'node_modules/@webcomponents/template'), - path.resolve(__dirname, 'src') - ] : path.resolve(__dirname, 'src'), - devtool: isProd ? false : 'source-map', - output: { - filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', - globalObject: 'this', - path: path.resolve(__dirname, 'dist'), - }, - - resolve: { - mainFields: ['esm2015', 'module', 'main'], - extensions: ['.ts', '.js', '.json'], - plugins: [new TsconfigPathsPlugin({ - configFile: './tsconfig.json', - extensions: ['.ts', '.js'], - mainFields: ['esm2015', 'module', 'main'] - })] - }, - - module: { - rules: [ - { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, - { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, - { test: /\.xml$/, use: ['xml-loader'] }, - { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, - { - test: /worker\.(ts|js)$/, - use: [ - { loader: 'worker-loader' }, - { - loader: 'babel-loader', options: { - "compact": isProd ? true : false, - "presets": presets, - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-runtime" - ] - } - } - ] - }, - { - test: /\.(ts|js)$/, loader: 'babel-loader', - options: { - "compact": isProd ? true : false, - "presets": presets, - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-runtime" - ] - }, - exclude: - function (modulePath) { - return /node_modules/.test(modulePath) && - !/igniteui-webcomponents/.test(modulePath) && - !/lit-html/.test(modulePath); - } - }], - }, - - plugins: [ - new webpack.DefinePlugin({ - 'process.env.NODE_ENV': JSON.stringify(nodeEnv) - }), - new HtmlWebpackPlugin({ - title: 'for-cs', - template: 'index.html' - }), - new ForkTsCheckerWebpackPlugin() - ] - }; -}; diff --git a/samples/layouts/tile-manager/resize/.prettierrc b/samples/layouts/tile-manager/resize/.prettierrc deleted file mode 100644 index 15a7c7c6cf..0000000000 --- a/samples/layouts/tile-manager/resize/.prettierrc +++ /dev/null @@ -1,11 +0,0 @@ -{ - "printWidth": 250, - "tabWidth": 4, - "useTabs": false, - "semi": true, - "singleQuote": false, - "trailingComma": "none", - "bracketSpacing": true, - "jsxBracketSameLine": false, - "fluid": false -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/resize/ReadMe.md b/samples/layouts/tile-manager/resize/ReadMe.md deleted file mode 100644 index 7f0aac25ee..0000000000 --- a/samples/layouts/tile-manager/resize/ReadMe.md +++ /dev/null @@ -1,56 +0,0 @@ - - - -This folder contains implementation of Web Components application with example of Resize feature using [Tile Manager](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. - - - - - - View Docs - - - View Code - - - Run Sample - - - Run Sample - - - - -## Branches - -> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. - -## Instructions - -To set up this project locally, execute these commands: - -``` -git clone https://github.com/IgniteUI/igniteui-wc-examples.git -git checkout master -cd ./igniteui-wc-examples -cd ./samples/layouts/tile-manager/resize -``` - -open above folder in VS Code or type: -``` -code . -``` - -In terminal window, run: - -``` -npm install -npm run start -``` - -Then open http://localhost:4200/ in your browser - - -## Learn More - -To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/resize/index.html b/samples/layouts/tile-manager/resize/index.html deleted file mode 100644 index 142d0c2880..0000000000 --- a/samples/layouts/tile-manager/resize/index.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - - Tile Manager Resize - - - - - - - - - - -
-
- - Always - Hover - - - - Tile 1 header -

Content for Tile 1

-
- - Tile 2 header -

Content for Tile 2

-
- - Tile 3 header -

Content for Tile 3

-
- - Tile 4 header -

Content for Tile 4

-
-
-
-
- - - <% if (false) { %> - - <% } %> - - - - \ No newline at end of file diff --git a/samples/layouts/tile-manager/resize/package.json b/samples/layouts/tile-manager/resize/package.json deleted file mode 100644 index 25b28a29f5..0000000000 --- a/samples/layouts/tile-manager/resize/package.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "name": "wc-avatar-icon", - "version": "1.0.0", - "description": "This project provides example of Avatar Icon using IgniteUI for Web Components", - "main": "src/index.ts", - "scripts": { - "build": "npm run build:prod", - "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start": "npm run serve:dev", - "build:legacy": "npm run build:prod:legacy", - "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start:legacy": "npm run serve:dev:legacy" - }, - "author": "Infragistics", - "dependencies": { - "@webcomponents/custom-elements": "^1.4.1", - "@webcomponents/template": "^1.4.2", - "babel-runtime": "^6.26.0", - "core-js": "^3.6.5", - "igniteui-webcomponents": "5.3.0-beta.2", - "lit": "^3.2.0", - "lit-html": "^3.2.0", - "tslib": "^2.0.0" - }, - "devDependencies": { - "@babel/cli": "^7.8.3", - "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.10.0", - "@babel/preset-env": "^7.8.3", - "@babel/preset-typescript": "^7.8.3", - "@types/source-map": "^0.5.7", - "babel-loader": "^8.1.0", - "babel-plugin-transform-custom-element-classes": "^0.1.0", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "fork-ts-checker-webpack-plugin": "^4.1.5", - "html-webpack-plugin": "^4.3.0", - "parcel-bundler": "^1.6.1", - "source-map": "^0.7.3", - "style-loader": "^0.22.1", - "tsconfig-paths-webpack-plugin": "^4.0.0", - "typescript": "^4.4.4", - "webpack": "^5.96.1", - "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.11.1", - "worker-loader": "^3.0.8", - "xml-loader": "^1.2.1" - }, - "license": "", - "homepage": "." -} diff --git a/samples/layouts/tile-manager/resize/sandbox.config.json b/samples/layouts/tile-manager/resize/sandbox.config.json deleted file mode 100644 index 5c5b54fe21..0000000000 --- a/samples/layouts/tile-manager/resize/sandbox.config.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser", - "template": "parcel" -} - \ No newline at end of file diff --git a/samples/layouts/tile-manager/resize/src/index.css b/samples/layouts/tile-manager/resize/src/index.css deleted file mode 100644 index 0fe9368715..0000000000 --- a/samples/layouts/tile-manager/resize/src/index.css +++ /dev/null @@ -1,2 +0,0 @@ -/* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tile-manager/resize/src/index.ts b/samples/layouts/tile-manager/resize/src/index.ts deleted file mode 100644 index 2783040161..0000000000 --- a/samples/layouts/tile-manager/resize/src/index.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { defineComponents, IgcTileManagerComponent, IgcRadioGroupComponent, IgcRadioComponent } from 'igniteui-webcomponents'; -import 'igniteui-webcomponents/themes/light/bootstrap.css'; -import './layout.css' - -defineComponents(IgcTileManagerComponent, IgcRadioGroupComponent, IgcRadioComponent); - -export class TileManagerResize { - constructor() { - document.addEventListener('igcChange', (e) => { - const radio = e.target as IgcRadioComponent; - if (radio.value === "Hover") { - document.querySelector("igc-tile-manager")?.setAttribute("resize-mode", "hover"); - } - else { - document.querySelector("igc-tile-manager")?.setAttribute("resize-mode", "always"); - } - }) - } -} - -new TileManagerResize(); diff --git a/samples/layouts/tile-manager/resize/src/layout.css b/samples/layouts/tile-manager/resize/src/layout.css deleted file mode 100644 index df8afd2277..0000000000 --- a/samples/layouts/tile-manager/resize/src/layout.css +++ /dev/null @@ -1,21 +0,0 @@ -span{ - font-size: 30px; -} - -p { - font-size: 25px; - padding-left: 20px; -} - -igc-radio-group { - margin-left: 20px; - width: fit-content; - padding: 4px 15px; - margin-bottom: 10px; - border: 2px solid var(--ig-primary-700); - background-color: var(--ig-gray-300); -} - -igc-tile-manager { - max-width: 1000px; -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/resize/tsconfig.json b/samples/layouts/tile-manager/resize/tsconfig.json deleted file mode 100644 index de23257dd8..0000000000 --- a/samples/layouts/tile-manager/resize/tsconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true - }, - "include": [ - "src/**/*" - ], - "exclude": [ - "node_modules", - "dist" - ] -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/resize/webpack.config.js b/samples/layouts/tile-manager/resize/webpack.config.js deleted file mode 100644 index 9d11a6155c..0000000000 --- a/samples/layouts/tile-manager/resize/webpack.config.js +++ /dev/null @@ -1,105 +0,0 @@ -const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); -const HtmlWebpackPlugin = require('html-webpack-plugin'); -const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); -const path = require('path'); -const webpack = require('webpack'); - -module.exports = env => { - const nodeEnv = process.env.NODE_ENV || 'development'; - const isProd = nodeEnv === 'production'; - const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); - console.log(">> webpack nodeEnv=" + nodeEnv); - console.log(">> webpack isProd=" + isProd); - console.log(">> webpack isLegacy=" + isLegacy); - const presets = [ - ["@babel/preset-env", { - "useBuiltIns": "usage", - "corejs": 3, - "targets": { - "browsers": isLegacy ? ["defaults"] : [ - "last 2 Chrome versions", - "last 2 Safari versions", - "last 2 iOS versions", - "last 2 Firefox versions", - "last 2 Edge versions"] - } - }], - "@babel/preset-typescript" - ]; - - return { - entry: isLegacy ? [ - path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), - path.resolve(__dirname, 'node_modules/@webcomponents/template'), - path.resolve(__dirname, 'src') - ] : path.resolve(__dirname, 'src'), - devtool: isProd ? false : 'source-map', - output: { - filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', - globalObject: 'this', - path: path.resolve(__dirname, 'dist'), - }, - - resolve: { - mainFields: ['esm2015', 'module', 'main'], - extensions: ['.ts', '.js', '.json'], - plugins: [new TsconfigPathsPlugin({ - configFile: './tsconfig.json', - extensions: ['.ts', '.js'], - mainFields: ['esm2015', 'module', 'main'] - })] - }, - - module: { - rules: [ - { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, - { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, - { test: /\.xml$/, use: ['xml-loader'] }, - { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, - { - test: /worker\.(ts|js)$/, - use: [ - { loader: 'worker-loader' }, - { - loader: 'babel-loader', options: { - "compact": isProd ? true : false, - "presets": presets, - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-runtime" - ] - } - } - ] - }, - { - test: /\.(ts|js)$/, loader: 'babel-loader', - options: { - "compact": isProd ? true : false, - "presets": presets, - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-runtime" - ] - }, - exclude: - function (modulePath) { - return /node_modules/.test(modulePath) && - !/igniteui-webcomponents/.test(modulePath) && - !/lit-html/.test(modulePath); - } - }], - }, - - plugins: [ - new webpack.DefinePlugin({ - 'process.env.NODE_ENV': JSON.stringify(nodeEnv) - }), - new HtmlWebpackPlugin({ - title: 'for-cs', - template: 'index.html' - }), - new ForkTsCheckerWebpackPlugin() - ] - }; -}; diff --git a/samples/layouts/tile-manager/styling/.prettierrc b/samples/layouts/tile-manager/styling/.prettierrc deleted file mode 100644 index 15a7c7c6cf..0000000000 --- a/samples/layouts/tile-manager/styling/.prettierrc +++ /dev/null @@ -1,11 +0,0 @@ -{ - "printWidth": 250, - "tabWidth": 4, - "useTabs": false, - "semi": true, - "singleQuote": false, - "trailingComma": "none", - "bracketSpacing": true, - "jsxBracketSameLine": false, - "fluid": false -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/styling/ReadMe.md b/samples/layouts/tile-manager/styling/ReadMe.md deleted file mode 100644 index eac5234415..0000000000 --- a/samples/layouts/tile-manager/styling/ReadMe.md +++ /dev/null @@ -1,56 +0,0 @@ - - - -This folder contains implementation of Web Components application with example of Styling feature using [Tile Manager](https://infragistics.com/webcomponentssite/components/general-getting-started.html) component. - - - - - - View Docs - - - View Code - - - Run Sample - - - Run Sample - - - - -## Branches - -> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-angular-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-angular-examples/tree/vnext) branch only when you want to contribute new samples to this repository. - -## Instructions - -To set up this project locally, execute these commands: - -``` -git clone https://github.com/IgniteUI/igniteui-wc-examples.git -git checkout master -cd ./igniteui-wc-examples -cd ./samples/layouts/tile-manager/styling -``` - -open above folder in VS Code or type: -``` -code . -``` - -In terminal window, run: - -``` -npm install -npm run start -``` - -Then open http://localhost:4200/ in your browser - - -## Learn More - -To learn more about **Ignite UI for Web Components**, check out the [Web Components documentation](https://infragistics.com/webcomponentssite/components/general-getting-started.html). diff --git a/samples/layouts/tile-manager/styling/index.html b/samples/layouts/tile-manager/styling/index.html deleted file mode 100644 index 28a61f3d8c..0000000000 --- a/samples/layouts/tile-manager/styling/index.html +++ /dev/null @@ -1,194 +0,0 @@ - - - - - Tile Manager Styling - - - - - - - - - - -
-
- - -

Order info

- - - - list_alt - -
-

OrderID

-

10293

-
-
- - - list_alt - -
-

Customer Name

-

Tortuga Restaurante

-
-
- - - calendar_month - -
-

Order Date

-

August 29, 1996

-
-
- - - calendar_month - -
-

Shipped Date

-

September 11, 1996

-
-
- - - list_alt - -
-

Product Name

-

Carnavon Tigers

-
-
- - - list_alt - -
-

Ship Country

-

Mexico

-
-
-
-
- -

Order Line Items

-
- -
- -
- - - production_quantity_limits - - -
-

Carnavon Tigers

-
- -
- Quantity 12 -
-
- Unit Price $50 -
-
-
-
- -
- -
- - - production_quantity_limits - - -
-

Guarana Fantastica

-
- -
- Quantity 10 -
-
- Unit Price $4 -
-
-
-
- -
- -
- - - production_quantity_limits - - -
-

Vegie-spread

-
- -
- Quantity 5 -
-
- Unit Price $35 -
-
-
-
- -
- -
- - - production_quantity_limits - - -
-

Rhonbrau Klosterbier

-
- -
- Quantity 7 -
-
- Unit Price $6 -
-
-
-
-
-
- -

Order Value

-
-

$8.66K

-
-
- -

Item quantity

-
-

4

-
-
-
-
-
- - - <% if (false) { %> - - <% } %> - - - - \ No newline at end of file diff --git a/samples/layouts/tile-manager/styling/package.json b/samples/layouts/tile-manager/styling/package.json deleted file mode 100644 index 25b28a29f5..0000000000 --- a/samples/layouts/tile-manager/styling/package.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "name": "wc-avatar-icon", - "version": "1.0.0", - "description": "This project provides example of Avatar Icon using IgniteUI for Web Components", - "main": "src/index.ts", - "scripts": { - "build": "npm run build:prod", - "build:dev": "webpack --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod": "webpack --env.NODE_ENV=production --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod": "webpack-dev-server --env.NODE_ENV=production --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start": "npm run serve:dev", - "build:legacy": "npm run build:prod:legacy", - "build:dev:legacy": "webpack --env.legacy=true --mode development --config ./webpack.config.js --progress --color --display-error-details", - "build:prod:legacy": "webpack --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --progress --color --display-error-details --bail", - "serve:dev:legacy": "node --max-old-space-size=8192 node_modules/webpack-dev-server/bin/webpack-dev-server.js --env.legacy=true --mode development --config ./webpack.config.js --hot --progress --open", - "serve:prod:legacy": "webpack-dev-server --env.NODE_ENV=production --env.legacy=true --mode production --config ./webpack.config.js --port 3000 --host 0.0.0.0 --hot --progress --open --content-base dist/", - "start:legacy": "npm run serve:dev:legacy" - }, - "author": "Infragistics", - "dependencies": { - "@webcomponents/custom-elements": "^1.4.1", - "@webcomponents/template": "^1.4.2", - "babel-runtime": "^6.26.0", - "core-js": "^3.6.5", - "igniteui-webcomponents": "5.3.0-beta.2", - "lit": "^3.2.0", - "lit-html": "^3.2.0", - "tslib": "^2.0.0" - }, - "devDependencies": { - "@babel/cli": "^7.8.3", - "@babel/core": "^7.8.3", - "@babel/plugin-proposal-class-properties": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.10.0", - "@babel/preset-env": "^7.8.3", - "@babel/preset-typescript": "^7.8.3", - "@types/source-map": "^0.5.7", - "babel-loader": "^8.1.0", - "babel-plugin-transform-custom-element-classes": "^0.1.0", - "css-loader": "^1.0.0", - "csv-loader": "^3.0.2", - "file-loader": "^4.2.0", - "fork-ts-checker-webpack-plugin": "^4.1.5", - "html-webpack-plugin": "^4.3.0", - "parcel-bundler": "^1.6.1", - "source-map": "^0.7.3", - "style-loader": "^0.22.1", - "tsconfig-paths-webpack-plugin": "^4.0.0", - "typescript": "^4.4.4", - "webpack": "^5.96.1", - "webpack-cli": "^4.10.0", - "webpack-dev-server": "^4.11.1", - "worker-loader": "^3.0.8", - "xml-loader": "^1.2.1" - }, - "license": "", - "homepage": "." -} diff --git a/samples/layouts/tile-manager/styling/sandbox.config.json b/samples/layouts/tile-manager/styling/sandbox.config.json deleted file mode 100644 index 5c5b54fe21..0000000000 --- a/samples/layouts/tile-manager/styling/sandbox.config.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "infiniteLoopProtection": false, - "hardReloadOnChange": false, - "view": "browser", - "template": "parcel" -} - \ No newline at end of file diff --git a/samples/layouts/tile-manager/styling/src/index.css b/samples/layouts/tile-manager/styling/src/index.css deleted file mode 100644 index 0fe9368715..0000000000 --- a/samples/layouts/tile-manager/styling/src/index.css +++ /dev/null @@ -1,2 +0,0 @@ -/* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file diff --git a/samples/layouts/tile-manager/styling/src/index.ts b/samples/layouts/tile-manager/styling/src/index.ts deleted file mode 100644 index 106e0703d6..0000000000 --- a/samples/layouts/tile-manager/styling/src/index.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { defineComponents, IgcAvatarComponent, IgcCardComponent, IgcListComponent, IgcTileManagerComponent } from 'igniteui-webcomponents'; -import 'igniteui-webcomponents/themes/light/bootstrap.css'; -import './layout.css' -import './styles.css' - -defineComponents(IgcTileManagerComponent, IgcListComponent, IgcAvatarComponent, IgcCardComponent); - -export class TileManagerStyling { - constructor() { - } -} - -new TileManagerStyling(); diff --git a/samples/layouts/tile-manager/styling/src/layout.css b/samples/layouts/tile-manager/styling/src/layout.css deleted file mode 100644 index 3bb1373621..0000000000 --- a/samples/layouts/tile-manager/styling/src/layout.css +++ /dev/null @@ -1,50 +0,0 @@ -igc-tile-manager { - max-width: 1000px; - margin-bottom: 20px; -} - -.sample { - overflow: auto; -} - -.group { - display: flex; - flex-direction: row; - justify-content: space-evenly; - flex-wrap: wrap; - margin-top: 25px; - -} - -.card { - min-height: 30px; - width: 285px; - min-width: 285px; - max-width: 285px; -} - -igc-card-content { - color: var(--content-text-color); -} - -.body-content { - width: 100%; - display: flex; - flex-direction: row; - justify-content: space-between; - align-items: center; -} - -.card:nth-child(n+3) { - margin-top: 10px; -} - -h2 { - font-size: 22px; -} - -.string { - text-align: center; - margin-top: 50px; - color: var(--ig-gray-800); -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/styling/src/styles.css b/samples/layouts/tile-manager/styling/src/styles.css deleted file mode 100644 index 46c00c9fbc..0000000000 --- a/samples/layouts/tile-manager/styling/src/styles.css +++ /dev/null @@ -1,15 +0,0 @@ -igc-tile-manager::part(base) { - background-color: var(--ig-surface-900); -} - -igc-tile::part(content-container) { - color: var(--ig-secondary-200); -} - -igc-tile::part(header) { - background-color: var(--ig-gray-300); -} - -igc-tile::part(title) { - color: var(--ig-primary-400); -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/styling/tsconfig.json b/samples/layouts/tile-manager/styling/tsconfig.json deleted file mode 100644 index de23257dd8..0000000000 --- a/samples/layouts/tile-manager/styling/tsconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "compilerOptions": { - "noImplicitReturns": true, - "esModuleInterop": true, - "noImplicitAny": true, - "declarationDir": "dist/types", - "moduleResolution": "node", - "declaration": true, - "target": "es2015", - "module": "es2015", - "strict": true - }, - "include": [ - "src/**/*" - ], - "exclude": [ - "node_modules", - "dist" - ] -} \ No newline at end of file diff --git a/samples/layouts/tile-manager/styling/webpack.config.js b/samples/layouts/tile-manager/styling/webpack.config.js deleted file mode 100644 index 9d11a6155c..0000000000 --- a/samples/layouts/tile-manager/styling/webpack.config.js +++ /dev/null @@ -1,105 +0,0 @@ -const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); -const HtmlWebpackPlugin = require('html-webpack-plugin'); -const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin'); -const path = require('path'); -const webpack = require('webpack'); - -module.exports = env => { - const nodeEnv = process.env.NODE_ENV || 'development'; - const isProd = nodeEnv === 'production'; - const isLegacy = !!process.env.legacy && !(process.env.legacy == "false"); - console.log(">> webpack nodeEnv=" + nodeEnv); - console.log(">> webpack isProd=" + isProd); - console.log(">> webpack isLegacy=" + isLegacy); - const presets = [ - ["@babel/preset-env", { - "useBuiltIns": "usage", - "corejs": 3, - "targets": { - "browsers": isLegacy ? ["defaults"] : [ - "last 2 Chrome versions", - "last 2 Safari versions", - "last 2 iOS versions", - "last 2 Firefox versions", - "last 2 Edge versions"] - } - }], - "@babel/preset-typescript" - ]; - - return { - entry: isLegacy ? [ - path.resolve(__dirname, 'node_modules/@webcomponents/custom-elements'), - path.resolve(__dirname, 'node_modules/@webcomponents/template'), - path.resolve(__dirname, 'src') - ] : path.resolve(__dirname, 'src'), - devtool: isProd ? false : 'source-map', - output: { - filename: isProd ? '[fullhash].bundle.js' : '[fullhash].bundle.js', - globalObject: 'this', - path: path.resolve(__dirname, 'dist'), - }, - - resolve: { - mainFields: ['esm2015', 'module', 'main'], - extensions: ['.ts', '.js', '.json'], - plugins: [new TsconfigPathsPlugin({ - configFile: './tsconfig.json', - extensions: ['.ts', '.js'], - mainFields: ['esm2015', 'module', 'main'] - })] - }, - - module: { - rules: [ - { test: /\.(png|svg|jpg|gif)$/, use: ['file-loader'] }, - { test: /\.(csv|tsv)$/, use: ['csv-loader'] }, - { test: /\.xml$/, use: ['xml-loader'] }, - { test: /\.css$/, sideEffects: true, use: ['style-loader', 'css-loader'] }, - { - test: /worker\.(ts|js)$/, - use: [ - { loader: 'worker-loader' }, - { - loader: 'babel-loader', options: { - "compact": isProd ? true : false, - "presets": presets, - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-runtime" - ] - } - } - ] - }, - { - test: /\.(ts|js)$/, loader: 'babel-loader', - options: { - "compact": isProd ? true : false, - "presets": presets, - "plugins": [ - "@babel/plugin-proposal-class-properties", - "@babel/plugin-transform-runtime" - ] - }, - exclude: - function (modulePath) { - return /node_modules/.test(modulePath) && - !/igniteui-webcomponents/.test(modulePath) && - !/lit-html/.test(modulePath); - } - }], - }, - - plugins: [ - new webpack.DefinePlugin({ - 'process.env.NODE_ENV': JSON.stringify(nodeEnv) - }), - new HtmlWebpackPlugin({ - title: 'for-cs', - template: 'index.html' - }), - new ForkTsCheckerWebpackPlugin() - ] - }; -}; From 2dc593487f31e6210f044adc069126398add59fe Mon Sep 17 00:00:00 2001 From: IGvaleries Date: Tue, 4 Mar 2025 13:45:31 -0500 Subject: [PATCH 62/63] update packages to use product build for 02/2025 SR --- browser/public/index.html | 3 + browser/tasks/gulp-samples.js | 26 +-- package-lock.json | 172 +++++++++--------- package.json | 26 +-- .../annotations-all/package.json | 10 +- .../annotations-callouts/package.json | 10 +- .../annotations-crosshairs/package.json | 10 +- .../annotations-custom/package.json | 10 +- .../annotations-final-value/package.json | 10 +- .../annotations-highlighting/package.json | 10 +- .../category-chart/annotations/package.json | 4 +- .../area-chart-multiple-sources/package.json | 4 +- .../area-chart-single-source/package.json | 4 +- .../area-chart-styling/package.json | 4 +- .../category-chart/axis-gap/package.json | 10 +- .../axis-gridlines/package.json | 10 +- .../category-chart/axis-inverted/package.json | 10 +- .../category-chart/axis-labels/package.json | 10 +- .../axis-locations/package.json | 10 +- .../category-chart/axis-options/package.json | 4 +- .../category-chart/axis-overlap/package.json | 10 +- .../category-chart/axis-range/package.json | 10 +- .../axis-tickmarks/package.json | 10 +- .../category-chart/axis-titles/package.json | 4 +- .../chart-highlight-filter/package.json | 10 +- .../package.json | 4 +- .../column-chart-single-source/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../package.json | 4 +- .../column-chart-with-tooltips/package.json | 10 +- .../custom-selection/package.json | 4 +- .../data-aggregations/package.json | 10 +- .../category-chart/data-filter/package.json | 10 +- .../package.json | 4 +- .../category-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-positioning/package.json | 10 +- .../category-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 8 +- .../high-frequency/package.json | 4 +- .../category-chart/high-volume/package.json | 4 +- .../highlighting-behavior/package.json | 10 +- .../highlighting-mode/package.json | 10 +- .../category-chart/highlighting/package.json | 4 +- .../legend-highlighting/package.json | 4 +- .../line-chart-multiple-sources/package.json | 4 +- .../line-chart-single-source/package.json | 4 +- .../line-chart-styling/package.json | 4 +- .../line-chart-with-animations/package.json | 4 +- .../line-chart-with-annotations/package.json | 4 +- .../marker-options/package.json | 10 +- .../marker-templates/package.json | 4 +- .../category-chart/overview/package.json | 4 +- .../point-chart-multiple-sources/package.json | 4 +- .../point-chart-single-source/package.json | 4 +- .../point-chart-styling/package.json | 4 +- .../selection-matcher/ReadMe.md | 56 ++++++ .../selection-matcher/package.json | 4 +- .../selection-modes/package.json | 4 +- .../selection-multiple-modes/package.json | 10 +- .../spline-area-multiple-sources/package.json | 4 +- .../spline-area-single-source/package.json | 4 +- .../spline-area-styling/package.json | 4 +- .../spline-multiple-sources/package.json | 4 +- .../spline-single-source/package.json | 4 +- .../spline-styling/package.json | 4 +- .../category-chart/stack-columns/package.json | 4 +- .../step-area-multiple-sources/package.json | 4 +- .../step-area-single-source/package.json | 4 +- .../step-area-styling/package.json | 4 +- .../step-line-multiple-sources/package.json | 4 +- .../step-line-single-source/package.json | 4 +- .../step-line-styling/package.json | 4 +- .../tooltip-template/package.json | 4 +- .../category-chart/tooltip-types/package.json | 4 +- .../category-chart/trendline/package.json | 4 +- .../category-chart/value-lines/package.json | 10 +- .../chart-dashboard/package.json | 16 +- .../financial-dashboard/package.json | 16 +- .../gauge-dashboard/package.json | 16 +- .../dashboard-tile/map-dashboard/package.json | 16 +- .../dashboard-tile/pie-dashboard/package.json | 16 +- .../annotations-custom/package.json | 4 +- .../package.json | 4 +- .../data-chart/axis-annotations/package.json | 4 +- .../data-chart/axis-crossing/package.json | 4 +- .../axis-label-rotation/package.json | 10 +- .../data-chart/axis-locations/package.json | 4 +- .../data-chart/axis-min-max-gap/package.json | 4 +- .../data-chart/axis-settings/package.json | 4 +- .../data-chart/axis-sharing/package.json | 4 +- .../charts/data-chart/axis-types/package.json | 4 +- .../bar-chart-multiple-sources/package.json | 4 +- .../bar-chart-overlapping/package.json | 4 +- .../bar-chart-single-source/package.json | 4 +- .../data-chart/bar-chart-styling/package.json | 4 +- .../callout-layer-styling/package.json | 4 +- .../package.json | 10 +- .../package.json | 10 +- .../chart-highlight-filter/package.json | 10 +- .../data-chart/chart-navigation/package.json | 4 +- .../data-chart/chart-overview/package.json | 4 +- .../data-chart/chart-performance/package.json | 4 +- .../chart-synchronization/package.json | 4 +- .../data-chart/chart-titles/package.json | 4 +- .../data-chart/composite-chart/package.json | 4 +- .../crosshair-layer-styling/package.json | 4 +- .../custom-drawing-annotations/package.json | 8 +- .../custom-editing-data/package.json | 4 +- .../data-chart/dash-array-axes/package.json | 4 +- .../data-chart/dash-array-series/package.json | 4 +- .../dash-array-tickmarks/package.json | 4 +- .../dash-array-trendline/package.json | 4 +- .../package.json | 4 +- .../data-legend-grouping/package.json | 4 +- .../data-legend-styling/package.json | 4 +- .../data-chart/data-legend/package.json | 4 +- .../package.json | 8 +- .../data-tooltip-grouping/package.json | 8 +- .../data-tooltip-styling/package.json | 8 +- .../data-chart/data-tooltip/package.json | 4 +- .../final-value-layer-styling/package.json | 4 +- .../financial-price-series/package.json | 4 +- .../data-chart/format-specifiers/package.json | 4 +- .../charts/data-chart/legends/package.json | 4 +- .../polar-area-chart-styling/package.json | 4 +- .../data-chart/polar-area-chart/package.json | 4 +- .../data-chart/polar-chart-types/package.json | 4 +- .../data-chart/polar-line-chart/package.json | 4 +- .../polar-scatter-chart/package.json | 4 +- .../polar-spline-area-chart/package.json | 4 +- .../polar-spline-chart/package.json | 4 +- .../radial-area-chart-styling/package.json | 4 +- .../data-chart/radial-area-chart/package.json | 4 +- .../radial-chart-types/package.json | 4 +- .../package.json | 4 +- .../radial-column-chart/package.json | 4 +- .../data-chart/radial-label-mode/package.json | 10 +- .../data-chart/radial-line-chart/package.json | 4 +- .../data-chart/radial-pie-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../data-chart/range-area-chart/package.json | 4 +- .../range-column-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../scatter-bubble-chart-styling/package.json | 4 +- .../scatter-line-chart/package.json | 4 +- .../scatter-point-chart/package.json | 4 +- .../scatter-spline-chart/package.json | 4 +- .../data-chart/selection-matcher/ReadMe.md | 56 ++++++ .../data-chart/selection-matcher/package.json | 4 +- .../data-chart/series-animations/package.json | 4 +- .../series-annotations/package.json | 4 +- .../data-chart/series-error-bars/package.json | 4 +- .../series-highlighting/package.json | 4 +- .../series-marker-template/package.json | 4 +- .../data-chart/series-markers/package.json | 4 +- .../data-chart/series-tooltips/package.json | 4 +- .../data-chart/series-trendlines/package.json | 4 +- .../series-value-overlay/package.json | 4 +- .../stacked-100-area-chart/package.json | 4 +- .../stacked-100-bar-chart/package.json | 4 +- .../stacked-100-column-chart/package.json | 4 +- .../stacked-100-line-chart/package.json | 4 +- .../package.json | 4 +- .../stacked-100-spline-chart/package.json | 4 +- .../stacked-area-chart/package.json | 4 +- .../data-chart/stacked-bar-chart/package.json | 4 +- .../stacked-chart-types/package.json | 4 +- .../stacked-column-chart/package.json | 4 +- .../stacked-line-chart/package.json | 4 +- .../stacked-spline-area-chart/package.json | 4 +- .../stacked-spline-chart/package.json | 4 +- .../data-chart/tooltip-template/package.json | 4 +- .../data-chart/transition-event/package.json | 10 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../type-financial-ohlc-series/package.json | 4 +- .../type-financial-overlays/package.json | 4 +- .../type-financial-series/package.json | 4 +- .../type-range-area-series/package.json | 4 +- .../type-range-column-series/package.json | 4 +- .../data-chart/type-range-series/package.json | 4 +- .../type-scatter-area-series/package.json | 4 +- .../type-scatter-bubble-series/package.json | 4 +- .../type-scatter-contour-series/package.json | 4 +- .../type-scatter-hd-series/package.json | 4 +- .../type-scatter-polygon-series/package.json | 4 +- .../type-scatter-polyline-series/package.json | 4 +- .../type-scatter-series/package.json | 4 +- .../data-chart/type-shape-series/package.json | 4 +- .../data-chart/waterfall-chart/package.json | 4 +- .../data-pie-chart/animation-replay/ReadMe.md | 56 ++++++ .../animation-replay/package.json | 10 +- .../data-pie-chart/animation/package.json | 10 +- .../highlight-filter/package.json | 4 +- .../data-pie-chart/highlighting/package.json | 10 +- .../charts/data-pie-chart/legend/package.json | 8 +- .../charts/data-pie-chart/others/package.json | 10 +- .../data-pie-chart/overview/package.json | 4 +- .../data-pie-chart/selection/package.json | 10 +- .../doughnut-chart/animation/package.json | 4 +- .../doughnut-chart/explosion/package.json | 4 +- .../charts/doughnut-chart/legend/package.json | 4 +- .../doughnut-chart/overview/package.json | 4 +- .../charts/doughnut-chart/rings/package.json | 4 +- .../doughnut-chart/selection/package.json | 4 +- .../financial-chart/annotations/package.json | 4 +- .../financial-chart/axis-types/package.json | 4 +- .../package.json | 4 +- .../data-legend-styling-props/package.json | 4 +- .../financial-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-styling-props/package.json | 4 +- .../financial-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 4 +- .../high-frequency/package.json | 4 +- .../financial-chart/high-volume/package.json | 4 +- .../indicator-customization/package.json | 4 +- .../indicator-types/package.json | 4 +- .../multiple-data/package.json | 4 +- .../financial-chart/overview/package.json | 4 +- .../charts/financial-chart/panes/package.json | 4 +- .../financial-chart/performance/package.json | 4 +- .../financial-chart/scrollbars/package.json | 4 +- .../stock-index-chart/package.json | 4 +- .../financial-chart/styling/package.json | 4 +- .../financial-chart/titles/package.json | 4 +- .../tooltip-types/package.json | 4 +- .../financial-chart/trendlines/package.json | 4 +- .../financial-chart/volume-types/package.json | 4 +- .../charts/pie-chart/animation/package.json | 4 +- .../charts/pie-chart/explosion/package.json | 4 +- samples/charts/pie-chart/legend/package.json | 4 +- samples/charts/pie-chart/others/package.json | 4 +- .../charts/pie-chart/overview/package.json | 4 +- .../charts/pie-chart/selection/package.json | 4 +- samples/charts/pie-chart/styling/package.json | 4 +- .../sparkline/display-area/package.json | 4 +- .../sparkline/display-column/package.json | 4 +- .../sparkline/display-lines/package.json | 8 +- .../sparkline/display-types/package.json | 4 +- .../sparkline/display-winloss/package.json | 4 +- samples/charts/sparkline/grid/package.json | 10 +- samples/charts/sparkline/markers/package.json | 10 +- .../sparkline/normal-range/package.json | 10 +- .../charts/sparkline/trendlines/package.json | 10 +- .../sparkline/unknown-values/package.json | 10 +- .../package.json | 8 +- .../actions-built-in-data-chart/package.json | 8 +- .../toolbar/color-editor-support/package.json | 8 +- .../charts/toolbar/custom-tool/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- samples/charts/toolbar/theming/package.json | 10 +- samples/charts/tree-map/events/package.json | 4 +- .../highlighting-percent-based/package.json | 4 +- .../charts/tree-map/highlighting/package.json | 10 +- samples/charts/tree-map/layout/package.json | 10 +- samples/charts/tree-map/overview/package.json | 4 +- samples/charts/tree-map/styling/package.json | 4 +- .../charts/zoomslider/overview/package.json | 4 +- .../overview/package.json | 8 +- .../x-date-picker/date-limits/package.json | 6 +- .../x-date-picker/editing/package.json | 6 +- .../editors/x-date-picker/format/package.json | 6 +- .../x-date-picker/overview/package.json | 6 +- .../editors/x-date-picker/range/package.json | 6 +- .../operations-on-workbooks/package.json | 10 +- .../operations-on-worksheets/package.json | 4 +- .../excel/excel-library/overview/package.json | 4 +- .../working-with-cells/package.json | 4 +- .../working-with-charts/package.json | 12 +- .../working-with-sparklines/package.json | 12 +- .../excel/spreadsheet/activation/package.json | 6 +- .../spreadsheet/adapter-chart/package.json | 10 +- .../spreadsheet/adapter-combo/package.json | 10 +- .../excel/spreadsheet/clipboard/package.json | 6 +- .../excel/spreadsheet/commands/package.json | 6 +- .../conditional-formatting/package.json | 6 +- .../spreadsheet/config-options/package.json | 6 +- .../spreadsheet/data-validation/package.json | 6 +- .../spreadsheet/filter-dialog/package.json | 6 +- .../spreadsheet/format-dialog/package.json | 6 +- .../excel/spreadsheet/hyperlinks/package.json | 6 +- .../excel/spreadsheet/overview/package.json | 6 +- .../spreadsheet/sort-dialog/package.json | 6 +- .../bullet-graph/animation/package.json | 4 +- .../bullet-graph/background/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/bullet-graph/labels/package.json | 4 +- .../gauges/bullet-graph/measures/package.json | 4 +- .../gauges/bullet-graph/ranges/package.json | 4 +- .../gauges/bullet-graph/scale/package.json | 4 +- .../bullet-graph/tickmarks/package.json | 4 +- .../bullet-graph/type-filled/package.json | 4 +- .../bullet-graph/type-horizontal/package.json | 4 +- .../bullet-graph/type-reversed/package.json | 4 +- .../bullet-graph/type-segmented/package.json | 4 +- .../bullet-graph/type-vertical/package.json | 4 +- .../linear-gauge/animation/package.json | 4 +- .../gauges/linear-gauge/backing/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/linear-gauge/labels/package.json | 4 +- .../gauges/linear-gauge/needle/package.json | 4 +- .../gauges/linear-gauge/ranges/package.json | 4 +- .../gauges/linear-gauge/scale/package.json | 4 +- .../linear-gauge/tickmarks/package.json | 4 +- .../linear-gauge/type-curved/package.json | 4 +- .../linear-gauge/type-filled/package.json | 4 +- .../linear-gauge/type-horizontal/package.json | 4 +- .../type-multi-range/package.json | 4 +- .../type-multi-scale/package.json | 4 +- .../linear-gauge/type-segmented/package.json | 4 +- .../linear-gauge/type-vertical/package.json | 4 +- .../radial-gauge/animation/package.json | 4 +- .../gauges/radial-gauge/backing/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/radial-gauge/labels/package.json | 4 +- .../gauges/radial-gauge/needle/package.json | 4 +- .../radial-gauge/optical-scaling/package.json | 4 +- .../gauges/radial-gauge/ranges/package.json | 4 +- .../gauges/radial-gauge/scale/package.json | 4 +- .../radial-gauge/tickmarks/package.json | 4 +- .../radial-gauge/type-column/package.json | 4 +- .../radial-gauge/type-curved/package.json | 4 +- .../radial-gauge/type-direction/package.json | 4 +- .../radial-gauge/type-full/package.json | 4 +- .../radial-gauge/type-half/package.json | 4 +- .../radial-gauge/type-quatre/package.json | 4 +- .../radial-gauge/type-ring/package.json | 4 +- .../radial-gauge/type-segmented/package.json | 4 +- .../radial-gauge/type-semi/package.json | 4 +- .../data-grid/accessibility/package.json | 8 +- .../binding-data-service/package.json | 8 +- .../data-grid/binding-live-data/package.json | 10 +- .../data-grid/binding-local-data/package.json | 8 +- .../binding-remote-data/package.json | 10 +- .../data-grid/cell-activation/package.json | 8 +- .../grids/data-grid/cell-editing/package.json | 8 +- .../grids/data-grid/cell-merging/package.json | 10 +- .../data-grid/cell-selection/package.json | 8 +- .../data-grid/column-animation/package.json | 8 +- .../column-chooser-picker/package.json | 8 +- .../column-chooser-toolbar/package.json | 8 +- .../column-filter-expressions/package.json | 8 +- .../column-filter-operands/package.json | 8 +- .../data-grid/column-filtering/package.json | 8 +- .../data-grid/column-moving/package.json | 8 +- .../data-grid/column-options/package.json | 8 +- .../column-pinning-picker/package.json | 8 +- .../column-pinning-toolbar/package.json | 8 +- .../data-grid/column-resizing/package.json | 8 +- .../data-grid/column-scrolling/package.json | 8 +- .../data-grid/column-sorting/package.json | 8 +- .../data-grid/column-summaries/package.json | 8 +- .../grids/data-grid/column-types/package.json | 10 +- .../data-grid/load-save-layout/package.json | 10 +- .../grids/data-grid/localization/package.json | 10 +- samples/grids/data-grid/overview/package.json | 10 +- samples/grids/data-grid/pager/package.json | 8 +- .../grids/data-grid/performance/package.json | 8 +- .../row-group-descriptions/package.json | 8 +- .../grids/data-grid/row-grouping/package.json | 8 +- .../data-grid/row-highlighting/package.json | 8 +- .../grids/data-grid/row-paging/package.json | 8 +- .../grids/data-grid/row-pinning/package.json | 8 +- .../data-grid/row-selection/package.json | 8 +- .../type-comparison-table/package.json | 10 +- .../data-grid/type-heatmap-table/package.json | 8 +- .../type-marketing-table/package.json | 10 +- .../data-grid/type-matrix-table/package.json | 8 +- .../type-periodic-table/package.json | 8 +- .../grids/data-grid/type-table/package.json | 8 +- samples/grids/grid/action-strip/package.json | 8 +- .../advanced-filtering-options/package.json | 8 +- .../advanced-filtering-style/package.json | 8 +- .../grid/binding-composite-data/package.json | 10 +- .../grids/grid/binding-crud-data/package.json | 8 +- .../grid/binding-nested-data-1/package.json | 10 +- .../grids/grid/cascading-combo/package.json | 10 +- .../grid/cell-editing-sample/package.json | 10 +- .../grid/cell-editing-styling/package.json | 8 +- .../grid/cell-selection-mode/package.json | 10 +- .../grid/cell-selection-style/package.json | 8 +- .../grid/change-icons-custom/package.json | 10 +- .../grid/clipboard-operations/package.json | 10 +- .../grid/column-auto-sizing/package.json | 8 +- .../column-collapsible-groups/package.json | 8 +- .../grids/grid/column-data-types/package.json | 8 +- .../grid/column-hiding-options/package.json | 8 +- .../column-hiding-toolbar-style/package.json | 8 +- .../grid/column-hiding-toolbar/package.json | 8 +- .../grid/column-moving-options/package.json | 10 +- .../grid/column-moving-styles/package.json | 10 +- .../grid/column-pinning-options/package.json | 8 +- .../column-pinning-right-side/package.json | 10 +- .../grid/column-pinning-styles/package.json | 8 +- .../grids/grid/column-pinning/package.json | 8 +- .../grid/column-resize-styling/package.json | 8 +- .../grids/grid/column-resizing/package.json | 8 +- .../grid/column-selection-group/package.json | 8 +- .../grid/column-selection-mode/package.json | 10 +- .../grid/column-selection-styles/package.json | 8 +- .../column-sorting-indicators/package.json | 8 +- .../grid/column-sorting-options/package.json | 10 +- .../grid/column-sorting-style/package.json | 8 +- .../conditional-cell-style-1/package.json | 8 +- .../conditional-cell-style-2/package.json | 8 +- .../conditional-row-selectors/package.json | 8 +- .../grid/custom-context-menu/package.json | 10 +- .../grids/grid/custom-filtering/package.json | 8 +- .../data-batch-editing-actions/package.json | 10 +- .../data-exporting-indicator/package.json | 8 +- .../grid/data-paste-options/package.json | 10 +- .../package.json | 10 +- .../grids/grid/data-searching/package.json | 10 +- .../grid/data-summaries-custom/package.json | 8 +- .../grid/data-summary-formatter/package.json | 8 +- .../grid/data-summary-options/package.json | 8 +- .../grid/data-summary-template/package.json | 10 +- .../grid/data-validation-style/package.json | 8 +- .../package.json | 8 +- .../package.json | 10 +- .../grid/data-validator-service/package.json | 10 +- .../grids/grid/editing-columns/package.json | 8 +- .../grids/grid/editing-events/package.json | 8 +- .../editing-excel-style-custom/package.json | 8 +- .../grid/editing-excel-style/package.json | 8 +- .../grids/grid/editing-lifecycle/package.json | 8 +- .../grids/grid/excel-exporting/package.json | 8 +- .../package.json | 10 +- .../package.json | 8 +- .../package.json | 8 +- .../excel-style-filtering-style/package.json | 8 +- .../external-advanced-filtering/package.json | 8 +- .../grids/grid/filtering-options/package.json | 8 +- .../grid/filtering-strategy/package.json | 8 +- .../grids/grid/filtering-style/package.json | 10 +- samples/grids/grid/finjs/package.json | 10 +- .../grids/grid/groupby-custom/package.json | 8 +- .../grid/groupby-expressions/package.json | 8 +- .../grids/grid/groupby-paging/package.json | 8 +- .../grids/grid/groupby-styling/package.json | 8 +- .../grid/groupby-summary-options/package.json | 10 +- .../grid/groupby-summary-styling/package.json | 10 +- .../grids/grid/infinite-scroll/package.json | 8 +- .../keyboard-custom-navigation/package.json | 8 +- .../grid/keyboard-mrl-navigation/package.json | 8 +- .../keyboard-navigation-guide/package.json | 8 +- .../grid/layout-display-density/package.json | 10 +- samples/grids/grid/master-detail/package.json | 8 +- .../multi-cell-selection-mode/package.json | 8 +- .../multi-column-headers-export/package.json | 8 +- .../package.json | 10 +- .../multi-column-headers-styling/package.json | 8 +- .../package.json | 8 +- .../multi-row-layout-options/package.json | 8 +- .../grid/multi-row-layout-style/package.json | 8 +- samples/grids/grid/overview/package.json | 8 +- samples/grids/grid/paste/package.json | 10 +- .../grid/remote-paging-data/package.json | 8 +- .../grid/remote-paging-grid/package.json | 8 +- samples/grids/grid/row-adding/package.json | 8 +- samples/grids/grid/row-classes/package.json | 8 +- samples/grids/grid/row-drag-base/package.json | 8 +- .../grid/row-editing-options/package.json | 8 +- .../grids/grid/row-editing-style/package.json | 8 +- .../grids/grid/row-paging-basic/package.json | 10 +- .../grid/row-paging-options/package.json | 10 +- .../grids/grid/row-pinning-drag/package.json | 8 +- .../row-pinning-extra-column/package.json | 8 +- .../grid/row-pinning-options/package.json | 10 +- .../grids/grid/row-pinning-style/package.json | 8 +- samples/grids/grid/row-reorder/package.json | 8 +- .../grid/row-selection-mode/package.json | 10 +- .../row-selection-template-excel/package.json | 8 +- .../package.json | 10 +- samples/grids/grid/row-styles/package.json | 10 +- .../grid/state-persistence-about/package.json | 10 +- .../grid/state-persistence-main/package.json | 10 +- .../grid/styling-custom-CSS/package.json | 8 +- .../grids/grid/toolbar-sample-1/package.json | 8 +- .../grids/grid/toolbar-sample-2/package.json | 8 +- .../grids/grid/toolbar-sample-3/package.json | 8 +- .../grids/grid/toolbar-sample-4/package.json | 8 +- samples/grids/grid/toolbar-style/package.json | 8 +- .../action-strip/package.json | 8 +- .../advanced-filtering-options/package.json | 8 +- .../advanced-filtering-style/package.json | 8 +- .../cell-editing-sample/package.json | 10 +- .../cell-editing-styling/package.json | 8 +- .../cell-selection-mode/package.json | 10 +- .../cell-selection-overview/package.json | 10 +- .../cell-selection-style/package.json | 10 +- .../cell-selection-styling/package.json | 10 +- .../column-auto-sizing/package.json | 8 +- .../column-collapsible-groups/package.json | 8 +- .../column-hiding-toolbar-style/package.json | 8 +- .../column-hiding-toolbar/package.json | 8 +- .../column-moving-options/package.json | 8 +- .../column-moving-styles/package.json | 8 +- .../column-pinning-options/package.json | 8 +- .../column-pinning-right-side/package.json | 8 +- .../column-pinning-styles/package.json | 8 +- .../column-pinning/package.json | 8 +- .../column-resize-styling/package.json | 8 +- .../column-resizing/package.json | 8 +- .../column-selection-group/package.json | 8 +- .../column-selection-mode/package.json | 10 +- .../column-selection-styles/package.json | 8 +- .../column-sorting-indicators/package.json | 8 +- .../column-sorting-options/package.json | 8 +- .../column-sorting-style/package.json | 8 +- .../conditional-cell-style-1/package.json | 8 +- .../conditional-cell-style-2/package.json | 8 +- .../conditional-row-selectors/package.json | 8 +- .../custom-filtering/package.json | 8 +- .../data-exporting-indicator/package.json | 8 +- .../package.json | 8 +- .../data-summary-formatter/package.json | 8 +- .../data-summary-options-styling/package.json | 8 +- .../data-summary-options/package.json | 8 +- .../data-summary-template/package.json | 10 +- .../editing-columns/package.json | 8 +- .../editing-events/package.json | 8 +- .../editing-lifecycle/package.json | 8 +- .../excel-exporting/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- .../excel-style-filtering-style/package.json | 8 +- .../filtering-options/package.json | 8 +- .../filtering-style/package.json | 8 +- .../hierarchical-grid-options/package.json | 8 +- .../package.json | 8 +- .../hierarchical-grid-styling/package.json | 8 +- .../layout-display-density/package.json | 10 +- .../multi-column-headers-export/package.json | 8 +- .../package.json | 10 +- .../multi-column-headers-styling/package.json | 8 +- .../package.json | 8 +- .../hierarchical-grid/overview/package.json | 8 +- .../remote-paging-sample/package.json | 8 +- .../hierarchical-grid/row-adding/package.json | 8 +- .../row-classes/package.json | 8 +- .../row-drag-base/package.json | 8 +- .../row-editing-options/package.json | 8 +- .../row-editing-style/package.json | 8 +- .../row-pinning-extra-column/package.json | 10 +- .../row-pinning-options/package.json | 10 +- .../row-pinning-style/package.json | 8 +- .../row-reorder/package.json | 8 +- .../row-selection-mode/package.json | 10 +- .../package.json | 10 +- .../hierarchical-grid/row-styles/package.json | 8 +- .../state-persistence-about/package.json | 10 +- .../state-persistence-main/package.json | 10 +- .../toolbar-sample-1/package.json | 8 +- .../toolbar-sample-2/package.json | 8 +- .../toolbar-sample-3/package.json | 8 +- .../toolbar-sample-4/package.json | 8 +- .../toolbar-style/package.json | 8 +- .../grids/list/add-list-items/package.json | 4 +- .../grids/list/list-item-content/package.json | 2 +- samples/grids/list/overview/package.json | 2 +- samples/grids/list/styling/package.json | 2 +- .../aggregate-max-sales/package.json | 8 +- .../aggregate-units-sold/package.json | 8 +- samples/grids/pivot-grid/basic/package.json | 8 +- .../data-persistence-noop/package.json | 10 +- .../pivot-grid/data-selector/package.json | 8 +- .../grids/pivot-grid/features/package.json | 8 +- samples/grids/pivot-grid/remote/package.json | 8 +- .../state-persistence-about/package.json | 10 +- .../state-persistence-main/package.json | 10 +- .../grids/tree-grid/action-strip/package.json | 8 +- .../advanced-filtering-options/package.json | 8 +- .../advanced-filtering-style/package.json | 8 +- .../cell-editing-sample/package.json | 10 +- .../cell-editing-styling/package.json | 8 +- .../cell-selection-mode/package.json | 10 +- .../cell-selection-style/package.json | 8 +- .../clipboard-operations/package.json | 10 +- .../tree-grid/column-auto-sizing/package.json | 8 +- .../column-collapsible-groups/package.json | 8 +- .../tree-grid/column-data-types/package.json | 8 +- .../column-hiding-toolbar-style/package.json | 8 +- .../column-hiding-toolbar/package.json | 8 +- .../column-moving-options/package.json | 8 +- .../column-moving-styles/package.json | 8 +- .../column-pinning-options/package.json | 8 +- .../column-pinning-right-side/package.json | 8 +- .../column-pinning-styles/package.json | 8 +- .../column-pinning-toolbar/package.json | 8 +- .../tree-grid/column-pinning/package.json | 8 +- .../column-resize-styling/package.json | 8 +- .../tree-grid/column-resizing/package.json | 8 +- .../column-selection-group/package.json | 8 +- .../column-selection-mode/package.json | 10 +- .../column-selection-style/package.json | 8 +- .../column-selection-styles/package.json | 8 +- .../column-sorting-indicators/package.json | 8 +- .../column-sorting-options/package.json | 10 +- .../column-sorting-style/package.json | 8 +- .../conditional-cell-style-1/package.json | 8 +- .../conditional-cell-style-2/package.json | 8 +- .../conditional-row-selectors/package.json | 8 +- .../tree-grid/custom-filtering/package.json | 8 +- .../data-exporting-indicator/package.json | 8 +- .../tree-grid/data-searching/package.json | 10 +- .../data-summaries-custom/package.json | 8 +- .../data-summary-children/package.json | 10 +- .../data-summary-formatter/package.json | 8 +- .../data-summary-options-styling/package.json | 8 +- .../data-summary-options/package.json | 8 +- .../data-summary-template/package.json | 10 +- .../tree-grid/editing-columns/package.json | 8 +- .../tree-grid/editing-events/package.json | 8 +- .../tree-grid/editing-lifecycle/package.json | 8 +- .../tree-grid/excel-exporting/package.json | 8 +- .../package.json | 10 +- .../package.json | 8 +- .../package.json | 8 +- .../excel-style-filtering-style/package.json | 8 +- .../tree-grid/filtering-options/package.json | 8 +- .../tree-grid/filtering-style/package.json | 8 +- samples/grids/tree-grid/finjs/package.json | 10 +- .../keyboard-custom-navigation/package.json | 8 +- .../keyboard-navigation-guide/package.json | 8 +- .../layout-display-density/package.json | 10 +- .../tree-grid/load-on-demand/package.json | 8 +- .../multi-cell-selection-mode/package.json | 8 +- .../multi-column-headers-export/package.json | 8 +- .../package.json | 10 +- .../multi-column-headers-styling/package.json | 8 +- .../package.json | 8 +- .../tree-grid/overview-styling/package.json | 8 +- samples/grids/tree-grid/overview/package.json | 8 +- .../grids/tree-grid/row-adding/package.json | 8 +- .../grids/tree-grid/row-classes/package.json | 8 +- .../tree-grid/row-drag-base/package.json | 8 +- .../row-editing-options/package.json | 8 +- .../tree-grid/row-editing-style/package.json | 8 +- .../tree-grid/row-paging-basic/package.json | 8 +- .../tree-grid/row-paging-options/package.json | 10 +- .../tree-grid/row-paging-style/package.json | 8 +- .../row-pinning-extra-column/package.json | 8 +- .../row-pinning-options/package.json | 10 +- .../tree-grid/row-pinning-style/package.json | 8 +- .../grids/tree-grid/row-reorder/package.json | 8 +- .../tree-grid/row-selection-mode/package.json | 10 +- .../row-selection-template-excel/package.json | 8 +- .../package.json | 8 +- .../grids/tree-grid/row-styles/package.json | 8 +- .../state-persistence-about/package.json | 10 +- .../state-persistence-main/package.json | 10 +- .../tree-grid/toolbar-sample-1/package.json | 10 +- .../tree-grid/toolbar-sample-2/package.json | 8 +- .../tree-grid/toolbar-sample-3/package.json | 10 +- .../tree-grid/toolbar-sample-4/package.json | 8 +- .../tree-grid/toolbar-style/package.json | 10 +- .../using-primary-foreign-keys/package.json | 8 +- samples/grids/tree/basic-example/package.json | 2 +- .../load-on-demand-virtualized/package.json | 2 +- .../grids/tree/load-on-demand/package.json | 2 +- samples/inputs/badge/outlined/package.json | 2 +- samples/inputs/badge/shape/package.json | 2 +- samples/inputs/badge/variants/package.json | 2 +- .../button-group/alignment/package.json | 2 +- .../inputs/button-group/overview/package.json | 2 +- .../button-group/selection/package.json | 2 +- samples/inputs/button-group/size/package.json | 2 +- .../inputs/button-group/styling/package.json | 2 +- samples/inputs/button/contained/package.json | 2 +- samples/inputs/button/download/package.json | 2 +- samples/inputs/button/fab/package.json | 2 +- samples/inputs/button/flat/package.json | 2 +- samples/inputs/button/outlined/package.json | 2 +- samples/inputs/button/overview/package.json | 2 +- samples/inputs/button/size/package.json | 2 +- samples/inputs/button/styling/package.json | 2 +- samples/inputs/checkbox/checking/package.json | 2 +- samples/inputs/checkbox/disabled/package.json | 2 +- .../checkbox/indeterminate/package.json | 2 +- samples/inputs/checkbox/label/package.json | 2 +- samples/inputs/checkbox/overview/package.json | 2 +- samples/inputs/chip/multiple/package.json | 2 +- samples/inputs/chip/overview/package.json | 2 +- samples/inputs/chip/size/package.json | 2 +- samples/inputs/chip/styling/package.json | 2 +- samples/inputs/chip/variants/package.json | 2 +- .../dynamic/package.json | 2 +- .../indeterminate/package.json | 2 +- .../simple/package.json | 2 +- .../styling/package.json | 2 +- .../inputs/color-editor/overview/package.json | 4 +- samples/inputs/combo/features/package.json | 2 +- samples/inputs/combo/overview/package.json | 2 +- samples/inputs/combo/selection/package.json | 2 +- samples/inputs/combo/simplified/package.json | 2 +- samples/inputs/combo/styling/package.json | 2 +- samples/inputs/combo/templates/package.json | 2 +- .../input-format-display-format/package.json | 2 +- .../min-max-value/package.json | 2 +- .../date-time-input/overview/package.json | 2 +- .../date-time-input/step-up-down/package.json | 2 +- samples/inputs/dropdown/group/package.json | 2 +- samples/inputs/dropdown/header/package.json | 2 +- samples/inputs/dropdown/item/package.json | 2 +- samples/inputs/dropdown/overview/package.json | 2 +- samples/inputs/dropdown/position/package.json | 2 +- samples/inputs/dropdown/styling/package.json | 2 +- samples/inputs/dropdown/target/package.json | 2 +- samples/inputs/icon-button/size/package.json | 2 +- .../inputs/icon-button/styling/package.json | 2 +- .../inputs/icon-button/variant/package.json | 2 +- samples/inputs/input/helper-text/package.json | 2 +- samples/inputs/input/overview/package.json | 2 +- .../inputs/input/prefix-suffix/package.json | 2 +- samples/inputs/input/size/package.json | 2 +- samples/inputs/input/styling/package.json | 2 +- .../dynamic/package.json | 2 +- .../simple/package.json | 2 +- .../striped/package.json | 2 +- .../styling/package.json | 2 +- .../types/package.json | 2 +- .../mask-input/applying-mask/package.json | 2 +- .../inputs/mask-input/overview/package.json | 2 +- .../mask-input/value-modes/package.json | 2 +- samples/inputs/radio/alignment/package.json | 2 +- samples/inputs/radio/disabled/package.json | 2 +- samples/inputs/radio/group/package.json | 2 +- samples/inputs/radio/invalid/package.json | 2 +- samples/inputs/radio/label/package.json | 2 +- samples/inputs/radio/styling/package.json | 2 +- samples/inputs/rating/basic/package.json | 2 +- samples/inputs/rating/custom/package.json | 2 +- samples/inputs/rating/empty/package.json | 2 +- .../rating/single-selection/package.json | 2 +- samples/inputs/rating/styling/package.json | 2 +- samples/inputs/ripple/button/package.json | 2 +- samples/inputs/ripple/color/package.json | 2 +- samples/inputs/select/group/package.json | 2 +- samples/inputs/select/header/package.json | 2 +- samples/inputs/select/item/package.json | 2 +- samples/inputs/select/overview/package.json | 2 +- samples/inputs/select/styling/package.json | 2 +- .../inputs/slider/constraints/package.json | 2 +- samples/inputs/slider/disabled/package.json | 2 +- samples/inputs/slider/discrete/package.json | 2 +- samples/inputs/slider/labels/package.json | 2 +- samples/inputs/slider/overview/package.json | 2 +- samples/inputs/slider/styling/package.json | 2 +- .../inputs/slider/tick-labels/package.json | 2 +- samples/inputs/slider/ticks/package.json | 2 +- .../inputs/slider/value-format/package.json | 2 +- samples/inputs/slider/value/package.json | 2 +- samples/inputs/switches/checking/package.json | 2 +- samples/inputs/switches/disabled/package.json | 2 +- samples/inputs/switches/label/package.json | 2 +- samples/inputs/switches/overview/package.json | 2 +- .../textarea/form-integration/package.json | 2 +- samples/inputs/textarea/overview/package.json | 2 +- samples/inputs/textarea/resize/package.json | 2 +- samples/inputs/textarea/slots/package.json | 2 +- samples/inputs/textarea/styling/package.json | 2 +- .../accordion/customization/package.json | 2 +- .../accordion/nested-scenario/package.json | 2 +- .../layouts/accordion/overview/package.json | 2 +- samples/layouts/avatar/icon/package.json | 2 +- samples/layouts/avatar/image/package.json | 2 +- samples/layouts/avatar/initials/package.json | 2 +- samples/layouts/avatar/shape/package.json | 2 +- samples/layouts/avatar/size/package.json | 2 +- samples/layouts/card/horizontal/package.json | 2 +- samples/layouts/card/integration/package.json | 2 +- samples/layouts/card/overview/package.json | 2 +- .../layouts/card/semi-horizontal/package.json | 2 +- samples/layouts/card/styling/package.json | 2 +- .../layouts/carousel/animations/package.json | 2 +- .../layouts/carousel/components/package.json | 2 +- .../layouts/carousel/overview/package.json | 2 +- .../layouts/carousel/thumbnail/package.json | 2 +- samples/layouts/divider/dashed/package.json | 2 +- samples/layouts/divider/middle/package.json | 2 +- samples/layouts/divider/overview/package.json | 2 +- samples/layouts/divider/select/package.json | 2 +- samples/layouts/divider/vertical/package.json | 2 +- .../embedding-frames/package.json | 2 +- .../dock-manager/hiding-panes/package.json | 2 +- .../dock-manager/overview/package.json | 2 +- .../layouts/dock-manager/styling/package.json | 4 +- .../dock-manager/updating-panes/package.json | 8 +- .../component-customization/package.json | 2 +- .../properties-and-events/package.json | 2 +- .../expansion-panel/styling/package.json | 2 +- .../expansion-panel/usage/package.json | 2 +- samples/layouts/icon/sizing/package.json | 2 +- samples/layouts/icon/styling/package.json | 2 +- .../layouts/stepper/animations/package.json | 2 +- samples/layouts/stepper/linear/package.json | 2 +- .../layouts/stepper/orientation/package.json | 2 +- samples/layouts/stepper/overview/package.json | 2 +- .../layouts/stepper/steptypes/package.json | 2 +- samples/layouts/tabs/alignment/package.json | 2 +- samples/layouts/tabs/overview/package.json | 2 +- .../layouts/tabs/prefix-suffix/package.json | 2 +- samples/layouts/tabs/scrolling/package.json | 2 +- .../geo-map/binding-data-csv/package.json | 6 +- .../binding-data-json-points/package.json | 6 +- .../geo-map/binding-data-model/package.json | 6 +- .../binding-multiple-shapes/package.json | 6 +- .../binding-multiple-sources/package.json | 6 +- .../geo-map/binding-shp-points/package.json | 6 +- .../geo-map/binding-shp-polygons/package.json | 6 +- .../binding-shp-polylines/package.json | 6 +- .../maps/geo-map/custom-tooltips/package.json | 6 +- .../geo-map/display-all-imagery/package.json | 6 +- .../geo-map/display-bing-imagery/package.json | 6 +- .../geo-map/display-esri-imagery/package.json | 6 +- .../geo-map/display-heat-imagery/package.json | 6 +- .../geo-map/display-osm-imagery/package.json | 6 +- .../maps/geo-map/marker-template/package.json | 6 +- samples/maps/geo-map/marker-type/package.json | 6 +- samples/maps/geo-map/navigation/package.json | 6 +- samples/maps/geo-map/overview/package.json | 6 +- .../maps/geo-map/shape-styling/package.json | 6 +- .../maps/geo-map/synchronization/package.json | 6 +- .../geo-map/triangulating-data/package.json | 6 +- .../type-scatter-area-series/package.json | 6 +- .../type-scatter-bubble-series/package.json | 6 +- .../type-scatter-contour-series/package.json | 6 +- .../type-scatter-density-series/package.json | 6 +- .../type-scatter-symbol-series/package.json | 6 +- .../type-shape-polygon-series/package.json | 6 +- .../type-shape-polyline-series/package.json | 6 +- samples/menus/nav-bar/overview/package.json | 2 +- samples/menus/nav-bar/styling/package.json | 2 +- .../nav-drawer/add-drawer-items/package.json | 2 +- .../menus/nav-drawer/add-mini/package.json | 2 +- .../add-positions-navbar/package.json | 2 +- samples/menus/nav-drawer/styling/package.json | 2 +- .../banner-advanced-sample/package.json | 2 +- .../banner/banner-sample-1/package.json | 2 +- .../banner/banner-sample-2/package.json | 2 +- .../banner/banner-styling/package.json | 2 +- .../dialog/closing-variations/package.json | 2 +- .../notifications/dialog/form/package.json | 2 +- .../dialog/overview/package.json | 2 +- .../notifications/dialog/styling/package.json | 2 +- .../snackbar/action-text/package.json | 2 +- .../snackbar/display-time/package.json | 2 +- .../snackbar/overview/package.json | 2 +- .../snackbar/styling/package.json | 2 +- .../notifications/toast/overview/package.json | 2 +- .../toast/properties/package.json | 2 +- .../notifications/toast/styling/package.json | 2 +- .../calendar/disabled-dates/package.json | 2 +- .../calendar/formatting/package.json | 2 +- .../scheduling/calendar/header/package.json | 2 +- .../calendar/multiple-months/package.json | 2 +- .../calendar/multiple-selection/package.json | 2 +- .../scheduling/calendar/overview/package.json | 2 +- .../calendar/range-selection/package.json | 2 +- samples/scheduling/calendar/size/package.json | 2 +- .../calendar/special-dates/package.json | 2 +- .../scheduling/calendar/styling/package.json | 2 +- .../calendar/week-numbers/package.json | 2 +- .../date-picker/dialog-mode/package.json | 2 +- .../scheduling/date-picker/form/package.json | 2 +- .../date-picker/format/package.json | 2 +- .../date-picker/overview/package.json | 2 +- .../date-picker/styling/package.json | 2 +- 877 files changed, 2826 insertions(+), 2653 deletions(-) create mode 100644 samples/charts/category-chart/selection-matcher/ReadMe.md create mode 100644 samples/charts/data-chart/selection-matcher/ReadMe.md create mode 100644 samples/charts/data-pie-chart/animation-replay/ReadMe.md diff --git a/browser/public/index.html b/browser/public/index.html index 4f23a6bbdd..6c29cd72d6 100644 --- a/browser/public/index.html +++ b/browser/public/index.html @@ -85,6 +85,7 @@ Point Chart Multiple Sources Point Chart Single Source Point Chart Styling + Selection Matcher Selection Modes Selection Multiple Modes Spline Area Multiple Sources @@ -200,6 +201,7 @@ Scatter Polyline Series Scatter Series Scatter Spline Chart + Selection Matcher Series Animations Series Annotations Series Error Bars @@ -230,6 +232,7 @@